@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --purple: #8B5CF6;
    --purple-strong: #7C3AED;
    --orange: #F97316;
    --orange-strong: #EA580C;
    --dark: #101119;
    --text: #171821;
    --muted: #6f7380;
    --bg: #f5f6fb;
    --card: #ffffff;
    --border: #e5e7ee;
    --shadow: 0 12px 36px rgba(17, 19, 26, 0.12);
    --shadow-soft: 0 8px 22px rgba(17, 19, 26, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.page {
    max-width: 1200px;
    margin: 16px auto;
    padding: 88px 20px 64px;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.06);
    color: var(--text);
    font-weight: 600;
    letter-spacing: 0.2px;
    border: 1px solid var(--border);
}

.pill-dark {
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.12);
}

.pill-light {
    background: #fff;
    color: var(--text);
    border-color: #fff;
}

.hero-banner .pill {
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 9px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--purple-strong));
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.btn-secondary {
    background: #171821;
    color: #fff;
    border-color: #0f1116;
}

.btn-dark {
    background: #0f1116;
    color: #fff;
    border-color: #0f1116;
}

.btn-outline {
    background: transparent;
    border-color: var(--border);
    color: var(--text);
}

.btn-light {
    background: #fff;
    color: #0f1116;
    border-color: #fff;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.utility-bar {
    background: #0f1116;
    color: #f4f6fb;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.utility-left,
.utility-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.utility-item {
    font-size: 13px;
}

.utility-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f4f6fb;
    font-weight: 600;
}

.icon-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.nav-bar {
    background: #fff;
    box-shadow: var(--shadow-soft);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 20;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-bar.nav--hidden {
    transform: translateY(-110%);
    box-shadow: none;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;
    position: relative;
}

.brand__logo {
    height: 68px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 12px;
    align-items: center;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.3px;
    justify-content: center;
}

.nav-link {
    position: relative;
    padding: 8px 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
    transition: width 0.2s ease;
}

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

.nav-search {
    display: none;
}

.icon-bubble {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--card);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-soft);
    color: #0f1116;
}

.icon-bubble__icon svg {
    width: 18px;
    height: 18px;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, var(--orange), var(--orange-strong));
    color: #fff;
    border-radius: 999px;
    padding: 2px 7px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(0, 0, 0, 0.08);
    min-width: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-badge--inline {
    position: static;
    margin-left: 4px;
}

.nav-cart {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 48px;
    height: 48px;
    padding: 0;
    justify-self: end;
    margin-left: auto;
}

.nav-cart .icon-bubble__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-cart .icon-bubble__icon svg {
    width: 22px;
    height: 22px;
    margin: 0 auto;
}

.nav-cart .cart-badge--inline {
    background: #0f1116;
    color: #fff;
    border: none;
    min-width: 20px;
    position: absolute;
    top: -8px;
    right: -8px;
}

@media (min-width: 981px) {
    .nav-cart {
        display: none;
    }
}

.hamburger {
    display: none;
    border: 1px solid var(--border);
    background: var(--card);
    border-radius: 10px;
    padding: 10px 8px;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 20px;
    background: #0f1116;
    border-radius: 10px;
}

.hero-banner {
    margin-top: 28px;
    background:
        linear-gradient(120deg, rgba(0, 0, 0, 0.75), rgba(17, 17, 17, 0.55)),
        url('/public/assets/img/bg.png') center/cover;
    border-radius: 18px;
    color: #fff;
    padding: 40px 36px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    min-height: 420px;
    margin-bottom: 18px;
}

.hero-banner--new {
    background:
        linear-gradient(135deg, rgba(139, 92, 246, 0.85), rgba(249, 115, 22, 0.75)),
        url('/public/assets/img/bg.png') center/cover;
}

.hero-content--centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content--centered p {
    max-width: 100%;
    margin: 0 auto;
}

.pill-hero {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

@media (max-width: 980px) {
    .nav-cart {
        display: inline-flex;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    align-items: center;
}

.hero-grid--single {
    grid-template-columns: 1fr;
}

.hero-content h1 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: clamp(32px, 4.8vw, 52px);
    margin: 8px 0;
    line-height: 1.05;
}

.hero-content p {
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 12px 0;
}

.hero-perks {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.about-section {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow-soft);
    margin: 18px 0 24px;
    display: grid;
    gap: 10px;
}

.about-section h3 {
    margin: 0;
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 26px;
    letter-spacing: 0.2px;
}

.about-section p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.perk {
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-weight: 600;
}

.icon-section {
    margin: 24px 0 12px;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.icon-tile {
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
    border: 1px solid rgba(33, 38, 51, 0.06);
    border-radius: 14px;
    padding: 16px 14px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    box-shadow: 0 14px 34px rgba(17, 19, 26, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.icon-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(17, 19, 26, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.65);
    border-color: rgba(0, 0, 0, 0.09);
}

.icon-tile__circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.2), rgba(249, 115, 22, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--purple);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.icon-tile__text {
    display: grid;
    gap: 8px;
}

.icon-tile__title {
    font-weight: 700;
    letter-spacing: 0.15px;
    line-height: 1.35;
    font-size: 16px;
}

.icon-tile__text small {
    color: var(--muted);
    font-weight: 600;
    line-height: 1.5;
    font-size: 14px;
}
.section {
    margin: 22px 0;
}

.section-alt {
    background: var(--card);
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    margin: 32px 0;
}

.section-health-tips {
    margin: 48px 0;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.section-heading h2,
.section-heading h3 {
    margin: 4px 0;
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    letter-spacing: 0.2px;
}

.section-heading small {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--muted);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #0f1116;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .feature-card--large {
        grid-row: auto;
        min-height: 280px;
    }
    .feature-stack {
        grid-template-rows: repeat(2, auto);
    }
}

.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 12px 32px rgba(17, 19, 26, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

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

.badge {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--bg);
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 700;
}

.wish-btn {
    border: 1px solid var(--border);
    background: var(--card);
    border-radius: 8px;
    padding: 6px;
    cursor: pointer;
}

.product-card__thumb {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    overflow: hidden;
}

.product-card__img {
    width: auto;
    height: auto;
    max-width: 220px;
    max-height: 220px;
    object-fit: contain;
    transform-origin: center;
}

.product-card__body h3 {
    margin: 4px 0;
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rating-stars {
    display: inline-flex;
    gap: 2px;
}

.rating-stars svg {
    width: 14px;
    height: 14px;
}

.rating-score {
    font-weight: 700;
    color: #0f1116;
}

.card-benefits {
    list-style: none;
    padding: 0;
    margin: 8px 0;
}

.card-benefits--inline {
    display: grid;
    gap: 6px;
    margin: 10px 0 6px;
}

.card-benefits--inline li {
    background: none;
    border: 0;
    padding: 0;
    font-size: 13.5px;
    color: #8a8fa0;
    display: flex;
    gap: 6px;
    line-height: 1.45;
}

.card-benefits--inline li::before {
    content: "★";
    color: #f1b400;
    font-size: 14px;
    line-height: 1;
    position: relative;
    top: 1px;
}

.card-benefits--stack {
    align-items: flex-start;
    justify-items: flex-start;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price {
    font-weight: 800;
    color: #0f1116;
}

.section__cta,
.section-actions {
    margin-top: 12px;
    display: flex;
    justify-content: center;
}

.health-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.health-tip-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--shadow-soft);
}

.health-tip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.health-tip-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.health-tip-card h3 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 22px;
    margin: 0 0 12px;
    color: var(--text);
}

