/* Bylsma Handcrafted Pens - Standard CSS3 Styles */

/* Reveal Animations */
.reveal { 
    opacity: 1; 
    transform: translateY(0); 
    transition: all 0.6s ease-out; 
}
.reveal.active { 
    opacity: 1; 
    transform: translateY(0); 
}

/* Modal Overlay */
.modal-overlay { 
    background: rgba(0,0,0,0.8); 
    backdrop-filter: blur(4px); 
}

/* Custom Input Fields */
.custom-input {
    width: 100%;
    background-color: transparent;
    border-bottom: 1px solid #d6d3d1; /* stone-300 */
    padding: 0.5rem 0;
    outline: none;
    transition: all 0.2s ease;
    font-family: 'Cormorant Garamond', serif;
}
.custom-input:focus {
    border-color: #c5a059; /* bylsma-gold */
}

/* Scrollbar Hiding */
.no-scrollbar::-webkit-scrollbar { 
    display: none; 
}

/* Logo Image Handling */
.logo-img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

/* Engraving Box Toggle */
.engraving-box { 
    display: none; 
}
input:checked ~ .engraving-box { 
    display: block; 
}

/* Testimonial Cards */
.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Admin Specific Styles */
.admin-tab.hidden {
    display: none;
}

/* Responsive Grid Adjustments if needed */
@media (max-width: 768px) {
    .reveal {
        transition-delay: 0ms !important;
    }
}
