:root {
    --primary-color: #FF6B6B;
    --secondary-color: #FFD93D;
    --accent-pink: #FF6B9D;
    --accent-purple: #C44569;
    --accent-blue: #00D9FF;
    --dark-color: #1A1A1A;
    --light-color: #F7F7F7;
    --text-color: #2B2B2B;
    --border-color: #E0E0E0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.2);
    --yellow-bg: #FFC107;
    --pink-bg: #FFB6D9;
    --purple-bg: #D8BFD8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .btn-primary, .btn-secondary, .btn-explore, .nav-link, .dropdown-btn {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SLIDER SECTION */
.slider-section {
    padding: 60px 0;
    background: white;
}

.slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slider-slide {
    min-width: 100%;
    padding: 0 20px;
}

.slider-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.slider-text {
    background: linear-gradient(135deg, #FFB6D9 0%, #FF6B9D 100%);
    padding: 50px 40px;
    border-radius: 20px;
    color: #1A1A1A;
}

.slider-text h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.slider-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.slider-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #1a1a1a;
}

.slider-visual {
    background: linear-gradient(135deg, #FFB6D9 0%, #FF6B9D 100%);
    height: 380px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.slider-product-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 100%;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.slider-product-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 24px;
}

.slider-card-label {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #1a1a1a;
    color: white;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.slider-pattern {
    width: 100%;
    height: 100%;
    opacity: 0.6;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(0,0,0,0.1) 0%, transparent 50%);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #e55a5a;
    transform: scale(1.1);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #DDD;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.indicator:hover {
    background: var(--primary-color);
}

/* ATTRIBUTES SECTION */
.attributes-section {
    padding: 100px 0;
    background: #F5F5F5;
}

.attributes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.attribute-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.attribute-card:nth-child(1) {
    border-color: var(--primary-color);
}

.attribute-card:nth-child(2) {
    border-color: var(--secondary-color);
}

.attribute-card:nth-child(3) {
    border-color: var(--accent-pink);
}

.attribute-card:nth-child(4) {
    border-color: var(--accent-purple);
}

.attribute-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.attribute-card h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.attribute-card p {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

/* EFFECTS SECTION */
.effects-section {
    padding: 80px 0;
    background: #fff3f1;
}

.effects-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.effects-copy {
    background: #539fa2;
    border-radius: 28px;
    padding: 60px 50px;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 420px;
}

.effects-eyebrow {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 13px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #7f1e1b;
}

.effects-copy h2 {
    font-size: 56px;
    margin-bottom: 24px;
    line-height: 1.05;
    letter-spacing: -1px;
}

.effects-copy p {
    max-width: 560px;
    font-size: 18px;
    line-height: 1.85;
    color: #2b2b2b;
}

.effects-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.effect-card {
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.effect-card p {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0;
}

.card-highlight {
    background: #fff6f4;
    color: #1a1a1a;
}

.card-light {
    background: #fff9f8;
    color: #1a1a1a;
}

.effect-pattern-card {
    background: linear-gradient(135deg, rgba(255, 185, 160, 0.95), rgba(255, 122, 138, 0.95));
    position: relative;
    overflow: hidden;
}

.pattern-box {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.35) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.35) 0%, transparent 25%),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.12) 0 10px, transparent 10px 20px);
}

.effect-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
img.logo-img {
    height: 120px;
}
@media (max-width: 1000px) {
    .effects-grid {
        grid-template-columns: 1fr;
    }

    .effects-copy {
        min-height: auto;
        padding: 45px 30px;
    }
}

@media (max-width: 700px) {
    .effects-copy h2 {
        font-size: 42px;
    }

    .effects-copy p {
        font-size: 16px;
    }

    .effects-cards {
        grid-template-columns: 1fr;
    }
}

/* PRODUCT EXPERIENCE */
.product-experience {
    padding: 20px 0 80px;
    background: #ffffff;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: #b34744;
    text-transform: uppercase;
}