.health-tip-card p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

.promo-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin: 22px 0;
}

.promo-card {
    color: #fff;
    border-radius: 16px;
    padding: 18px;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    box-shadow: var(--shadow-soft);
}

.promo-card--fire {
    background: linear-gradient(135deg, #b31217, #e52d27);
}

.promo-card--steel {
    background: linear-gradient(135deg, #0b1933, #102347);
}

.promo-card h3 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 28px;
    margin: 6px 0;
}

.promo-art {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.28), transparent 60%);
}

.promo-art--steel {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.16), transparent 55%);
}

.promo-stack {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    display: grid;
    gap: 12px;
    box-shadow: var(--shadow-soft);
}

.stack-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 10px;
    align-items: center;
    border: 1px dashed var(--border);
    padding: 10px;
    border-radius: 12px;
}

.stack-thumb {
    background: var(--bg);
    border-radius: 12px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stack-thumb img {
    max-height: 80px;
}

.stack-body h4 {
    margin: 4px 0;
}

.stack-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.feature-grid {
    margin: 24px 0 32px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 14px;
}

.feature-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    border-radius: 16px;
    overflow: hidden;
    min-height: 280px;
    color: #fff;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    cursor: default;
    pointer-events: none;
    background-color: transparent;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.01) 0%, rgba(0,0,0,0.08) 100%);
    pointer-events: none;
}

.feature-card--small::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.01) 0%, rgba(0,0,0,0.05) 100%);
}

.feature-card__content {
    position: relative;
    padding: 28px 32px;
    display: grid;
    gap: 12px;
    max-width: 70%;
    align-items: start;
    justify-items: start;
    color: #fff;
}

.feature-card__content h3 {
    margin: 0;
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 38px;
    line-height: 1.1;
    text-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

.feature-card__content p {
    margin: 0;
    font-weight: 700;
    text-shadow: 0 3px 10px rgba(0,0,0,0.28);
}

.feature-card--large {
    grid-row: span 2;
    min-height: 340px;
    background-image: url('/public/assets/img/1.png');
    align-items: flex-start;
}

.feature-card--large .feature-card__content {
    position: absolute;
    top: 28px;
    left: 32px;
    transform: none;
    text-align: left;
    max-width: 55%;
}

.feature-stack {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 14px;
}

.feature-card--red { background-image: url('/public/assets/img/2.png'); }
.feature-card--blue { background-image: url('/public/assets/img/3.png'); }

.btn-sm {
    padding: 14px 18px;
    font-size: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.28);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #0f1116;
}

.feature-title { font-size: 60px; color: #ffffff; }
.feature-sub--yellow { color: var(--orange); }
.feature-highlight { color: var(--orange); }
.feature-price { color: #66b3ff; font-size: 18px; }
.red-tap { margin-bottom: 20px;}
.call-action-btn { margin-top: 20px; }

.make-white { color: #ffffff; }

.feature-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.4px;
    color: #fff;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.4);
    text-transform: uppercase;
}

.feature-pill--red {
    background: #e62429;
    border-color: #e62429;
    color:#ffffff;
}

.feature-pill--outline {
    background: rgba(0,0,0,0.35);
    color:#ffffff
}

.feature-pill--outline-text { 
    color:#ffffff
}

.feature-btn {
    text-transform: uppercase;
    letter-spacing: 0.4px;
    width: fit-content;
}

.feature-btn--dark {
    background: linear-gradient(135deg, var(--purple), var(--purple-strong));
    color: #fff;
    border: none;
    pointer-events: auto;
}

.feature-btn--light {
    background: linear-gradient(135deg, var(--orange), var(--orange-strong));
    color: #fff;
    border: none;
    pointer-events: auto;
}

.feature-card--red::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.25) 100%);
}

.feature-card--blue::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.25) 100%);
}

.list-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.list-panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
    box-shadow: var(--shadow-soft);
}

