/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */

:root {
    /* Colors extracted from DUDA identity */
    --clr-primary: #3ebaa6;
    /* Teal / Turquoise */
    --clr-primary-dark: #2a8a7a;
    --clr-primary-light: #e0f2f0;

    --clr-secondary: #f4c474;
    /* Gold / Yellow */
    --clr-secondary-dark: #dca34b;
    --clr-secondary-light: #fdead1;

    --clr-dark: #2c3e3c;
    /* Dark text */
    --clr-gray: #6b7d7b;
    /* Muted text */
    --clr-gray-light: #eef2f1;
    /* Borders */
    --clr-light: #ffffff;
    --clr-bg: #fafcfa;
    --clr-bg-alt: #f4f7f6;

    /* Typography */
    --ff-heading: 'Playfair Display', serif;
    --ff-body: 'Outfit', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(44, 62, 60, 0.05);
    --shadow-md: 0 10px 20px rgba(44, 62, 60, 0.08);
    --shadow-lg: 0 20px 40px rgba(62, 186, 166, 0.15);
    --shadow-hover: 0 15px 30px rgba(44, 62, 60, 0.12);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--clr-dark);
    background-color: var(--clr-bg);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ff-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--clr-dark);
}

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

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

/* ==========================================================================
   Layout & Utilities
   ========================================================================== */

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

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--clr-bg-alt);
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.highlight {
    color: var(--clr-primary);
    font-style: italic;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.15);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.btn:hover::before {
    transform: scaleX(1);
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-light);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--clr-primary-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    color: var(--clr-light);
}

.btn-secondary {
    background-color: var(--clr-secondary);
    color: var(--clr-dark);
}

.btn-secondary:hover {
    background-color: var(--clr-secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1.1rem;
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 1000;
    transition: var(--transition-normal);
    background-color: transparent;
}

.navbar.scrolled {
    padding: 16px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.logo-duda {
    font-family: var(--ff-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-primary);
    line-height: 0.9;
    letter-spacing: 2px;
}

.logo-subtitle {
    font-family: var(--ff-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-secondary);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--clr-dark);
    position: relative;
    padding: 8px 0;
}

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

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

.nav-links a:hover {
    color: var(--clr-primary);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--clr-primary);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 150px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, var(--clr-primary-light) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, var(--clr-secondary-light) 0%, transparent 40%),
        var(--clr-bg);
    z-index: -2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.logo-img {
    max-height: 50px;
    width: auto;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-text em {
    color: var(--clr-primary);
    font-style: italic;
    position: relative;
}

.hero-text em::after {
    content: '✦';
    position: absolute;
    top: -10px;
    right: -25px;
    font-size: 1.5rem;
    color: var(--clr-secondary);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--clr-gray);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    position: relative;
    height: 600px;
    width: 100%;
}

.hero-main-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.3);
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: -1;
}

@keyframes morph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    100% {
        border-radius: 50% 50% 30% 70% / 50% 40% 70% 40%;
    }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-weight: 600;
    color: var(--clr-dark);
    font-family: var(--ff-heading);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 15%;
    left: 0;
    z-index: 2;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: 0;
    z-index: 2;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.custom-shape-divider-bottom-1698243501 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1698243501 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.custom-shape-divider-bottom-1698243501 .shape-fill {
    fill: var(--clr-bg);
}

/* ==========================================================================
   Products Section
   ========================================================================== */

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--clr-secondary);
    border-radius: 2px;
}

.carousel-container {
    position: relative;
    width: 100%;
}

.products-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 30px;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.products-grid::-webkit-scrollbar {
    display: none;
}

.products-grid .product-card {
    flex: 0 0 calc(25% - 22.5px);
    scroll-snap-align: start;
}

.carousel-arrow {
    position: absolute;
    top: calc(50% - 10px);
    transform: translateY(-50%);
    background: var(--clr-primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: var(--clr-primary-dark);
}

.carousel-arrow.prev {
    left: -20px;
}

.carousel-arrow.next {
    right: -20px;
}

.product-card {
    background-color: var(--clr-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.product-img {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-heading);
    color: rgba(44, 62, 60, 0.5);
    font-size: 1.2rem;
    transition: var(--transition-slow);
}

.product-card:hover .img-placeholder {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--clr-secondary);
    color: var(--clr-dark);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(244, 196, 116, 0.4);
}

.product-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-family: var(--ff-body);
    font-weight: 600;
    line-height: 1.4;
    flex-grow: 1;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--ff-heading);
    color: var(--clr-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.old-price {
    font-size: 1rem;
    color: var(--clr-gray);
    text-decoration: line-through;
    font-weight: 400;
}

/* ==========================================================================
   About Section
   ========================================================================== */

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

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
}

.foto-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(to top right, var(--clr-primary-light), #fff);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    font-family: var(--ff-heading);
    font-size: 1.5rem;
    border: 2px dashed rgba(62, 186, 166, 0.3);
}

.foto-duda {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 2px dashed rgba(62, 186, 166, 0.3);
}