.product-experience h2 {
    font-size: 48px;
    line-height: 1.05;
    color: #1a1a1a;
    margin: 0;
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.product-tab {
    border: 1px solid rgba(26, 26, 26, 0.12);
    background: white;
    color: #1a1a1a;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.product-tab:hover,
.product-tab.active {
    color: white;
    
    border-color: transparent;
}

.product-tab-panels {
    position: relative;
}

.product-panel {
    display: none;
}

.product-panel.active {
    display: block;
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(26, 26, 26, 0.13);
    padding-bottom: 10px;
    margin-bottom: 36px;
}

.product-tab {
    border: none;
    background: transparent;
    color: rgba(26, 26, 26, 0.65);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    /* letter-spacing: 0.22em;
    padding: 18px 0; */
    cursor: pointer;
    position: relative;
}

.product-tab.active {
    color: #1a1a1a;
}

.product-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: #1a1a1a;
    border-radius: 999px;
}

.product-tab:hover {
    color: #111;
}

.product-copy {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(26, 26, 26, 0.72);
    font-size: 16px;
    line-height: 1.9;
    margin-top: 16px;
}

.product-experience .section-head h2 {
        font-size: 40px;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-top: 10px;
    text-transform: uppercase;
}

.product-tab-panels {
    position: relative;
}

.product-panel {
    display: none;
}

.product-panel.active {
    display: block;
}

.product-carousel {
    display: grid;
    grid-template-columns: repeat(5, minmax(240px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffe7e3;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 1400px) {
    .product-carousel {
        grid-template-columns: repeat(4, minmax(220px, 1fr));
    }
}

@media (max-width: 1140px) {
    .product-carousel {
        grid-template-columns: repeat(3, minmax(220px, 1fr));
    }
}

@media (max-width: 860px) {
    .product-carousel {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 620px) {
    .product-carousel {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-card:nth-child(odd) {
    background: #ffd6d1;
}

.product-card:nth-child(even) {
    background: #ffebeb;
}

.product-card:nth-child(3) {
    background: #f8d7e0;
}

.product-card:nth-child(4) {
    background: #f5c9e1;
}

.product-image {
    position: relative;
   
    display: grid;
    place-items: center;
}

.product-image img {
    width: auto;
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    display: block;
}

.product-card-tags {
    position: absolute;
    top: 18px;
    left: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 2;
}

.product-card-tag {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 10px 12px;
    border-radius: 4px;
}

.product-card-content {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: left;
}

.product-card h3 {
    font-size: 24px;
    margin: 0;
}

.product-card p {
    font-size: 15px;
    color: #3c3c3c;
    line-height: 1.9;
    margin: 0;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.product-card-price {
    font-size: 19px;
    font-weight: 900;
    color: #1a1a1a;
}

.btn-card {
    background: #1a1a1a;
    color: white;
    border-radius: 999px;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.25s ease;
}

.btn-card:hover {
    background: #333;
}

@media (max-width: 920px) {
    .product-card {
        min-width: 260px;
    }

    .product-experience h2 {
        font-size: 36px;
    }
}

@media (max-width: 700px) {
    .product-tabs {
        gap: 10px;
    }

    .product-card {
        min-width: 260px;
    }

    .product-card-tags {
        gap: 8px;
    }

    .product-card-content {
        padding: 20px;
    }

    .product-experience {
        padding: 70px 0 60px;
    }
}

/* PRODUCT EXPERIENCE OVERRIDE */
.experience-carousel {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: thin;
    scrollbar-color: #e0e0e0 transparent;
}

.experience-carousel::-webkit-scrollbar {
    height: 6px;
}

.experience-carousel::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 3px;
}

.experience-carousel .experience-card {
    flex: 0 0 260px;
}

.experience-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff5f2;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.experience-image {
    position: relative;
   
    display: grid;
    place-items: center;
    background: #f5d9d4;
   
}

.experience-image img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.experience-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #111;
    color: white;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 10px 14px;
    border-radius: 6px;
}

.experience-card-content {
    padding: 12px 0px 14px;
    text-align: center;
}

.experience-card-content h3 {
    font-size: 16px;
    
}

.experience-card-content p {
    font-size: 14px;
    color: #3c3c3c;
    margin: 0 0 12px;
}

.experience-card-meta {
    display: inline-block;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}


@media (max-width: 920px) {
    .experience-card {
        min-width: auto;
    }

    .product-experience h2 {
        font-size: 36px;
    }
}

@media (max-width: 700px) {
    .product-tabs {
        gap: 10px;
    }

    .product-experience .section-head h2 {
        font-size: 27px;
    }

    .experience-card-content {
        padding: 20px;
    }

    .product-experience {
        padding: 70px 0 60px;
    }
}

/* NAVIGATION */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-height: 80px;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 80px;
}

.logo {
    flex-shrink: 0;
}

.logo h1 {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo h1:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 12px;
    transition: color 0.25s ease, transform 0.2s ease;
    font-size: 16px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 10px;
    width: calc(100% - 20px);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark-color);
    padding: 16px 24px;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.dropdown-btn::after {
    content: '▾';
    font-size: 14px;
    transition: transform 0.3s ease;
}

.dropdown.open .dropdown-btn::after {
    transform: rotate(180deg);
}

.dropdown-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown.open .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 18px 24px;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 16px;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 217, 61, 0.1));
    color: var(--primary-color);
    padding-left: 30px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: none;
    background: #fe7085;
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.hamburger:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
}

.hamburger span {
    width: 100%;
    height: 4px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 900px) {
    .navbar {
        min-height: 58px;
    }

    .nav-container {
        padding: 6px 14px;
        min-height: 58px;
    }

    .logo h1 {
        font-size: 28px;
    }

    img.logo-img {
        height: 70px;
        width: auto;
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        gap: 0;
        padding: 25px 20px;
        border-radius: 0 0 25px 25px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-top: none;
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link,
    .dropdown-btn {
        width: 100%;
        text-align: left;
        padding: 13px 20px;
        margin: 4px 0;
        border-radius: 12px;
        font-size: 16px;
        min-height: 46px;
        display: flex;
        align-items: center;
    }

    .nav-link::before,
    .dropdown-btn::before {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active,
    .dropdown-btn:hover {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        transform: translateX(15px);
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 15px;
        margin-top: 10px;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.08);
    }

    .dropdown.open .dropdown-content {
        max-height: 400px;
    }

    .dropdown-content a {
        padding: 13px 20px;
        font-size: 16px;
        min-height: 46px;
        display: flex;
        align-items: center;
    }

    .dropdown-content a:hover {
        padding-left: 35px;
    }

    .hamburger {
        display: flex;
        width: 42px;
        height: 42px;
        padding: 9px;
        border-radius: 10px;
    }

    .hamburger span {
        height: 3px;
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* Add body padding for fixed navbar */
body {
    padding-top: 100px;
}

@media (max-width: 600px) {
    .logo h1 {
        font-size: 22px;
    }

    .nav-container {
        padding: 5px 25px;
    }

    img.logo-img {
        height:70px;
    }

    body {
        padding-top: 60px;
    }
}

/* HERO SECTION */
.hero {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
        url('../assets/images/slider.jpeg') center/cover no-repeat;
    color: #FFFFFF;
    padding: 20px 0 50px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #f0f8ff00;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 500;
}

@media (max-width: 700px) {
    .hero {
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
            url('../assets/images/slider_mobile.jpg');
        background-size: 100% auto;
        background-repeat: no-repeat;
        background-position: center top;
        min-height: 520px;
        padding: 4px 0 24px;
        display: flex;
        align-items: flex-start;
        text-align: center;
    }

    .hero .container {
        width: 100%;
    }

    .hero-content {
        max-width: 520px;
        margin: 0 auto;
        padding-top: 0;
    }

    .hero-content h1 {
        font-size: clamp(42px, 11vw, 58px);
        line-height: 0.92;
        margin-bottom: 24px;
    }

    .hero-content p {
        max-width: 360px;
        margin: 0 auto 26px;
        font-size: 18px;
        line-height: 1.35;
        font-weight: 800;
    }

    .hero .btn-primary,
    .hero .btn-secondary {
        width: min(100%, 360px);
        margin: 0 auto 12px;
        padding: 16px 22px;
        font-size: 18px;
        line-height: 1.2;
    }
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-right: 15px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #1A1A1A;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.3);
    color: #1A1A1A;
    border: 2px solid #1A1A1A;
    font-weight: 700;
}

.btn-secondary:hover {
    background: white;
    color: #1A1A1A;
    transform: translateY(-5px);
}

/* CONTACT HERO STYLES */
.hero--contact {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    min-height: 220px;
    display: flex;
    align-items: center;
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.hero--contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.32);
    z-index: 1;
}

.hero--contact .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    color: #fff;
}

.hero--contact h1 {
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 900;
    margin: 0 0 10px;
    line-height: 1.05;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.45);
    color: #fff;
}

.hero--contact p {
    max-width: 680px;
    margin: 0 auto;
    color: #fff;
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.45);
}
.hero-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.contact-item i {
    font-size: 18px;
    color: var(--secondary-color);
}