.mini-product-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.mini-product {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.mini-thumb {
    background: var(--bg);
    border-radius: 10px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-thumb img {
    max-height: 60px;
}

.mini-name {
    margin: 0 0 4px;
    font-weight: 700;
}

.mini-meta {
    display: flex;
    gap: 8px;
    align-items: center;
}

.mini-link {
    font-weight: 700;
    color: #0f1116;
}

.testimonial-section {
    background: linear-gradient(135deg, #1a1c22, #0f1116);
    color: #fff;
    border-radius: 18px;
    padding: 22px;
    margin: 36px 0;
    box-shadow: var(--shadow);
}

.testimonial-section .section-heading {
    color: #fff;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.review-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 12px;
}

.review-stars {
    display: inline-flex;
    gap: 3px;
}

.review-stars svg {
    width: 14px;
    height: 14px;
}

.review-quote {
    margin: 8px 0;
    color: #f4f6fb;
}

.brand-strip {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.brand-badge {
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px dashed var(--border);
    background: var(--bg);
    font-weight: 700;
    color: var(--muted);
}

.contact-band {
    margin: 36px 0 20px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    color: #fff;
    padding: 18px 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    box-shadow: var(--shadow-soft);
}

.contact-label {
    color: #fff;
    opacity: 0.9;
}

.contact-email {
    color: #fff;
    margin: 0;
}

.footer {
    background: #0f1116;
    color: #dfe3ec;
    padding: 36px 20px 28px;
}

.footer__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}

.footer__brand p {
    max-width: 320px;
}

.footer__col h5 {
    margin: 0 0 10px;
    color: #fff;
}

.footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.footer__col a {
    color: #dfe3ec;
}

.footer__cta {
    display: grid;
    gap: 4px;
    margin-top: 10px;
}

.footer__headline {
    margin: 0;
    font-weight: 700;
}

.footer__phone,
.footer__mail {
    font-weight: 700;
    color: var(--orange);
}

.subscribe-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin-top: 8px;
}

.subscribe-form input {
    border-radius: 10px;
    border: 1px solid #1f2330;
    padding: 12px;
    background: #141720;
    color: #fff;
}

.footer__payments {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.footer__bottom {
    max-width: 1280px;
    margin: 16px auto 0;
    border-top: 1px solid #1f2330;
    padding-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer__links {
    display: flex;
    gap: 12px;
}

.brand--stacked {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    align-items: center;
}

.brand__wordmark {
    display: grid;
    gap: 2px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.brand__logo--footer {
    height: 76px;
}

.card,
.panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    box-shadow: var(--shadow-soft);
}

.muted {
    color: var(--muted);
    margin: 0;
}

label {
    font-weight: 600;
    color: var(--text);
}

input,
select,
textarea {
    width: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
    color: var(--text);
    outline: none;
}

textarea {
    min-height: 120px;
}

.form-group {
    display: grid;
    gap: 6px;
    margin-bottom: 12px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    border-radius: 14px;
    overflow: hidden;
}

th,
td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid var(--border);
}

th {
    background: var(--bg);
    color: var(--text);
    font-weight: 700;
}

.quantity {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cart-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
}

.cart-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.status-pill {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    background: var(--bg);
    border: 1px solid var(--border);
}

.list-inline {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.list-inline li {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 6px 10px;
    border-radius: 10px;
    color: var(--muted);
}

/* New Colorful Catalog Styles */
.catalog-header-banner {
    background: linear-gradient(135deg, var(--purple), var(--orange));
    border-radius: 24px;
    padding: 48px 40px;
    margin-bottom: 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.catalog-header-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.catalog-header-content {
    position: relative;
    z-index: 1;
}

.catalog-header-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.catalog-header-content h1 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 48px;
    margin: 0 0 16px;
    color: #fff;
}

.catalog-header-content p {
    font-size: 18px;
    margin: 0 0 32px;
    opacity: 0.95;
    color: #fff;
}

.catalog-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.catalog-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.catalog-stat-item strong {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.catalog-stat-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Colorful Category Filters */
.catalog-filters-section {
    margin-bottom: 32px;
    padding: 24px;
    background: var(--card);
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.catalog-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.catalog-filters-header h2 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 28px;
    margin: 0;
    color: var(--text);
}

.catalog-sort-form {
    display: flex;
    align-items: center;
}

.catalog-sort-select {
    padding: 10px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    background: var(--card);
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.catalog-sort-select:hover {
    border-color: var(--purple);
}

.catalog-sort-select:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.catalog-filters-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.catalog-filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 12px;
    background: var(--bg);
    border: 2px solid var(--border);
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.catalog-filter-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    transition: left 0.3s ease;
    z-index: 0;
}

.catalog-filter-pill span {
    position: relative;
    z-index: 1;
}

.catalog-filter-pill:hover {
    border-color: var(--purple);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.catalog-filter-pill:hover::before {
    left: 0;
}

.catalog-filter-pill:hover span {
    color: #fff;
}

.catalog-filter-pill--active {
    background: linear-gradient(135deg, var(--purple), var(--orange));
    border-color: transparent;
    color: #fff;
}

.catalog-filter-pill--active::before {
    left: 0;
}

/* Colorful Product Cards */
.catalog-products-section {
    margin-bottom: 48px;
}

.catalog-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(264px, 1fr));
    gap: 20px;
}

@media (min-width: 1200px) {
    .catalog-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1600px) {
    .catalog-products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.catalog-product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.catalog-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.catalog-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--purple);
}

.catalog-product-card:hover::before {
    opacity: 1;
}

.catalog-product-image {
    width: 100%;
    height: 248px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    position: relative;
}

.catalog-product-image img {
    width: auto;
    height: auto;
    max-width: 180px;
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.catalog-product-card:hover .catalog-product-image img {
    transform: scale(1.02);
}

.catalog-product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.catalog-product-category {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(249, 115, 22, 0.15));
    color: var(--purple);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.catalog-product-content h3 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 20px;
    margin: 0;
    color: var(--text);
}

.catalog-product-benefit {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.catalog-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.catalog-product-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--purple);
}

.catalog-product-actions {
    display: flex;
    gap: 10px;
}

.btn-catalog-view {
    padding: 10px 20px;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-catalog-view:hover {
    border-color: var(--purple);
    background: rgba(139, 92, 246, 0.05);
    color: var(--purple);
}

.btn-catalog-add {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--purple), var(--purple-strong));
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-catalog-add:hover {
    background: linear-gradient(135deg, var(--purple-strong), var(--purple));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.catalog-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 64px 20px;
    color: var(--muted);
    font-size: 18px;
}

/* Legacy catalog styles - keeping for compatibility */
.category-pills,
.catalog-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.catalog-pills--right {
    justify-content: flex-end;
}

.product-card--tall {
    height: 100%;
}

.product-card--compact {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 14px;
    align-items: center;
}

.product-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    align-items: start;
    margin-bottom: 16px;
}

.product-media {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
    box-shadow: var(--shadow-soft);
}

.product-media__frame {
    border: 1px dashed var(--border);
    border-radius: 12px;
    padding: 16px;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    display: grid;
    gap: 10px;
    box-shadow: var(--shadow-soft);
}

.product-price-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px;
    background: var(--bg);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.info-tile {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

.benefit-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 12px;
    background: var(--bg);
}

/* Improved Product Detail Page Styles */
.product-not-found {
    padding: 80px 20px;
    text-align: center;
}

.product-not-found-content {
    max-width: 500px;
    margin: 0 auto;
}

.product-not-found-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.product-not-found-content h1 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px;
    color: var(--text);
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
}

.product-detail-hero {
    margin-bottom: 48px;
}

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

/* Product Image Section */
.product-detail-image-section {
    position: sticky;
    top: 100px;
}

.product-image-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.product-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
}

.product-badge-new {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.product-image-wrapper {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(249, 115, 22, 0.05));
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    margin-bottom: 24px;
}

.product-main-image {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.product-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-category-badge-new,
.product-stock-badge,
.product-featured-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    border: 2px solid var(--border);
}

