/* Base Styles */
:root {
    --primary-color: #d4af37; /* Gold */
    --secondary-color: #800020; /* Burgundy */
    --accent-color: #006400; /* Dark Green */
    --dark-color: #1a1a1a;
    --light-color: #f4f4f4;
    --text-color: #333;
    --text-light: #6b6b6b;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    --reel-max-width: 360px;
    --reel-height: 640px;
    --space-section: 4.5rem;
    --space-section-mobile: 3.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:focus {
    outline: 3px solid rgba(66,133,244,0.18);
    outline-offset: 2px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-18deg);
    transition: transform 0.6s ease, left 0.6s ease;
}
.btn:hover::after {
    left: 120%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: 2px solid var(--primary-color);
    padding: 14px 36px;
    box-shadow: 0 8px 30px rgba(212,175,55,0.12);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.btn-text {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-text i {
    margin-left: 5px;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--secondary-color);
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
}
.logo a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: inline-block;
    object-fit: contain;
    transform: rotate(-3deg) skewX(-3deg);
    filter: drop-shadow(0 8px 14px rgba(0,0,0,0.15));
    transition: transform 300ms ease, filter 300ms ease;
    will-change: transform;
}
.logo:hover .brand-mark {
    transform: rotate(0deg) skewX(0deg);
    filter: drop-shadow(0 12px 22px rgba(0,0,0,0.22));
}
body.dark-mode .brand-mark {
    filter: drop-shadow(0 8px 14px rgba(0,0,0,0.45));
}

.logo h1:hover {
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    /* background image moved to CSS and no gradient here; overlay div provides the darkening */
    background-image: url('images/hero0.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 80px;
}

/* Semi-transparent overlay sits above the image but below content */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); /* softer 35% overlay for clearer hero text */
    z-index: 0;
}

/* Bottom fade to blend with next section - Brown color */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, #5D4037); /* Brown fade */
    z-index: 1;
    pointer-events: none;
}

/* Ensure hero content is above the overlay and fade */
.hero > .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.75rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(12px);
    animation: heroTitleIn 900ms ease-out forwards;
}
.hero-content h1:hover {
    text-shadow: 0 0 12px rgba(212,175,55,0.5), 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(10px);
    animation: heroSubtitleIn 900ms ease-out 150ms forwards;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(8px);
    animation: heroButtonsIn 900ms ease-out 300ms forwards;
}

@keyframes heroTitleIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroSubtitleIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroButtonsIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Featured Collections */
.featured-collections {
    padding: var(--space-section) 0;
    background: linear-gradient(120deg,
        rgba(212,175,55,0.12) 0%,
        rgba(128,0,32,0.08) 40%,
        rgba(0,100,0,0.10) 70%,
        rgba(212,175,55,0.12) 100%
    );
    background-size: 200% 200%;
    animation: subtleGradient 22s ease-in-out infinite;
}

.featured-collections .section-header h2 {
    color: var(--dark-color);
}
.featured-collections .section-header p {
    color: var(--text-light);
}

.featured-collections .section-header h2::after {
    background: var(--primary-color);
}

@keyframes subtleGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    align-items: stretch; /* ensure cards align uniformly */
}

.collection-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
}

/* Per-card Slider styles */
.collection-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.card-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.card-slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Slider Controls */
.card-prev,
.card-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* hidden by default */
    transition: opacity 0.3s ease, background 0.3s;
    z-index: 2;
}

.card-slider:hover .card-prev,
.card-slider:hover .card-next,
.card-slider:focus-within .card-prev,
.card-slider:focus-within .card-next {
    opacity: 1;
}

.card-prev:hover,
.card-next:hover {
    background: white;
    color: var(--primary-color);
}

.card-prev { left: 10px; }
.card-next { right: 10px; }

/* Enhanced Slider Styles */
.card-pagination {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.card-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    z-index: 2;
}

.card-progress-bar {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    /* transition is handled by JS */
}

.collection-info {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.collection-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.more-cats {
    margin-top: 1rem;
}

.cat-link {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 1px dashed var(--primary-color);
    padding-bottom: 2px;
}

.cat-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.more-collections {
    text-align: center;
    margin-top: 3rem;
}

.featured-collections .more-collections .btn {
    background: #ffffff;
    color: #1a1a1a;
    border: 2px solid #ffffff;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.show {
    opacity: 1;
    transform: none;
}

/* About Preview */
.about-preview {
    padding: var(--space-section) 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.about-content {
    text-align: center; /* Centralize text as requested */
    padding: 2rem;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Testimonials */
.testimonials {
    padding: var(--space-section) 0;
    background-color: var(--light-color);
    text-align: center;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin: 1rem;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-card.active {
    display: block;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.client-info h4 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.client-info span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}
.instagram-reel {
    display: flex;
    justify-content: center;
    margin: 0;
}
.reel-frame {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
}
.reel-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}
.reel-mask-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 88px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), var(--light-color));
    z-index: 4;
}
body.dark-mode .reel-mask-bottom {
    background: linear-gradient(to bottom, rgba(18,18,18,0), #121212);
}
.reel-profile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    z-index: 3;
    display: block;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}