.contact-item span {
    font-weight: 600;
    font-size: 16px;
}

/* ABOUT HERO STYLES */
.hero--about {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    min-height: 220px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 56px 0;
    overflow: hidden;
}

.hero--about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero--about .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
}

.hero--about h1 {
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 900;
    margin: 0 0 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    line-height: 1.05;
    color: #fff;
}

.hero--about p {
    font-size: 18px;
    font-weight: 300;
    margin: 0;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #fff;
}

/* SYRUPS HERO STYLES */
.hero--syrups {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    min-height: 220px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 56px 0;
    overflow: hidden;
}

.hero--syrups::before {
    content: '';
    position: absolute;  
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero--syrups .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    color: #fff;
}

.hero--syrups h1 {
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 900;
    margin: 0 0 10px;
    line-height: 1.05;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    color: #fff;
}

.hero--syrups p {
    max-width: 680px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #fff;
}

/* SHOTZ HERO STYLES */
.hero--shotz {
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.9), rgba(255, 107, 107, 0.9)),
        url('../assets/images/shotz-hero.jpg') center/cover no-repeat;
    min-height: 150px;
    display: flex;
    align-items: center;
    position: relative;
}


.hero--shotz .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero--shotz h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.hero--shotz p {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* INFUSED HERO STYLES */
.hero--infused {
    background: linear-gradient(135deg, #2f8f5b 0%, #ffd93d 100%);
    min-height: 220px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 56px 0;
    overflow: hidden;
}

.hero--infused::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    z-index: 1;
}

.hero--infused .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    color: #fff;
}