.product-category-badge-new {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    color: var(--purple);
    border-color: rgba(139, 92, 246, 0.3);
}

.product-stock-badge {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.3);
}

.product-featured-badge {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05));
    color: var(--orange);
    border-color: rgba(249, 115, 22, 0.3);
}

/* Product Info Section */
.product-detail-info-section {
    display: grid;
    gap: 32px;
}

.product-header-info {
    display: grid;
    gap: 16px;
}

.product-detail-title {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin: 0;
    color: var(--text);
    line-height: 1.2;
}

.product-detail-subtitle {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.product-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-tag {
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(249, 115, 22, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--purple);
}

/* Purchase Card */
.product-purchase-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.product-purchase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--purple));
}

.product-price-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border);
}

.product-price-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-price-large {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.product-add-to-cart-form {
    display: grid;
    gap: 20px;
}

.product-quantity-group {
    display: grid;
    gap: 8px;
}

.product-quantity-group label {
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-quantity-input {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    transition: all 0.2s ease;
}

.product-quantity-input:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.btn-product-add {
    width: 100%;
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.btn-product-add:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-product-add svg {
    transition: transform 0.2s ease;
}

.btn-product-add:hover svg {
    transform: scale(1.1);
}

/* Product Features Grid */
.product-features-grid {
    display: grid;
    gap: 16px;
}

.product-feature-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.product-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: var(--purple);
}

.product-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(249, 115, 22, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    flex-shrink: 0;
}

.product-feature-content {
    display: grid;
    gap: 4px;
}

.product-feature-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-feature-content strong {
    font-size: 15px;
    color: var(--text);
    line-height: 1.5;
}

/* Product Details Section */
.product-details-section {
    margin-bottom: 48px;
}

.product-details-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.product-details-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
}

.product-details-header {
    margin-bottom: 32px;
}

.product-details-header h2 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 16px;
    color: var(--text);
}

.product-details-description {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
}

.product-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.product-benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(249, 115, 22, 0.05));
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.product-benefit-item:hover {
    transform: translateY(-4px);
    border-color: var(--purple);
    box-shadow: var(--shadow-soft);
}

.product-benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.product-benefit-item span {
    font-size: 16px;
    color: var(--text);
    font-weight: 600;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .product-detail-image-section {
        position: static;
    }
    
    .product-detail-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .product-image-wrapper {
        min-height: 300px;
        padding: 24px;
    }
    
    .product-purchase-card,
    .product-details-card {
        padding: 24px;
    }
    
    .product-price-large {
        font-size: 36px;
    }
    
    .product-benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-strong));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
}

.benefit-copy {
    font-weight: 700;
}

.layout-two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

/* New Colorful Contact Page Styles */
.contact-header-banner {
    background: linear-gradient(135deg, var(--purple), var(--orange));
    border-radius: 24px;
    padding: 64px 48px;
    margin-bottom: 48px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-header-banner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.contact-header-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-header-content h1 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 56px;
    margin: 0 0 24px;
    color: #fff;
    line-height: 1.1;
}

.contact-header-content p {
    font-size: 20px;
    margin: 0;
    opacity: 0.95;
    line-height: 1.7;
    color: #fff;
}

.contact-form-section {
    margin-bottom: 48px;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-soft);
}

.contact-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 32px;
    font-weight: 600;
}

.contact-message--error {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

.contact-message--success {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    color: #16a34a;
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-group label {
    font-weight: 700;
    color: var(--text);
    font-size: 14px;
}

.contact-form-group input,
.contact-form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.2s ease;
    background: var(--card);
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Contact Info Cards Section */
.contact-info-section {
    margin-bottom: 64px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.contact-info-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--purple);
}

.contact-info-card:hover::before {
    opacity: 1;
}

.contact-info-card--purple {
    border-color: rgba(139, 92, 246, 0.3);
}

.contact-info-card--purple:hover {
    border-color: var(--purple);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(139, 92, 246, 0.02));
}

.contact-info-card--orange {
    border-color: rgba(249, 115, 22, 0.3);
}

.contact-info-card--orange:hover {
    border-color: var(--orange);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(249, 115, 22, 0.02));
}

.contact-info-card--gradient {
    border-color: rgba(139, 92, 246, 0.3);
}

.contact-info-card--gradient:hover {
    border-color: var(--purple);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(249, 115, 22, 0.05));
}

.contact-info-icon-wrapper {
    margin-bottom: 20px;
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.contact-info-card--purple .contact-info-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.08));
    color: var(--purple);
}

.contact-info-card--orange .contact-info-icon {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.08));
    color: var(--orange);
}

.contact-info-card--gradient .contact-info-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(249, 115, 22, 0.15));
    color: var(--purple);
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-card h3 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 24px;
    margin: 0 0 12px;
    color: var(--text);
    font-weight: 800;
}

.contact-info-detail {
    font-size: 18px;
    font-weight: 700;
    color: var(--purple);
    margin: 0 0 8px;
}

.contact-info-card--orange .contact-info-detail {
    color: var(--orange);
}

.contact-info-description {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Improved Contact Form Layout */
.contact-form-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form-left {
    width: 100%;
}

.contact-form-header {
    margin-bottom: 32px;
}

.contact-form-header h2 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 12px;
    color: var(--text);
}

.contact-form-header p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.contact-form-right {
    position: sticky;
    top: 100px;
}

.contact-help-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(249, 115, 22, 0.08));
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
}

.contact-help-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
}

.contact-help-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 24px;
}

.contact-help-card h3 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 16px;
    color: var(--text);
}

.contact-help-card > p {
    font-size: 16px;
    color: var(--muted);
    margin: 0 0 24px;
    line-height: 1.7;
}

.contact-help-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    gap: 12px;
}

.contact-help-list li {
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
}

.contact-help-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--purple);
    font-weight: 800;
    font-size: 18px;
}

.contact-help-footer {
    padding-top: 24px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.contact-help-footer p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    line-height: 1.7;
}

.contact-help-footer strong {
    color: var(--purple);
    font-weight: 700;
}