.testimonial-column .testimonial-slider {
    max-width: none;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-column .testimonial-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Our Process Section */
.our-process {
    padding: var(--space-section) 0;
    background-color: white;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.process-step {
    padding: 2rem;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.process-step:hover .step-icon {
    background-color: var(--primary-color);
    color: white;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* CTA Section */
.custom-order-cta {
    padding: var(--space-section) 0;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/hero.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: white;
}

.custom-order-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.custom-order-cta p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

 .whatsapp-nub {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 1001;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: nubPulse 3.6s ease-in-out infinite;
 }

 .whatsapp-nub i {
    font-size: 32px;
 }

 .whatsapp-nub:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.3);
 }
@keyframes nubPulse {
    0% { transform: scale(1); box-shadow: 0 10px 25px rgba(0,0,0,0.25); }
    50% { transform: scale(1.03); box-shadow: 0 12px 28px rgba(0,0,0,0.28); }
    100% { transform: scale(1); box-shadow: 0 10px 25px rgba(0,0,0,0.25); }
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-grid h3,
.footer-grid h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-grid ul li {
    margin-bottom: 0.8rem;
}

.footer-grid ul li a {
    color: #ccc;
}

.footer-grid ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-bottom p {
    color: #cccccc;
    font-size: 0.95rem;
}

/* Theme Toggle Button */
.theme-toggle-wrapper {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 0;
}

.theme-toggle {
    background: none;
    border: 2px solid var(--dark-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--dark-color);
}

.theme-toggle:hover {
    background-color: var(--dark-color);
    color: var(--primary-color);
}

/* Dark Mode */
body.dark-mode {
    background-color: #121212;
    color: #f4f4f4;
}

body.dark-mode a {
    color: inherit;
}

/* Update hero fade for dark mode */
body.dark-mode .hero::after {
    background: linear-gradient(to bottom, transparent, #121212);
}

body.dark-mode header {
    background-color: #1e1e1e;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

body.dark-mode .section-header h2 {
    color: #f4f4f4;
}

body.dark-mode .collection-card,
body.dark-mode .testimonial-card,
body.dark-mode .about-preview {
    background-color: #1e1e1e;
    color: #f4f4f4;
}

body.dark-mode .dot {
    background: rgba(255,255,255,0.3);
}
body.dark-mode .dot.active {
    background: var(--primary-color);
}

body.dark-mode .about-content h2 {
    color: #f4f4f4;
}

body.dark-mode .card-prev,
body.dark-mode .card-next {
    background: rgba(30, 30, 30, 0.7);
    color: #f4f4f4;
}
body.dark-mode .card-prev:hover,
body.dark-mode .card-next:hover {
    background: #333;
    color: var(--primary-color);
}

body.dark-mode .theme-toggle {
    border-color: #f4f4f4;
    color: #f4f4f4;
}

body.dark-mode .theme-toggle:hover {
    background-color: #f4f4f4;
    color: #121212;
}

/* Contact Page Styles */
.contact-section {
    padding: var(--space-section) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

body.dark-mode .info-item h3 {
    color: #f4f4f4;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

body.dark-mode .contact-form {
    background: #1e1e1e;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
    background: #2d2d2d;
    border-color: #444;
    color: white;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    .testimonials,
    .featured-collections,
    .about-preview,
    .our-process,
    .custom-order-cta,
    .contact-section {
        padding: var(--space-section-mobile) 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Mobile menu implementation needed */
    }
    
    .nav-links.open {
        display: flex;
        position: absolute;
        top: 64px;
        right: 15px;
        left: 15px;
        flex-direction: column;
        gap: 16px;
        background: #ffffff;
        padding: 16px;
        border-radius: 10px;
        box-shadow: var(--box-shadow);
        z-index: 1001;
    }
    body.dark-mode .nav-links.open {
        background: #1e1e1e;
        border: 1px solid #333;
    }
    
    .collection-image {
        height: 350px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    :root {
        --reel-max-width: 100%;
        --reel-height: 520px;
    }
}
@media (max-width: 576px) {
    header .container {
        padding: 16px 12px;
    }
    .logo h1 {
        font-size: 1.4rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .section-header p {
        font-size: 0.95rem;
    }
    .btn {
        padding: 10px 20px;
        border-radius: 26px;
        letter-spacing: 0.6px;
    }
    .collections-grid {
        gap: 20px;
    }
    .collection-info h3 {
        font-size: 1.2rem;
    }
    .testimonial-card {
        padding: 1.5rem;
        margin: 0.75rem;
    }
    .testimonial-card p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    .client-info h4 {
        font-size: 1rem;
    }
    .testimonial-column .testimonial-controls {
        justify-content: center;
    }
    .custom-order-cta h2 {
        font-size: 2rem;
    }
    .custom-order-cta p {
        font-size: 1.05rem;
    }
    .footer-grid {
        gap: 24px;
    }
    .footer-grid h3,
    .footer-grid h4 {
        font-size: 1.3rem;
    }
    .nav-links.open {
        gap: 12px;
        padding: 12px;
        top: 60px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-content h1,
    .hero-content p,
    .hero-buttons {
        animation: none;
        transform: none;
        opacity: 1;
    }
    .btn::after {
        display: none;
    }
    .whatsapp-nub {
        animation: none;
    }
}