.about-ornament {
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 5rem;
    color: var(--clr-secondary);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--clr-gray);
    margin-bottom: 20px;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--clr-gray-light);
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--ff-heading);
    color: var(--clr-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--clr-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact {
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
    color: var(--clr-light);
}

.contact h2 {
    color: var(--clr-light);
    font-size: 3rem;
}

.contact p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact .btn-primary {
    background-color: var(--clr-secondary);
    color: var(--clr-dark);
}

.contact .btn-primary:hover {
    background-color: var(--clr-light);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background-color: var(--clr-dark);
    color: var(--clr-light);
    padding: 80px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-duda {
    color: var(--clr-light);
}

.footer-brand p {
    margin-top: 16px;
    color: #a0aab2;
    max-width: 300px;
}

.footer-social h4 {
    color: var(--clr-light);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    /* Hide text */
    position: relative;
    transition: var(--transition-normal);
}

.social-icons a::before {
    content: '';
    width: 18px;
    height: 18px;
    background-color: currentColor;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.social-icons a[aria-label="Instagram"]::before {
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="2" width="20" height="20" rx="5" ry="5"></rect><path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"></path><line x1="17.5" y1="6.5" x2="17.51" y2="6.5"></line></svg>');
}

.social-icons a[aria-label="Pinterest"]::before {
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="12" y1="5" x2="12" y2="19"></line><line x1="5" y1="12" x2="19" y2="12"></line></svg>');
}

.social-icons a[aria-label="Behance"]::before {
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M8 14s1.5 2 4 2 4-2 4-2"></path><line x1="9" y1="9" x2="9.01" y2="9"></line><line x1="15" y1="9" x2="15.01" y2="9"></line></svg>');
}

.social-icons a:hover {
    background-color: var(--clr-primary);
    color: var(--clr-light);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    color: #a0aab2;
    font-size: 0.9rem;
}

/* ==========================================================================
   Product Details Page
   ========================================================================== */

.page-product {
    background-color: var(--clr-bg);
}

.product-detail-main {
    padding-top: 120px;
    padding-bottom: 80px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-gray);
    font-weight: 500;
    margin-bottom: 40px;
    transition: var(--transition-normal);
}

.back-link:hover {
    color: var(--clr-primary);
    transform: translateX(-5px);
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Carousel Styles */
.product-gallery {
    position: relative;
    top: 0;
    position: sticky;
    top: 100px;
}

.carousel-main {
    position: relative;
    height: 500px;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.carousel-track-container {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 300ms ease-in;
}

.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-dark);
    transition: var(--transition-normal);
}

.carousel-button:hover {
    background: white;
    box-shadow: var(--shadow-md);
    color: var(--clr-primary);
}

.carousel-button-left {
    left: 15px;
}

.carousel-button-right {
    right: 15px;
}

.carousel-button.is-hidden {
    display: none;
}

.carousel-button svg {
    width: 20px;
    height: 20px;
}

/* Carousel Nav Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.carousel-indicator {
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    flex: 1;
    max-width: 100px;
    height: 80px;
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    transition: var(--transition-normal);
    opacity: 0.6;
}

.carousel-indicator:hover {
    opacity: 1;
}

.carousel-indicator.current-indicator {
    border-color: var(--clr-primary);
    opacity: 1;
}

/* Product Info Panel */
.product-info-panel {
    display: flex;
    flex-direction: column;
}

.product-title-large {
    font-size: 2.8rem;
    margin-bottom: 16px;
    margin-top: 8px;
    line-height: 1.2;
}

.product-price-large {
    font-size: 2.2rem;
    color: var(--clr-dark);
    font-weight: 700;
    font-family: var(--ff-heading);
    margin-bottom: 30px;
}

.product-description {
    color: var(--clr-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.product-description h3,
.product-description h4 {
    color: var(--clr-dark);
    margin-bottom: 15px;
    font-family: var(--ff-body);
}

.product-description h3 {
    font-size: 1.5rem;
    margin-top: 0;
}

.product-description h4 {
    font-size: 1.2rem;
    margin-top: 25px;
}

.product-description p {
    margin-bottom: 15px;
}

.product-description ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.product-description li {
    margin-bottom: 8px;
}

.product-actions {
    background: var(--clr-bg-alt);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-gray-light);
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--clr-gray);
    font-weight: 500;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    .products-grid .product-card {
        flex: 0 0 calc(50% - 15px);
    }

    .hero-text h1 {
        font-size: 2.8rem;
        line-height: 1.1;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--clr-light);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        padding: 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition-normal);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        order: 2;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: 1;
        height: 350px;
    }

    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-gallery {
        position: static;
    }

    .carousel-main {
        height: 350px;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats {
        justify-content: center;
    }

    .contact-links {
        flex-direction: column;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-brand p {
        margin: 16px auto 0;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .products-grid .product-card {
        flex: 0 0 100%;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .product-title-large {
        font-size: 2.2rem;
    }
}