.btn-contact-submit {
    width: 100%;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-contact-submit svg {
    transition: transform 0.2s ease;
}

.btn-contact-submit:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-form-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-form-right {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-form-header h2 {
        font-size: 28px;
    }
    
    .contact-help-card {
        padding: 32px 24px;
    }
}

/* Legacy styles - keeping for compatibility */
.contact-panel {
    max-width: 900px;
    margin: 0 auto;
}

.contact-inner {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.band {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin: 18px 0;
    padding: 12px;
    border-radius: 12px;
    background: var(--card);
    border: 1px dashed var(--border);
    text-align: center;
    font-weight: 700;
}

/* New Colorful About Page Styles */
.about-header-banner {
    background: linear-gradient(135deg, var(--purple), var(--orange));
    border-radius: 24px;
    padding: 64px 48px;
    margin-bottom: 48px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.about-header-banner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.about-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.about-header-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-header-content h1 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 56px;
    margin: 0 0 24px;
    color: #fff;
    line-height: 1.1;
}

.about-header-content p {
    font-size: 20px;
    margin: 0;
    opacity: 0.95;
    line-height: 1.7;
    color: #fff;
}

.about-header-content strong {
    font-weight: 700;
    opacity: 1;
}

/* Colorful About Feature Cards */
.about-cards-section {
    margin-bottom: 64px;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.about-feature-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--purple);
}

.about-feature-card:hover::before {
    opacity: 1;
}

.about-feature-card--purple {
    border-color: rgba(139, 92, 246, 0.3);
}

.about-feature-card--purple:hover {
    border-color: var(--purple);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(139, 92, 246, 0.02));
}

.about-feature-card--orange {
    border-color: rgba(249, 115, 22, 0.3);
}

.about-feature-card--orange:hover {
    border-color: var(--orange);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(249, 115, 22, 0.02));
}

.about-feature-card--gradient {
    border-color: rgba(139, 92, 246, 0.3);
}

.about-feature-card--gradient:hover {
    border-color: var(--purple);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(249, 115, 22, 0.05));
}

.about-feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.about-feature-card--purple .about-feature-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.08));
    color: var(--purple);
}

.about-feature-card--orange .about-feature-icon {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.08));
    color: var(--orange);
}

.about-feature-card--gradient .about-feature-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(249, 115, 22, 0.15));
    color: var(--purple);
}

.about-feature-card:hover .about-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-feature-card h3 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 28px;
    margin: 0 0 16px;
    color: var(--text);
}

.about-feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 16px;
}

.about-feature-card strong {
    color: var(--purple);
    font-weight: 700;
}

/* Mission Section */
.about-mission-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(249, 115, 22, 0.08));
    border-radius: 24px;
    padding: 64px 48px;
    margin-bottom: 48px;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.about-mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-mission-content h2 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 42px;
    margin: 0 0 24px;
    color: var(--text);
}

.about-mission-content > p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
    margin: 0 0 48px;
}

.about-mission-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-top: 48px;
}