.hero--infused h1 {
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 900;
    margin: 0 0 10px;
    line-height: 1.05;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    color: #fff;
}

.hero--infused p {
    max-width: 680px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #fff;
}

/* BLOG HERO STYLES */
.hero--blog {
    background: linear-gradient(135deg, #1f767d 0%, #ff6b6b 100%);
    min-height: 220px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 56px 0;
    overflow: hidden;
}

.hero--blog::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero--blog .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    color: #fff;
}

.hero--blog h1 {
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 900;
    margin: 0 0 10px;
    line-height: 1.05;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    color: #fff;
}

.hero--blog p {
    font-size: 18px;
    font-weight: 300;
    margin: 0;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #fff;
}

/* PRODUCTS HERO STYLES */
.hero--products {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    min-height: 220px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 56px 0;
    overflow: hidden;
}

.hero--products::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero--products .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    color: #fff;
}

.hero--products h1 {
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 900;
    margin: 0 0 10px;
    line-height: 1.05;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    color: #fff;
}

.hero--products p {
    max-width: 680px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #fff;
}

/* BLOG SECTION */
.blog-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.blog-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* FEATURED POST */
.featured-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
}

.featured-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post:hover .featured-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
    line-height: 1.3;
}

.featured-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-pink));
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* BLOG POSTS GRID */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.blog-post-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 25px;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.post-category {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-date {
    color: #999;
    font-size: 12px;
    font-weight: 500;
}

.post-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.post-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

/* LOAD MORE */
.load-more-container {
    text-align: center;
    margin-top: 20px;
}

.btn-load-more {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-pink));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-load-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

/* SIDEBAR */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.sidebar-widget h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* SEARCH */
.search-box {
    display: flex;
    gap: 0;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 25px 0 0 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary-color);
}

.search-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: scale(1.05);
}

/* CATEGORIES */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 8px;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.category-link:hover,
.category-link.active {
    color: var(--primary-color);
}

.count {
    background: #f0f0f0;
    color: #666;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

/* RECENT POSTS */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-post-item {
    display: flex;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 4px;
    line-height: 1.3;
}

.recent-post-date {
    color: #999;
    font-size: 12px;
}

/* NEWSLETTER */
.newsletter-signup {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--primary-color);
}