.about-mission-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-mission-stat strong {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.about-mission-stat span {
    font-size: 16px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* New Colorful Cart Page Styles */
.cart-header-banner {
    background: linear-gradient(135deg, var(--purple), var(--orange));
    border-radius: 24px;
    padding: 48px 40px;
    margin-bottom: 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cart-header-banner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cart-header-content {
    position: relative;
    z-index: 1;
}

.cart-header-content h1 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 48px;
    margin: 0 0 12px;
    color: #fff;
}

.cart-header-content p {
    font-size: 18px;
    margin: 0;
    opacity: 0.95;
    color: #fff;
}

/* Empty Cart */
.cart-empty-section {
    margin: 64px 0;
    text-align: center;
}

.cart-empty-content {
    max-width: 500px;
    margin: 0 auto;
    padding: 64px 32px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.cart-empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(249, 115, 22, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
}

.cart-empty-content h2 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 32px;
    margin: 0 0 16px;
}

.cart-empty-content p {
    font-size: 16px;
    margin: 0 0 32px;
    color: var(--muted);
}

/* Cart Items */
.cart-items-section {
    margin-bottom: 48px;
}

.cart-form {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    align-items: start;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    display: grid;
    grid-template-columns: 120px 1fr auto auto auto auto;
    gap: 24px;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cart-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--purple), var(--orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-item-card:hover {
    border-color: var(--purple);
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.cart-item-card:hover::before {
    opacity: 1;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(249, 115, 22, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.cart-item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.cart-item-details h3 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 20px;
    margin: 0;
    color: var(--text);
}

.cart-item-category {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(249, 115, 22, 0.1));
    color: var(--purple);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.cart-item-price-mobile {
    display: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--purple);
}

.cart-item-price {
    text-align: center;
    min-width: 100px;
}

.cart-price-unit {
    font-size: 20px;
    font-weight: 800;
    color: var(--purple);
}

.cart-price-label {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

.cart-item-quantity {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    min-width: 100px;
}

.cart-item-quantity label {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
}

.cart-qty-input {
    width: 80px;
    padding: 10px;
    border: 2px solid var(--border);
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.2s ease;
}

.cart-qty-input:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.cart-item-total {
    text-align: center;
    min-width: 120px;
}

.cart-total-amount {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-total-label {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
}

.btn-cart-remove {
    width: 44px;
    height: 44px;
    border: 2px solid var(--border);
    background: var(--card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--muted);
    transition: all 0.2s ease;
}

.btn-cart-remove:hover {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
    color: #dc2626;
    transform: scale(1.1);
}

/* Cart Summary */
.cart-summary-section {
    position: sticky;
    top: 100px;
}

.cart-summary-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.cart-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
}

.cart-summary-card h3 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 24px;
    margin: 0 0 24px;
    color: var(--text);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    font-size: 16px;
}

.cart-summary-row span {
    color: var(--muted);
}

.cart-summary-row strong {
    font-size: 18px;
    color: var(--text);
    font-weight: 700;
}

.cart-summary-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 24px;
}

.cart-summary-total span {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.cart-grand-total {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-cart-checkout {
    width: 100%;
    margin-bottom: 16px;
}

.btn-cart-continue {
    display: block;
    text-align: center;
    color: var(--purple);
    font-weight: 700;
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.btn-cart-continue:hover {
    background: rgba(139, 92, 246, 0.05);
    color: var(--orange);
}

@media (max-width: 1024px) {
    .cart-form {
        grid-template-columns: 1fr;
    }
    
    .cart-summary-section {
        position: static;
    }
    
    .cart-item-card {
        grid-template-columns: 100px 1fr;
        gap: 16px;
    }
    
    .cart-item-price,
    .cart-item-quantity,
    .cart-item-total,
    .cart-item-actions {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .cart-item-price-mobile {
        display: block;
    }
    
    .cart-price-unit,
    .cart-price-label {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}

/* New Colorful Cart Page Styles */
.cart-header-banner {
    background: linear-gradient(135deg, var(--purple), var(--orange));
    border-radius: 24px;
    padding: 48px 40px;
    margin-bottom: 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cart-header-banner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cart-header-content {
    position: relative;
    z-index: 1;
}

.cart-header-content h1 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 48px;
    margin: 0 0 12px;
    color: #fff;
}

.cart-header-content p {
    font-size: 18px;
    margin: 0;
    opacity: 0.95;
    color: #fff;
}

/* Empty Cart */
.cart-empty-section {
    margin: 64px 0;
    text-align: center;
}

.cart-empty-content {
    max-width: 500px;
    margin: 0 auto;
    padding: 64px 32px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.cart-empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(249, 115, 22, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
}

.cart-empty-content h2 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 32px;
    margin: 0 0 16px;
}

.cart-empty-content p {
    font-size: 16px;
    margin: 0 0 32px;
    color: var(--muted);
}

/* Cart Items */
.cart-items-section {
    margin-bottom: 48px;
}

.cart-form {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    align-items: start;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    display: grid;
    grid-template-columns: 120px 1fr auto auto auto auto;
    gap: 24px;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cart-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--purple), var(--orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-item-card:hover {
    border-color: var(--purple);
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.cart-item-card:hover::before {
    opacity: 1;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(249, 115, 22, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.cart-item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.cart-item-details h3 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 20px;
    margin: 0;
    color: var(--text);
}

.cart-item-category {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(249, 115, 22, 0.1));
    color: var(--purple);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.cart-item-price-mobile {
    display: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--purple);
}

.cart-item-price {
    text-align: center;
    min-width: 100px;
}

.cart-price-unit {
    font-size: 20px;
    font-weight: 800;
    color: var(--purple);
}

.cart-price-label {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

.cart-item-quantity {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    min-width: 100px;
}

.cart-item-quantity label {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
}

.cart-qty-input {
    width: 80px;
    padding: 10px;
    border: 2px solid var(--border);
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.2s ease;
}

.cart-qty-input:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.cart-item-total {
    text-align: center;
    min-width: 120px;
}

.cart-total-amount {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-total-label {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
}

.btn-cart-remove {
    width: 44px;
    height: 44px;
    border: 2px solid var(--border);
    background: var(--card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--muted);
    transition: all 0.2s ease;
}

.btn-cart-remove:hover {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
    color: #dc2626;
    transform: scale(1.1);
}

/* Cart Summary */
.cart-summary-section {
    position: sticky;
    top: 100px;
}

.cart-summary-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.cart-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
}

.cart-summary-card h3 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 24px;
    margin: 0 0 24px;
    color: var(--text);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    font-size: 16px;
}

.cart-summary-row span {
    color: var(--muted);
}

.cart-summary-row strong {
    font-size: 18px;
    color: var(--text);
    font-weight: 700;
}

.cart-summary-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 24px;
}

.cart-summary-total span {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.cart-grand-total {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-cart-checkout {
    width: 100%;
    margin-bottom: 16px;
}

.btn-cart-continue {
    display: block;
    text-align: center;
    color: var(--purple);
    font-weight: 700;
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.btn-cart-continue:hover {
    background: rgba(139, 92, 246, 0.05);
    color: var(--orange);
}

@media (max-width: 1024px) {
    .cart-form {
        grid-template-columns: 1fr;
    }
    
    .cart-summary-section {
        position: static;
    }
    
    .cart-item-card {
        grid-template-columns: 100px 1fr;
        gap: 16px;
    }
    
    .cart-item-price,
    .cart-item-quantity,
    .cart-item-total,
    .cart-item-actions {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .cart-item-price-mobile {
        display: block;
    }
    
    .cart-price-unit,
    .cart-price-label {
        display: none;
    }
}

.quality-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.quality-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    box-shadow: var(--shadow-soft);
}

/* New Homepage Layout Styles */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    margin: 20px 0 36px;
    padding: 34px 28px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(249, 115, 22, 0.06));
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.hero-split__content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 7px 14px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.hero-title {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: clamp(32px, 4.4vw, 46px);
    line-height: 1.05;
    margin: 0;
    color: var(--text);
}

.hero-description {
    font-size: 16px;
    line-height: 1.65;
    color: var(--muted);
    margin: 0;
    max-width: 58ch;
}

.hero-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 13px 24px;
    font-size: 15px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 8px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-item strong {
    font-size: 28px;
    font-weight: 800;
    color: var(--purple);
    line-height: 1;
}

.stat-item span {
    font-size: 14px;
    color: var(--muted);
    font-weight: 600;
}

.hero-split__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    width: 100%;
    height: 420px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(249, 115, 22, 0.3)),
        url('/public/assets/img/bg.png') center/cover;
    background-blend-mode: overlay;
}

.hero-bg-pattern {
    display: none;
}

/* Health Tips Carousel */
.health-tips-carousel {
    margin: 48px 0;
}

.health-tips-header {
    margin-bottom: 24px;
}

.health-tips-header h2 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 32px;
    margin: 0 0 8px;
}

.tips-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 8px 0 24px;
}

.tip-card-small {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.tip-card-small:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.tip-icon-small {
    font-size: 32px;
    margin-bottom: 12px;
}

.tip-card-small h4 {
    font-size: 18px;
    margin: 0 0 8px;
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    line-height: 1.3;
}

.tip-card-small p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

/* Categories List - Horizontal */
.categories-list-section {
    margin: 36px 0;
}

.categories-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 16px;
}

.categories-list-header h2 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 28px;
    margin: 0;
}

.view-all-link {
    color: var(--purple);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.view-all-link:hover {
    color: var(--orange);
}

.categories-list-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    padding: 4px 0 12px;
}

.category-card-horizontal {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 13px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.category-card-horizontal:hover {
    border-color: var(--purple);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.category-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-card-horizontal h3 {
    margin: 0;
    font-size: 17px;
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.3;
}

.category-card-horizontal p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
}

.category-count {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(249, 115, 22, 0.1));
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--purple);
    width: fit-content;
    margin-top: 2px;
}

/* Featured Products Large Cards */
.featured-products-section {
    margin: 48px 0;
}

.section-header-main {
    margin-bottom: 24px;
}

.section-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 8px;
}

.section-header-main h2 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 34px;
    margin: 0 0 8px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--muted);
    margin: 0;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .featured-products-grid {
        grid-template-columns: 1fr;
    }
}

.featured-product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.featured-product-image {
    width: 100%;
    height: 192px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.featured-product-image img {
    width: auto;
    height: auto;
    max-width: 160px;
    max-height: 160px;
    object-fit: contain;
}

.featured-product-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.product-category-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(249, 115, 22, 0.1));
    color: var(--purple);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    width: fit-content;
}

.featured-product-content h3 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 17px;
    margin: 0;
}

.product-benefit {
    color: var(--muted);
    margin: 0;
    line-height: 1.55;
    font-size: 14px;
}

.featured-product-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.product-price-large {
    font-size: 20px;
    font-weight: 800;
    color: var(--purple);
}

.product-actions-inline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
}

.product-actions-inline .inline-form {
    display: block;
}

.product-actions-inline .btn {
    width: 100%;
    white-space: nowrap;
}

.btn-small {
    padding: 8px 16px;
    font-size: 13px;
}

.inline-form {
    display: inline;
}

/* Why Choose Section */
.why-choose-section {
    margin: 48px 0;
    padding: 36px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(249, 115, 22, 0.05));
    border-radius: 20px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    padding: 0 18px;
}

.why-choose-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 18px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-choose-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
}

.why-choose-card h3 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 18px;
    margin: 0 0 8px;
}

.why-choose-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Best Sellers Scroll */
.bestsellers-section {
    margin: 48px 0;
}

.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-header-inline h2 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 28px;
    margin: 0 0 4px;
}

.bestsellers-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 0 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.bestsellers-scroll::-webkit-scrollbar {
    height: 6px;
}

.bestsellers-scroll::-webkit-scrollbar-track {
    background: var(--bg);
    border-radius: 3px;
}

.bestsellers-scroll::-webkit-scrollbar-thumb {
    background: var(--purple);
    border-radius: 3px;
}

.bestseller-card {
    flex: 0 0 232px;
    width: 232px;
    min-width: 232px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

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

.bestseller-image {
    width: 100%;
    height: 164px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.bestseller-image img {
    width: auto;
    height: auto;
    max-width: 140px;
    max-height: 140px;
    object-fit: contain;
}

.bestseller-info {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.bestseller-category {
    font-size: 12px;
    font-weight: 700;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bestseller-info h4 {
    font-size: 16px;
    margin: 0;
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    min-height: 2.4em;
}

.bestseller-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--purple);
}

.bestseller-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: auto;
}

.btn-link {
    color: var(--purple);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.btn-link:hover {
    color: var(--orange);
}

/* Leadership Section */
.leader-section {
    margin: 56px 0;
}

.leader-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 390px) 1fr;
    gap: 28px;
    align-items: center;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(139, 92, 246, 0.14);
    background:
        radial-gradient(circle at top left, rgba(139, 92, 246, 0.16), transparent 36%),
        radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.14), transparent 34%),
        #ffffff;
    box-shadow: 0 22px 56px rgba(17, 19, 26, 0.1);
    overflow: hidden;
}

.leader-shell::after {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(17, 19, 26, 0.05);
    border-radius: 22px;
    pointer-events: none;
}

.leader-visual {
    position: relative;
    min-height: 460px;
}

.leader-portrait {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: 460px;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(16, 17, 25, 0.18)),
        linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(249, 115, 22, 0.16));
    border: 1px solid rgba(139, 92, 246, 0.14);
    box-shadow: 0 18px 40px rgba(17, 19, 26, 0.14);
}

.leader-portrait img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.leader-badge {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(16, 17, 25, 0.82);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.leader-badge span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: rgba(255, 255, 255, 0.72);
}

.leader-badge strong {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 28px;
    line-height: 1;
}

.leader-badge__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.28);
}

.leader-story {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.leader-story h2 {
    margin: 0;
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: clamp(30px, 4.1vw, 44px);
    line-height: 1;
    letter-spacing: -0.4px;
    max-width: 15ch;
}

.leader-intro {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    max-width: 42ch;
}

.leader-quote {
    margin: 2px 0 0;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(139, 92, 246, 0.14);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 54ch;
}

.leader-quote p {
    margin: 0;
}

.leader-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 620px;
}

.leader-stat {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.12);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(249, 115, 22, 0.08));
    box-shadow: var(--shadow-soft);
}

.leader-stat strong {
    display: block;
    margin-bottom: 3px;
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 24px;
    line-height: 1;
    color: var(--text);
}

.leader-stat span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
}

.leader-meta {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding-top: 4px;
}