.btn-newsletter {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

/* SECTION HEADER */
.section-header {
   
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 100%;
    
    line-height: 1.6;
}

/* PRODUCT CARDS */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 350px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
}

.btn-explore {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-pink));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.btn-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* FEATURES SECTION */
.features {
    padding: 80px 0;
    background: #f5f5f5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-pink));
    transition: left 0.3s ease;
}

.feature-card:hover::before {
    left: 0;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.feature-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.feature-card:nth-child(2) i {
    color: var(--accent-pink);
}

.feature-card:nth-child(3) i {
    color: var(--secondary-color);
}

.feature-card:nth-child(4) i {
    color: var(--accent-purple);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 800;
}

.feature-card p {
    color: #666;
    font-size: 14px;
}

/* PRODUCTS SECTION */
.elixir {
    padding: 80px 0;
}

.products {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.products .product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.products .product-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.products .product-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: white;
    position: relative;
}



.products .product-info {
    padding: 25px;
}

.products .product-info h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 800;
}

.product-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.product-price {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
}

.btn-add-cart {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 15px;
    text-transform: uppercase;
}

.btn-add-cart:hover {
    background: #e55a5a;
    transform: scale(1.05);
}

/* PRODUCT DETAIL PAGE */
.product-detail-hero {
    padding: 70px 0;
    background:
        linear-gradient(135deg, rgba(255, 217, 61, 0.18), rgba(0, 217, 255, 0.14)),
        #fff;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
    gap: 50px;
    align-items: center;
}

.product-detail-media {
    min-height: 460px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff8d6, #e9fbff);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px;
    overflow: hidden;
}

.product-detail-media img {
    width: 100%;
    height: 100%;
    max-height: 460px;
    object-fit: contain;
    display: block;
}

.product-detail-content {
    max-width: 620px;
}

.detail-back-link,
.detail-secondary-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.detail-back-link {
    margin-bottom: 24px;
}