.leader-meta__identity {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.leader-meta__identity strong {
    font-size: 20px;
    color: var(--text);
}

.leader-meta__identity span {
    font-size: 13px;
    font-weight: 700;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leader-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.section-cta-center {
    text-align: center;
    margin-top: 24px;
}

/* Contact CTA Section */
.contact-cta-section {
    margin: 48px 0;
    padding: 48px 28px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    border-radius: 20px;
    text-align: center;
    color: #fff;
}

.contact-cta-content h2 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 30px;
    margin: 0 0 12px;
    color: #fff;
}

.contact-cta-content p {
    font-size: 16px;
    margin: 0 0 24px;
    opacity: 0.95;
}

.contact-cta-section .btn-primary {
    background: #fff;
    color: var(--purple);
}

.contact-cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px 12px 12px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(10, 82, 38, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 44px rgba(10, 82, 38, 0.34);
}

.whatsapp-float__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-float__icon svg {
    width: 24px;
    height: 24px;
}

.whatsapp-float__content {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.whatsapp-float__content strong {
    font-size: 14px;
}

.whatsapp-float__content span {
    font-size: 12px;
    opacity: 0.92;
}

@media (max-width: 980px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 28px 24px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .leader-stats {
        grid-template-columns: 1fr;
    }
    
    .section-header-inline {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-inner {
        grid-template-columns: auto 1fr;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: #fff;
        flex-direction: column;
        padding: 14px 20px;
        box-shadow: var(--shadow);
        border-top: 1px solid var(--border);
        z-index: 10;
    }
    .nav-links.nav--open {
        display: flex;
    }
    .nav-link {
        padding: 12px 0;
    }
    .nav-search {
        grid-column: 1 / -1;
    }
    .hamburger {
        display: inline-flex;
    }
    .hero-product {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .contact-band {
        flex-direction: column;
        align-items: flex-start;
    }
    .cart-summary {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .page {
        margin: 12px auto;
        padding: 78px 16px 48px;
    }

    .hero-split {
        gap: 24px;
        margin: 12px 0 28px;
        padding: 24px 18px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-image-wrapper {
        height: 280px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .categories-list-horizontal {
        grid-template-columns: 1fr;
    }

    .section-header-main h2 {
        font-size: 30px;
    }

    .section-header-inline h2,
    .categories-list-header h2 {
        font-size: 26px;
    }

    .featured-product-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-product-image,
    .bestseller-image {
        height: 170px;
    }

    .why-choose-section,
    .contact-cta-section {
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .contact-cta-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-cta-content h2 {
        font-size: 26px;
    }

    .leader-shell {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 18px;
        border-radius: 22px;
    }

    .leader-visual,
    .leader-portrait,
    .leader-portrait img {
        min-height: 320px;
    }

    .leader-story h2 {
        max-width: none;
        font-size: 32px;
    }

    .leader-quote {
        padding: 18px;
        font-size: 16px;
    }

    .leader-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        padding: 10px;
    }

    .whatsapp-float__content {
        display: none;
    }
}

/* Improved Checkout Page Styles */
.checkout-empty-section {
    padding: 60px 20px;
    text-align: center;
}

.checkout-empty-content {
    max-width: 500px;
    margin: 0 auto;
}

.checkout-empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.checkout-empty-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px;
    color: var(--text);
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
}

.checkout-content-section {
    padding: 0 20px 60px;
}

.checkout-layout-new {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: start;
}

/* Checkout Form */
.checkout-form-section-new {
    width: 100%;
}

.checkout-form-card-new {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.checkout-form-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
}

.checkout-section-header-new {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border);
}

.checkout-section-icon-new {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.checkout-section-header-new h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    color: var(--text);
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
}

.checkout-form-new-style {
    display: grid;
    gap: 24px;
}

.checkout-form-group-new {
    display: grid;
    gap: 8px;
}

.checkout-form-group-new label {
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-form-group-new input,
.checkout-form-group-new textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 16px;
    background: var(--card);
    color: var(--text);
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.checkout-form-group-new input:focus,
.checkout-form-group-new textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.checkout-form-group-new input::placeholder,
.checkout-form-group-new textarea::placeholder {
    color: var(--muted);
}

.checkout-form-row-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.checkout-form-group-new textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Poppins', sans-serif;
}

.btn-checkout-submit-new {
    width: 100%;
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 800;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.btn-checkout-submit-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-checkout-submit-new svg {
    transition: transform 0.2s ease;
}

.btn-checkout-submit-new:hover svg {
    transform: translateX(4px);
}

/* Checkout Summary */
.checkout-summary-section-new {
    position: sticky;
    top: 100px;
}

.checkout-summary-card-new {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.checkout-summary-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--purple));
}

.checkout-items-list-new {
    display: grid;
    gap: 20px;
    margin-bottom: 24px;
}

.checkout-item-row-new {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.checkout-item-row-new:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.checkout-item-info-new {
    flex: 1;
}

.checkout-item-name-new {
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
    margin-bottom: 6px;
}

.checkout-item-meta-new {
    font-size: 14px;
    color: var(--muted);
}

.checkout-item-price-new {
    font-weight: 800;
    font-size: 18px;
    color: var(--purple);
    white-space: nowrap;
}

.checkout-summary-divider-new {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 24px 0;
}

.checkout-summary-total-row-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
}

.checkout-total-label-new {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-grand-total-new {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkout-payment-info-new {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.checkout-payment-badge-new {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(249, 115, 22, 0.1));
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    color: var(--text);
    font-weight: 700;
}

.checkout-payment-badge-new svg {
    color: var(--purple);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .checkout-layout-new {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .checkout-summary-section-new {
        position: static;
    }
    
    .checkout-form-row-new {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .checkout-form-card-new,
    .checkout-summary-card-new {
        padding: 24px;
        border-radius: 20px;
    }
    
    .checkout-section-header-new {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .checkout-grand-total-new {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .hero-banner {
        padding: 24px 20px;
    }
    .nav-inner {
        grid-template-columns: auto 1fr auto;
    }
    .nav-search {
        order: 3;
    }
    .nav-cart {
        grid-column: 3;
    }
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Thank You Page Styles */
.thankyou-header-banner {
    background: linear-gradient(135deg, var(--purple), var(--orange));
    border-radius: 24px;
    padding: 80px 48px;
    margin-bottom: 48px;
    color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.thankyou-header-banner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.thankyou-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.thankyou-success-icon {
    margin: 0 auto 32px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.3);
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thankyou-success-icon svg {
    color: #fff;
    stroke: #fff;
}

.thankyou-header-content h1 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 56px;
    margin: 0 0 24px;
    color: #fff;
    line-height: 1.1;
    font-weight: 800;
}

.thankyou-header-content p {
    font-size: 20px;
    margin: 0;
    opacity: 0.95;
    line-height: 1.7;
    color: #fff;
}

.thankyou-details-section {
    margin-bottom: 64px;
}

.thankyou-details-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.thankyou-order-number {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border);
}

.thankyou-order-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 12px;
}

.thankyou-order-value {
    display: block;
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    background: linear-gradient(135deg, var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thankyou-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.thankyou-info-item {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.thankyou-info-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: var(--purple);
}

.thankyou-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.thankyou-info-icon--purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.08));
    color: var(--purple);
}

.thankyou-info-icon--orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.08));
    color: var(--orange);
}

.thankyou-info-item:hover .thankyou-info-icon {
    transform: scale(1.1) rotate(5deg);
}

.thankyou-info-content h3 {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--text);
}

.thankyou-info-content p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.thankyou-note {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(249, 115, 22, 0.08));
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.thankyou-note-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.thankyou-note p {
    margin: 0;
    color: var(--text);
    line-height: 1.7;
    font-size: 15px;
}

.thankyou-note strong {
    color: var(--text);
    font-weight: 700;
}

.thankyou-error-state {
    text-align: center;
    padding: 48px 24px;
}

.thankyou-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .thankyou-header-banner {
        padding: 60px 32px;
    }
    
    .thankyou-header-content h1 {
        font-size: 40px;
    }
    
    .thankyou-header-content p {
        font-size: 18px;
    }
    
    .thankyou-details-card {
        padding: 32px 24px;
    }
    
    .thankyou-order-value {
        font-size: 28px;
    }
    
    .thankyou-info-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-success-icon {
        width: 80px;
        height: 80px;
    }
    
    .thankyou-success-icon svg {
        width: 60px;
        height: 60px;
    }
}