.detail-kicker {
    display: inline-block;
    color: var(--accent-purple);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.product-detail-content h1,
.empty-state h1 {
    color: var(--dark-color);
    font-size: 48px;
    line-height: 1.08;
    font-weight: 900;
    margin-bottom: 20px;
}

.detail-description {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.detail-price {
    color: var(--primary-color);
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 24px;
}

.detail-actions {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.product-detail-info {
    padding: 60px 0;
    background: var(--light-color);
}

.detail-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.detail-info-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.detail-info-card i {
    color: var(--primary-color);
    font-size: 30px;
    margin-bottom: 16px;
}

.detail-info-card h2 {
    color: var(--dark-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.detail-info-card p {
    color: #666;
    font-size: 14px;
}

.related-products {
    background: #fff;
}

.product-detail-empty {
    padding: 120px 0;
    background: var(--light-color);
}

.empty-state {
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border-radius: 18px;
    padding: 50px 30px;
    box-shadow: var(--shadow);
}

.empty-state p {
    color: #666;
    margin-bottom: 24px;
}

/* CATEGORIES SECTION */
.categories {
    padding: 80px 0;
    background: white;
}

.category-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.category-card:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.category-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #FFD93D 0%, #FFA500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: white;
    position: relative;
    overflow: hidden;
}

.category-card:nth-child(2) .category-image {
    background: linear-gradient(135deg, #FFB6D9 0%, #FF6B9D 100%);
}

.category-card:nth-child(3) .category-image {
    background: linear-gradient(135deg, #D8BFD8 0%, #C44569 100%);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-details {
    padding: 30px;
}

.category-details h3 {
    font-size: 26px;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 900;
}

.category-details p {
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
}

.btn-explore {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-explore:hover {
    background: #e55a5a;
    transform: translateX(5px);
}
.container-fluid {
    padding: 0px 50px;
}

.showcase-section {
    padding: 64px 0 68px;
    background: #f7f1e8;
}

.showcase-intro {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(320px, 1.4fr);
    gap: 18px 44px;
    align-items: end;
    margin: 0 0 28px;
}

.showcase-intro .section-eyebrow {
    margin: 0;
}

.showcase-intro h2 {
    margin: 0;
    color: #202018;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1;
    max-width: 760px;
}

.showcase-intro p {
    grid-column: 2;
    margin: 0;
    max-width: 680px;
    color: #5d5b4c;
    font-size: 17px;
    line-height: 1.75;
}

.showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
    gap: 24px;
    align-items: stretch;
}

.showcase-card {
    position: relative;
    min-height: 620px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 24px 60px rgba(38, 44, 28, 0.14);
}

.showcase-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 20, 12, 0.02) 20%, rgba(16, 20, 12, 0.74) 100%);
}

.showcase-card--large {
    grid-row: span 2;
    background-position: center;
}

.showcase-card--split {
    min-height: 298px;
}

.showcase-card--dropz {
    background-position: center 58%;
}

.showcase-card--quality {
    background-position: center 50%;
}

.showcase-overlay {
    position: relative;
    z-index: 1;
    padding: 40px;
    color: white;
    max-width: 520px;
}

.showcase-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.showcase-card h2,
.showcase-card h3 {
    margin: 0 0 18px;
    color: white;
    line-height: 1.05;
}

.showcase-card h2 {
    font-size: 48px;
}

.showcase-card h3 {
    font-size: 32px;
}

.showcase-card p {
    margin: 0 0 22px;
    max-width: 420px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.8;
}

.showcase-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    align-items: center;
}

.showcase-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: white;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.08em;
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
}

.showcase-link:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

@media (max-width: 1100px) {
    .showcase-intro {
        grid-template-columns: 1fr;
    }

    .showcase-intro p {
        grid-column: auto;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-card--large,
    .showcase-card--split {
        min-height: 420px;
    }
}

@media (max-width: 700px) {
    .container-fluid {
        padding: 0 20px;
    }

    .showcase-section {
        padding: 46px 0 52px;
    }

    .showcase-intro {
        margin-bottom: 22px;
    }

    .showcase-intro h2 {
        font-size: 30px;
    }

    .showcase-intro p {
        font-size: 15px;
    }

    .showcase-card {
        min-height: 360px;
    }

    .showcase-overlay {
        padding: 24px;
    }

    .showcase-card h2 {
        font-size: 32px;
    }

    .showcase-card h3 {
        font-size: 24px;
    }
}

.topics-section {
    padding: 50px 0 60px;
   
}

.topics-section .section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 24px;
}

.topic-card {
    background: white;
    border-radius: 28px;
    padding: 34px 28px;
    box-shadow: 0 16px 35px rgba(31, 31, 31, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(31, 31, 31, 0.12);
}

.topic-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.topic-card p {
    color: #4d4d4d;
    line-height: 1.8;
    font-size: 15px;
}

@media (max-width: 1140px) {
    .topics-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 700px) {
    .topics-grid {
        grid-template-columns: 1fr;
    }
}

/* ABOUT SECTION */
.about {
    padding: 72px 0;
    background: linear-gradient(180deg, #fff 0%, #fff8ec 100%);
}

.about-content {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
}

.about-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 0;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(44, 45, 27, 0.16);
    position: relative;
    overflow: hidden;
    background: #f5ead8;
    align-self: start;
    margin-top: 8px;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 55%, rgba(30, 32, 20, 0.18) 100%);
    z-index: 1;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.about-text {
    max-width: 650px;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
}

.about-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.about-text h2 {
    font-size: clamp(34px, 4vw, 54px);
    color: var(--dark-color);
    margin: 0 0 28px;
    font-weight: 900;
    position: relative;
    line-height: 1;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.about-text p {
    color: #5e5b51;
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.75;
    text-align: justify;
}

.about-text .btn-explore {
    margin-top: 12px;
}

/* MISSION SECTION */
.mission-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.mission-text {
    order: 2;
}

.mission-image {
    order: 1;
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
    box-shadow: var(--shadow-lg);
}

/* STATS SECTION */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-pink));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CONTACT FORM */
.contact-form {
    max-width: 600px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* CONTACT LAYOUT */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.contact-info {
    /* Contact info section styles */
}

.contact-form-section {
    /* Form section styles */
}

.contact-info-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.contact-info-card h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info-card p {
    color: #666;
    margin: 0;
}

.contact-info-card a {
    color: #666;
    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(255, 107, 107, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #e55a5a;
    transform: scale(1.02);
}

/* FOOTER */
.footer {
    background: #0f1215;
    color: #e8ecef;
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand h2 {
    font-size: 28px;
    margin-bottom: 16px;
    letter-spacing: -0.05em;
}

.footer-brand p {
    color: #c8ced2;
    max-width: 470px;
    line-height: 1.9;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 0;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.footer-section p,
.footer-section ul {
    color: #bcc3c9;
    font-size: 14px;
    line-height: 1.9;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bcc3c9;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-contact a {
    color: #bcc3c9;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.social-links a {
    color: #dfe4e8;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-newsletter {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    align-items: center;
    padding: 30px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 30px;
}

.footer-newsletter-copy h3 {
    margin: 0 0 14px;
    font-size: 22px;
    color: #fff;
}

.footer-newsletter-copy p {
    margin: 0;
    color: #c8ced2;
    max-width: 520px;
}

.footer-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.footer-form input {
    padding: 18px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 14px;
    outline: none;
}

.footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.62);
}

.footer-form button {
    min-width: 170px;
    padding: 18px 24px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    text-align: center;
    color: #8d99a6;
    font-size: 13px;
}

@media (max-width: 1100px) {
    .footer-top,
    .footer-newsletter {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 20px;
    }

    .footer-section {
        gap: 12px;
    }

    .footer-newsletter {
        padding: 24px;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .slider-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .slider-text h2 {
        font-size: 32px;
    }

    .slider-text p {
        font-size: 14px;
    }

    .slider-visual {
        height: 250px;
    }

    .slider-controls {
        bottom: -60px;
    }

    .slider-indicators {
        bottom: -90px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .attributes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .attribute-card {
        padding: 30px 20px;
    }

    .attribute-card h3 {
        font-size: 20px;
    }

    .nav-links {
        gap: 0px;
    }

    .nav-link {
        font-size: 13px;
        padding: 8px 12px;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-title {
        font-size: 36px;
    }

    .btn-primary,
    .btn-secondary {
        display: block;
        margin: 10px auto;
    }

    .products-grid,
    .features-grid,
    .category-showcase,
    .product-detail-layout,
    .detail-info-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-hero {
        padding: 45px 0;
    }

    .product-detail-media {
        min-height: 320px;
        padding: 24px;
    }

    .product-detail-media img {
        max-height: 320px;
    }

    .product-detail-content h1,
    .empty-state h1 {
        font-size: 34px;
    }

    .detail-description {
        font-size: 15px;
    }

    .detail-info-card {
        padding: 22px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-image {
        aspect-ratio: 16 / 11;
        margin-top: 0;
    }

    .about-text {
        max-width: none;
    }

    .about-text h2 {
        margin-bottom: 24px;
    }

    .about-text p {
        font-size: 15px;
        line-height: 1.72;
    }

    .mission-content {
        grid-template-columns: 1fr;
    }

    .mission-text {
        order: 1;
    }

    .mission-image {
        order: 2;
        height: 280px;
        font-size: 60px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    .hero {
        padding: 0px 0;
    }

    .hero--contact {
        min-height: 190px;
        padding: 44px 0;
    }

    .hero--contact h1 {
        font-size: 32px;
    }

    .hero--contact p {
        font-size: 16px;
    }

    .hero-contact-info {
        gap: 20px;
    }

    .contact-item {
        padding: 12px 16px;
    }

    .hero--about {
        min-height: 190px;
        padding: 44px 0;
    }

    .hero--about h1 {
        font-size: 32px;
    }

    .hero--about p {
        font-size: 16px;
    }

    .hero--syrups {
        min-height: 190px;
        padding: 44px 0;
    }

    .hero--syrups h1 {
        font-size: 32px;
    }

    .hero--syrups p {
        font-size: 16px;
    }

    .hero--shotz {
        min-height: 300px;
        padding: 80px 0;
    }

    .hero--shotz h1 {
        font-size: 36px;
    }

    .hero--shotz p {
        font-size: 18px;
    }

    .hero--infused {
        min-height: 190px;
        padding: 44px 0;
    }

    .hero--infused h1 {
        font-size: 32px;
    }

    .hero--infused p {
        font-size: 16px;
    }

    .hero--blog {
        min-height: 190px;
        padding: 44px 0;
    }

    .hero--blog h1 {
        font-size: 32px;
    }

    .hero--blog p {
        font-size: 16px;
    }

    .hero--products {
        min-height: 190px;
        padding: 44px 0;
    }

    .hero--products h1 {
        font-size: 32px;
    }

    .hero--products p {
        font-size: 16px;
    }

    .blog-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .featured-image {
        height: 200px;
    }

    .featured-content {
        padding: 25px;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-widget {
        padding: 20px;
    }

    .recent-post-item {
        gap: 10px;
    }

    .recent-post-image {
        width: 50px;
        height: 50px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

    .product-info {
        padding: 20px;
    }

    .product-info h3 {
        font-size: 18px;
    }

    .product-info p {
        font-size: 13px;
    }

    .btn-explore {
        padding: 10px 20px;
        font-size: 13px;
    }

    .products,
    .features,
    .categories,
    .about {
        padding: 50px 0;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info-card {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .slider-text h2 {
        font-size: 24px;
    }

    .slider-text p {
        font-size: 13px;
    }

    .slider-text {
        padding: 30px 20px;
    }

    .slider-visual {
        height: 200px;
    }

    .slider-controls {
        bottom: -50px;
    }

    .slider-indicators {
        bottom: -80px;
        gap: 8px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .attributes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .attribute-card {
        padding: 25px 15px;
    }

    .attribute-card h3 {
        font-size: 18px;
    }

    .attribute-card p {
        font-size: 12px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .logo h1 {
        font-size: 18px;
    }

    .section-title {
        font-size: 24px;
    }

    .product-image,
    .category-image {
        font-size: 70px;
    }

    .feature-card i {
        font-size: 40px;
    }

    .hero {
        text-align: center;
    }

    .hero-content h1,
    .hero-content p {
        text-align: center;
    }

    .detail-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .detail-actions .btn-explore,
    .detail-secondary-link {
        justify-content: center;
        text-align: center;
    }

    .product-detail-media {
        min-height: 260px;
        border-radius: 14px;
    }

    .product-detail-content h1,
    .empty-state h1 {
        font-size: 28px;
    }

    .empty-state {
        padding: 36px 20px;
    }

    .hero {
        min-height: 270px;
        padding: 0 0 0px;
        background-size: 100% auto;
        background-position: center top;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero-content h1 {
        font-size: 44px;
        line-height: 0.92;
        margin-bottom: 22px;
    }

    .hero-content p {
        max-width: 330px;
        margin: 0 auto 24px;
        font-size: 16px;
        line-height: 1.35;
        font-weight: 800;
    }

    .hero .btn-primary,
    .hero .btn-secondary {
        width: min(100%, 330px);
        margin: 0 auto 12px;
        padding: 15px 18px;
        font-size: 17px;
    }

    .hero--contact {
        min-height: 180px;
        padding: 36px 0;
    }

    .hero--contact .hero-content {
        max-width: 340px;
        padding-top: 0;
    }

    .hero--contact h1 {
        font-size: 30px;
        line-height: 1.05;
        margin-bottom: 10px;
    }

    .hero--contact p {
        max-width: 310px;
        margin: 0 auto;
        font-size: 14px;
        line-height: 1.55;
        font-weight: 500;
    }

    .hero--about,
    .hero--syrups,
    .hero--infused,
    .hero--products,
    .hero--blog {
        min-height: 180px;
        padding: 36px 0;
        background-size: auto;
        background-position: center;
    }

    .hero--about .hero-content,
    .hero--syrups .hero-content,
    .hero--infused .hero-content,
    .hero--products .hero-content,
    .hero--blog .hero-content {
        max-width: 340px;
        padding-top: 0;
    }

    .hero--about h1,
    .hero--syrups h1,
    .hero--infused h1,
    .hero--products h1,
    .hero--blog h1 {
        font-size: 30px;
        line-height: 1.05;
        margin-bottom: 10px;
    }

    .hero--about p,
    .hero--syrups p,
    .hero--infused p,
    .hero--products p,
    .hero--blog p {
        max-width: 310px;
        margin: 0 auto;
        font-size: 14px;
        line-height: 1.55;
        font-weight: 500;
    }
}
