@font-face {
    font-display: swap;
    font-family: Mori;
    font-style: normal;
    font-weight: 600;
    src: url(https://assets.codepen.io/16327/PPMori-SemiBold.woff) format("woff");
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #1b1b18;
    background: #fff;
    overflow-x: hidden;
}

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

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url("../images/hero-sectio-image.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* NAVBAR */
.hero-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-header.header-scrolled {
    background: rgba(10, 15, 8, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.header-scrolled .navbar {
    padding: 12px 20px;
}

.header-scrolled .contact-bar {
    height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
}

.navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 48px;
    z-index: 10;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 0px 11px;
    border-radius: 50px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.logo img {
    height: 64px;
    width: auto;
    display: block;
}

.nav-center {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 8px 10px 8px 20px;
}

.nav-indicator {
    position: absolute;
    top: 8px;
    left: 0;
    height: calc(100% - 16px);
    width: 0;
    background: #F26522;
    border-radius: 50px;
    pointer-events: none;
    opacity: 0;
    z-index: 0;
    box-shadow: 0 4px 14px rgba(242, 101, 34, 0.4);
}

.nav-center a {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 14px;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    transition: color .35s ease;
}

.nav-center a.is-active {
    color: #fff;
    font-weight: 700;
}

.nav-center .btn-lime {
    position: relative;
    z-index: 1;
}

.btn-lime {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F26522;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .5px;
    padding: 12px 10px 12px 22px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 5px 0 0 #9c3a10;
    position: relative;
    top: 0;
}

.btn-lime:hover {
    background: #d9541a;
    top: 2px;
    box-shadow: 0 3px 0 0 #9c3a10;
}

.btn-lime:active {
    top: 5px;
    box-shadow: 0 0 0 0 #9c3a10;
}

.btn-whatsapp {
    background: #25D366;
    text-decoration: none;
    box-shadow: none;
    top: 0 !important;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    box-shadow: none;
    top: 0 !important;
}

.btn-whatsapp:active {
    box-shadow: none;
    top: 0 !important;
}

.btn-whatsapp .wa-arrow {
    background: #fff;
    color: #25D366;
    width: 28px;
    height: 28px;
}

.btn-whatsapp .wa-arrow svg {
    width: 18px;
    height: 18px;
}

.btn-lime .arrow {
    width: 22px;
    height: 22px;
    background: #fff;
    color: #F26522;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-btn {
    position: relative;
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: transform .2s;
    flex-shrink: 0;
}

/* SEARCH OVERLAY */
/* SEARCH OVERLAY - NEW DESIGN */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay-container {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.search-overlay-header {
    padding: 24px;
    border-bottom: 1px solid #eee;
}

.search-overlay-input-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 20px;
    margin: 0;
}

.search-overlay-icon {
    width: 20px;
    height: 20px;
    color: #94a3b8;
}

.search-overlay-input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: #1e293b;
    background: transparent;
    padding: 0;
    font-family: inherit;
}

.search-overlay-input-wrap input::placeholder {
    color: #94a3b8;
}

.search-overlay-close {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.2s;
}

.search-overlay-close:hover {
    color: #1e293b;
    transform: none;
}

.search-overlay-close svg {
    width: 20px;
    height: 20px;
}

.search-overlay-content {
    padding: 24px;
    max-height: 80vh;
    overflow-y: auto;
}

.search-trending-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .search-trending-section {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.search-trending-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

/* Trending Searches */
.trending-search-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trending-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    transition: background 0.2s;
}

.trending-search-item svg {
    width: 18px;
    height: 18px;
    color: #64748b;
}

.tsi-text {
    display: flex;
    flex-direction: column;
}

.tsi-title {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.tsi-sub {
    font-size: 11px;
    color: #94a3b8;
}

.show-more-btn {
    background: none;
    border: none;
    color: #0d9488;
    font-size: 13px;
    font-weight: 600;
    margin-top: 15px;
    cursor: pointer;
    padding: 0;
}

/* Trending Products */
.tp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tp-header h3 {
    margin: 0;
}

.see-all-link {
    font-size: 13px;
    font-weight: 600;
    color: #0d9488;
}

.trending-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

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

.trending-product-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px;
    transition: transform 0.2s;
}

.trending-product-card:hover {
    transform: translateY(-2px);
}

.tpc-img {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tpc-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tpc-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tpc-name {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tpc-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.curr-price {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.old-price {
    font-size: 12px;
    color: #94a3b8;
    text-decoration: line-through;
}

/* Results Section */
.search-overlay-results {
    margin-top: 20px;
}

.search-overlay-results .search-result-item {
    background: #fff;
    border: 1px solid #f1f5f9;
    margin-bottom: 10px;
}

.search-overlay-results .search-result-name {
    color: #1e293b;
    font-size: 15px;
}

.search-overlay-results .search-result-price {
    font-size: 14px;
}

.search-overlay-results .search-result-img {
    border: 1px solid #f1f5f9;
}

.search-overlay-categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-overlay-cat-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-overlay-cat-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.search-overlay-cat-list a {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.search-overlay-cat-list a:hover {
    background: #F26522;
    transform: translateY(-2px);
}

.search-overlay-results {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 50vh;
    overflow-y: auto;
    padding-right: 10px;
}

.search-overlay-results::-webkit-scrollbar {
    width: 6px;
}

.search-overlay-results::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s;
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.search-result-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    background: #fff;
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.search-result-price {
    color: #F26522;
    font-weight: 700;
    font-size: 16px;
}

.search-result-original {
    color: rgba(255,255,255,0.4);
    text-decoration: line-through;
    font-size: 13px;
    margin-left: 8px;
}

.search-result-unit {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    margin-left: 4px;
}

@media (max-width: 768px) {
    .search-overlay {
        padding: 100px 24px;
    }
    .search-overlay-input-wrap input {
        font-size: 24px;
        padding: 0 15px;
    }
    .search-overlay-icon, .search-overlay-close svg {
        width: 24px;
        height: 24px;
    }
}
.cat-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: -8px;
    min-width: 200px;
    list-style: none;
    margin: 0;
    padding: 8px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(20, 50, 10, 0.18), 0 2px 6px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.96);
    transform-origin: top right;
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    z-index: 50;
}

.cat-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    right: 24px;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: rotate(45deg);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 3px;
}

.cat-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.cat-menu li {
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #1a3a0a;
    transition: background .18s, color .18s;
}

.cat-menu li:hover {
    background: #fff4ec;
    color: #F26522;
}

.cat-menu li.is-active {
    background: #F26522;
    color: #fff;
}

.icon-btn:hover {
    transform: scale(1.05);
}

.icon-btn svg {
    width: 20px;
    height: 20px;
    color: #1a3a0a;
}

.icon-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    background: #F26522;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-sizing: content-box;
}

.cart-btn {
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: transform .2s;
}

.cart-btn:hover {
    transform: scale(1.05);
}

.cart-btn svg {
    width: 20px;
    height: 20px;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #1a3a0a;
    font-weight: 600;
    font-size: 14px;
    padding: 11px 8px 11px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform .2s;
}

.login-btn:hover {
    transform: scale(1.03);
}

.login-btn .avatar {
    width: 26px;
    height: 26px;
    background: #F26522;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.login-btn .avatar svg {
    width: 14px;
    height: 14px;
    color: #fff;
}

/* CONTACT BAR */
.contact-bar {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 8px 48px 0;
    z-index: 5;
    transition: all 0.4s ease;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.92);
    color: #1a3a0a;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: transform .2s, background .2s;
}

.contact-link:hover {
    transform: translateY(-1px);
    background: #fff;
}

.contact-link strong {
    font-weight: 700;
    color: #1a3a0a;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #F26522;
    color: #fff;
    border-radius: 50%;
}

.contact-icon svg {
    width: 13px;
    height: 13px;
}

/* HERO FORM */
.hero-form-wrap {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 100px 24px;
}

.hero-brand-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 32px;
    text-transform: uppercase;
}

.hero-main-content {
    text-align: center;
    max-width: 1000px;
    margin-bottom: 56px;
    color: #fff;
}

@font-face {
    font-display: block;
    font-family: Mori;
    font-style: normal;
    font-weight: 600;
    src: url(https://assets.codepen.io/16327/PPMori-SemiBold.woff) format("woff");
}

.hero-title {
    font-family: 'Mori', 'Outfit', sans-serif;
    font-size: clamp(2rem, 6rem, 8vw);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    opacity: 0;
    will-change: transform;
    text-align: center;
}

.hero-title .word {
    display: inline-block;
    will-change: transform;
}

.hero-desc {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    color: #f1f5e8;
    max-width: 760px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-phone-form {
    width: 100%;
    max-width: 1100px;
}

.hero-phone-field-wrap {
    max-width: 640px;
    margin: 0 auto;
}

.hero-phone-wrap .phone-field {
    background: #fff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.phone-field {
    display: flex;
    align-items: center;
    border: 1.5px solid #299704;
    border-radius: 50px;
    background: #fff;
    height: 76px;
    padding-right: 10px;
    overflow: hidden;
}

.phone-prefix {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 32px;
    background: #f8faf5;
    border-right: 1.5px solid #299704;
    font-size: 22px;
    font-weight: 700;
    color: #1a3a0a;
}

.phone-field input {
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
    padding: 0 28px;
    font-size: 16px;
    font-weight: 500;
    color: #1a3a0a;
    background: transparent;
}

.phone-field .btn-lime {
    height: 56px;
    padding: 0 30px;
    font-size: 15px;
    white-space: nowrap;
}

.btn-connect-mobile {
    display: none;
}

/* Categories Section */
.categories-section {
    padding: 100px 48px;
    background: #fbfdf9;
    position: relative;
}

.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.categories-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a3a0a;
}

.view-all-link {
    background: #000;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 6px;
    transition: background 0.2s;
}

.view-all-link:hover {
    background: #222;
    color: #fff;
}

.categories-list-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -10px;
    padding: 10px;
}

.categories-list {
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.categories-list::-webkit-scrollbar {
    display: none;
}

.category-link {
    display: block;
    flex: 0 0 auto;
    text-decoration: none;
    color: inherit;
}

.category-item {
    text-align: center;
    padding: 0 15px;
    margin: 0;
}

.category-square {
    width: 140px;
    height: 140px;
    background: #FF5911;
    border: none;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    overflow: hidden;
}

.category-square:hover {
    transform: translateY(-8px) scale(1.05);
    background: #fdf2f0;
    box-shadow: 0 10px 25px rgba(255, 89, 17, 0.2);
}

.category-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a3a0a;
    display: block;
    max-width: 140px;
    margin: 0 auto;
    line-height: 1.3;
}

.categories-list-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -10px;
    padding: 10px;
}

.cat-scroll-arrow {
    position: absolute;
    top: 80px;
    /* Center with the 140px icons + padding (10 + 70) */
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 100;
    border: none;
    transition: all 0.2s;
}

.cat-scroll-arrow.left {
    left: 10px;
}

.cat-scroll-arrow.right {
    right: 10px;
}

.cat-scroll-arrow svg {
    width: 16px;
    height: 16px;
    color: #1b1b18;
}

/* Deals footer actions */
.deals-footer-actions {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.deals-footer-actions .deals-link {
    display: none;
}

.deals-footer-actions .deals-scroll-btn {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1b1b18;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.deals-footer-actions .deals-scroll-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    transform: translateY(-2px);
}

.deals-footer-actions .deals-scroll-btn:active {
    transform: translateY(0);
}

/* Best Deals Section */
.deals-section {
    padding: 40px 48px 80px;
    background: #fff;
    color: #1b1b18;
    font-family: 'Inter', sans-serif;
}

.deals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.deals-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.deals-title {
    font-size: 32px;
    font-weight: 700;
}

.deals-link {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: #000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    transition: all 0.2s;
    text-transform: capitalize;
    border-radius: 6px;
}

.deals-link:hover {
    background: #222;
    color: #fff;
}

.deals-scroll-btns {
    display: flex;
    gap: 8px;
}

.deals-scroll-btn {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #1b1b18;
}

.deals-scroll-btn:hover {
    background: #1b1b18;
    color: #fff;
    border-color: #1b1b18;
}

.mobile-side-btn {
    display: none;
}

.deals-progress-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding: 0 16px;
}

.deals-progress-dots .dot {
    flex: 1;
    max-width: 32px;
    height: 4px;
    background: #e5e7eb;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.deals-progress-dots .dot.is-active {
    background: #1b1b18;
    max-width: 44px;
}

.deals-grid-wrapper {
    position: relative;
    margin: 0 -48px;
    padding: 0 48px;
    overflow: hidden;
}

.deals-grid {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
}

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

.deal-card {
    flex: 0 0 280px;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.deal-card:hover {
    transform: translateY(-4px);
}

.deal-image-wrap {
    position: relative;
    background: #f6f7f9;
    border-radius: 4px;
    aspect-ratio: 1/1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 32px;
}

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

.wishlist-btn {
    display: none !important;
}

.wishlist-btn:hover {
    color: #f43f5e;
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #ff5e21;
    color: #fff;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 94, 33, 0.3);
}

.deal-info {
    padding: 0 4px;
    margin-bottom: 16px;
}

.deal-brand {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    color: #000;
}

.deal-title-new {
    font-size: 16px;
    font-weight: 400;
    color: #1b1b18;
    margin-bottom: 10px;
    line-height: 1.5;
}

.deal-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #000;
    display: flex;
    gap: 2px;
    font-size: 14px;
}

.rating-count {
    font-size: 14px;
    color: #1b1b18;
    font-weight: 400;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0;
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: auto;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.add-to-cart-btn:hover {
    transform: scale(1.02);
}

.cart-label {
    flex: 1.3;
    background: #FF5911;
    color: #fff;
    padding: 16px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-tag {
    flex: 1;
    background: #FF5911;
    color: #fff;
    padding: 16px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-order-footer {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    text-align: center;
}

.categories-footer-actions {
    display: none;
    justify-content: center;
    margin-top: 28px;
}

@media (max-width: 900px) {
    .categories-section {
        padding: 48px 16px;
    }

    .categories-header {
        margin-bottom: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .categories-header .view-all-link {
        display: none;
    }

    .categories-title {
        font-size: 30px;
        font-weight: 800;
        line-height: 1.15;
        position: relative;
        padding-bottom: 10px;
    }

    .categories-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 60px;
        height: 3px;
        background: #1a3a0a;
        border-radius: 2px;
    }

    .category-square {
        width: 150px;
        height: 150px;
        border-radius: 18px;
    }

    .deal-rating {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        flex-wrap: nowrap;
        white-space: nowrap;
        margin-top: 4px;
    }

    .stars {
        font-size: 10px;
        gap: 1px;
    }

    .rating-count {
        font-size: 10px;
    }

    .category-name {
        font-size: 15px;
        max-width: 150px;
        font-weight: 600;
        margin-top: 4px;
    }

    .category-item {
        padding: 0 10px;
    }

    .categories-list {
        gap: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .cat-scroll-arrow {
        display: none;
    }

    .categories-footer-actions {
        display: flex;
    }

    .categories-footer-actions .view-all-link {
        padding: 12px 28px;
        font-size: 13px;
        border-radius: 6px;
    }

    .deals-section {
        padding: 32px 16px 56px;
    }

    .deals-title {
        font-size: 18px;
    }

    .deals-header {
        margin-bottom: 20px;
        align-items: center;
        gap: 12px;
    }

    .deals-header-right .deals-scroll-btns {
        display: none;
    }

    .deals-header-right {
        gap: 0;
    }

    .deals-header-right .deals-link {
        display: none !important;
    }

    .deals-footer-actions {
        display: flex;
        justify-content: center;
        margin-top: 24px;
        padding-bottom: 8px;
    }

    .deals-footer-actions .deals-link {
        display: inline-flex !important;
        background: #000;
        color: #fff;
        padding: 12px 28px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 700;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .mobile-side-btn {
        display: none !important;
    }

    .deals-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        overflow-x: visible;
        padding-bottom: 0;
    }

    .deal-card {
        width: 100%;
        max-width: none;
        text-align: center;
    }

    .deals-progress-dots,
    .deals-scroll-btns {
        display: none !important;
    }

    .deals-grid-wrapper {
        margin: 0;
        padding: 0;
        overflow: visible;
    }

    .deal-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 8px;
    }

    .deal-image-wrap {
        padding: 12px;
        margin-bottom: 12px;
    }

    .deal-brand {
        font-size: 11px;
    }

    .deal-title-new {
        font-size: 13px;
        height: 3em;
        overflow: hidden;
    }

    .cart-label,
    .price-tag {
        padding: 8px 4px;
        font-size: 10px;
    }

    .price-container {
        padding: 0 6px !important;
    }
}

@media (max-width: 500px) {
    .deals-title {
        font-size: 20px;
    }

    .deal-card {
        width: 100%;
    }

    .deal-brand {
        font-size: 13px;
    }

    .deal-title-new {
        font-size: 14px;
    }
}

/* Promo Section */
.promo-section {
    padding: 40px 48px 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    background: #fff;
}

.promo-card {
    position: relative;
    border-radius: 16px;
    padding: 40px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    color: #fff;
}

.promo-card.pink {
    background-color: #299704;
}

.promo-card.blue {
    background-color: #14B8A6;
    color: #fff;
}

.promo-card.red {
    background-color: #D95E1E;
}

.promo-content {
    position: relative;
    z-index: 2;
}

.promo-tag {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: block;
    color: #fff;
}

.promo-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.promo-subtitle {
    font-size: 18px;
    font-weight: 600;
    opacity: 1;
}

.promo-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    width: fit-content;
    transition: all 0.3s;
}

.promo-btn:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-2px);
}

.promo-image {
    position: absolute;
    bottom: 5px;
    right: 5px;
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    z-index: 1;
}

@media (max-width: 1024px) {
    .promo-section {
        grid-template-columns: 1fr;
    }

    .promo-card {
        min-height: 350px;
    }
}

.community-section {
    padding: 40px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    background: #fff;
}

.comm-card {
    border-radius: 12px;
    padding: 40px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.comm-card.whatsapp {
    background-color: #1d2127;
}

.comm-card.app {
    background-color: #6fb650;
}

.comm-content {
    position: relative;
    z-index: 2;
    max-width: 60%;
}

.comm-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.comm-desc {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 32px;
    opacity: 0.9;
}

.comm-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    width: fit-content;
    transition: transform 0.2s;
}

.comm-btn:hover {
    transform: scale(1.05);
}

.comm-card.whatsapp .comm-btn {
    background-color: #6fb650;
    color: #fff;
}

.comm-card.app .comm-btn {
    background-color: #f26522;
    color: #fff;
}

.comm-image {
    position: absolute;
    bottom: -32px;
    right: 0;
    width: 45%;
    height: 90%;
    object-fit: contain;
    transform: translateY(10%);
}

@media (max-width: 1024px) {
    .community-section {
        grid-template-columns: 1fr;
        padding: 40px 16px;
        gap: 32px;
    }

    .comm-card {
        padding: 48px 24px 0;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .comm-content {
        max-width: 100%;
        margin-bottom: 32px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .comm-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .comm-desc {
        font-size: 15px;
        margin-bottom: 24px;
        max-width: 90%;
    }

    .comm-image {
        position: relative;
        width: 90%;
        max-width: 340px;
        height: auto;
        margin: 0 auto;
        transform: none;
        bottom: 0;
        right: auto;
    }
}

.video-section {
    padding: 80px 0;
    background: #f8f8f8;
    width: 100%;
}

.video-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    padding: 0 48px;
}

.video-container {
    flex: 1.2;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    background: #000;
    position: relative;
    padding-bottom: 35%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.personal-shopper-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
}

.personal-shopper-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    max-width: 600px;
}

.whatsapp-book-btn {
    display: inline-block;
    border: 1px solid #000;
    padding: 12px 30px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    color: #000;
    width: fit-content;
    margin-top: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.whatsapp-book-btn:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 1024px) {
    .video-section {
        padding: 40px 20px;
    }

    .video-flex {
        flex-direction: column;
        gap: 40px;
    }

    .video-container {
        padding-bottom: 56.25%;
    }

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

.features-section {
    padding: 80px 48px;
    background: #fff;
    border-top: 1px solid #eee;
    width: 100%;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    gap: 20px;
    flex-wrap: nowrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
}

.feature-icon-wrap {
    width: 80px;
    height: 80px;
    background: #f4fbf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.feature-icon-wrap img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.feature-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a3a0a;
    margin-bottom: 2px;
    line-height: 1.2;
}

.feature-info p {
    font-size: 14px;
    color: #666;
}

@media (max-width: 1024px) {
    .features-section {
        padding: 40px 20px;
        overflow-x: auto;
    }

    .features-grid {
        justify-content: flex-start;
        min-width: 1000px;
    }
}

.coupon-process {
    padding: 80px 48px;
    background: #FF8C58;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.coupon-image-wrap {
    flex: 0 0 auto;
    max-width: 500px;
}

.coupon-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.process-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    min-width: 320px;
    max-width: 700px;
    gap: 40px;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.step-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step:hover .step-icon-wrap {
    background: #fff;
    color: #FF8C58;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.step-icon-wrap svg {
    width: 32px;
    height: 32px;
}

.step-number {
    font-size: 14px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 900px) {
    .process-grid {
        flex-direction: column;
        gap: 60px;
    }

    .process-step:not(:last-child)::after {
        top: auto;
        bottom: -30px;
        right: auto;
        left: 50%;
        width: 2px;
        height: 30px;
        transform: translateX(-50%);
    }
}

/* ===== Site Footer ===== */
.site-footer {
    background: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.footer-social-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.3s ease;
    position: relative;
}

.footer-social-item+.footer-social-item {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.footer-social-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon svg {
    width: 100%;
    height: 100%;
    fill: #fff;
}

.footer-social-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.footer-social-item:hover .footer-social-arrow {
    transform: translateX(4px);
}

.footer-links-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 60px 0 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 14px 0 !important;
    position: relative;
}

.footer-col-grid>li {
    padding-right: 24px;
}

.footer-col-grid>li:nth-child(2n) {
    padding-left: 24px;
    padding-right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col {
    padding: 0 28px;
}

.footer-col+.footer-col {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col-title {
    font-size: 12px;
    font-weight: 500;
    color: #6b6b6b;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 24px;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col ul a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.25s ease;
}

.footer-col ul a:hover {
    color: #b0b0b0;
}

.footer-bottom-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 56px 0 60px;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 360px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.footer-brand-img {
    max-height: 56px;
    width: auto;
    display: block;
}

.footer-brand-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #8a8a8a;
    margin: 0;
}

.footer-subscribe {
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    min-width: 420px;
    max-width: 480px;
    width: 100%;
}

.footer-subscribe input {
    flex: 1;
    background: #fff;
    border: 0;
    padding: 14px 18px;
    font-size: 13px;
    letter-spacing: 1px;
    color: #000;
    outline: none;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.footer-subscribe button {
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 0 26px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.25s ease;
}

.footer-subscribe button:hover {
    background: rgba(255, 255, 255, 0.06);
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.footer-copyright-left {
    font-size: 13px;
    color: #8a8a8a;
    letter-spacing: 0.3px;
}

.footer-copyright-left strong {
    color: #fff;
    font-weight: 600;
}

.footer-copyright-right {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: #8a8a8a;
}

.footer-copyright-right a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-copyright-right a:hover {
    color: #fff;
}

.footer-copyright-right .sep {
    color: rgba(255, 255, 255, 0.18);
    margin: 0 4px;
}

.footer-payments-label {
    margin-right: 4px;
}

.footer-payments-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-pay-badge {
    background: #fff;
    border-radius: 4px;
    padding: 4px 8px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-pay-badge svg {
    display: block;
    height: 16px;
    width: auto;
}

@media (max-width: 900px) {
    .footer-copyright {
        justify-content: center;
        text-align: center;
    }

    .footer-social-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-social-item:nth-child(2) {
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-social-item:nth-child(3),
    .footer-social-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-social-item:nth-child(3) {
        border-left: 0;
    }

    .footer-links-row {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 0;
    }

    .footer-col {
        padding: 24px 20px;
    }

    .footer-col:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-left: 0;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 0;
        gap: 30px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-brand-logo {
        justify-content: center;
    }

    .footer-subscribe {
        min-width: 0;
        max-width: 100%;
        flex-direction: row;
    }

    .footer-copyright {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 30px 0;
        gap: 20px;
    }

    .footer-copyright-right {
        flex-direction: column;
        gap: 15px;
    }

    .footer-copyright-right .sep {
        display: none;
    }
}

@media (max-width: 560px) {
    .footer-inner {
        padding: 0 20px;
    }

    .footer-social-row {
        grid-template-columns: 1fr;
    }

    .footer-social-item+.footer-social-item {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-links-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col {
        padding: 0;
    }

    .footer-col+.footer-col {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 30px;
    }

    .footer-subscribe {
        flex-direction: column;
        border: none;
        gap: 10px;
    }

    .footer-subscribe input {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-subscribe button {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, 0.12);
        padding: 14px;
    }

    .footer-payments-list {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 22px !important;
    left: auto !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1000;
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 110px;
        /* Move up to avoid bottom nav overlap */
        right: 20px !important;
        left: auto !important;
    }
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border: none;
    text-decoration: none;
}

.float-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

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

.btn-whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.btn-back-to-top {
    background: #000;
    display: none;
    opacity: 0;
}

.btn-back-to-top svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    stroke-width: 3;
}

.mobile-search-bar {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.m-search-input-wrap {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 0 20px;
    height: 52px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.m-search-icon {
    width: 20px;
    height: 20px;
    color: #666;
    margin-right: 12px;
    flex-shrink: 0;
}

.m-search-input-wrap input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 15px;
    color: #1b1b18;
    font-weight: 500;
    width: 50px;
    /* Allow shrinking */
}

.m-search-divider {
    width: 1.5px;
    height: 24px;
    background: #dce3d8;
    margin: 0 12px;
    flex-shrink: 0;
}

.m-categories-select {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    flex-shrink: 0;
    padding-right: 4px;
}

.m-categories-select span {
    font-size: 14px;
    font-weight: 700;
    color: #0a2d02;
    white-space: nowrap;
}

.m-chevron-icon {
    width: 14px;
    height: 14px;
    color: #0a2d02;
    stroke-width: 3px;
}

.mobile-search-section {
    display: none;
    width: 100%;
    position: relative;
    z-index: 30;
    margin-top: -26px;
    /* Half height overlap */
    padding: 0 16px;
    transition: all 0.3s ease;
}

/* Show only on mobile/tablet */
@media (max-width: 900px) {
    .mobile-search-section {
        display: block;
        position: sticky;
        top: 71px;
        /* Sticky below scrolled navbar */
        z-index: 50;
    }

    .mobile-search-section.is-sticky {
        background: #2D322B;
        margin-top: 0;
        padding-top: 12px;
        padding-bottom: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid #f0f0f0;
    }
}

/* ===== Mobile Menu Toggle (Hamburger) ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    z-index: 1100;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1a3a0a;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

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

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

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

body.nav-open {
    overflow: hidden;
}

/* ===================================================================
   RESPONSIVE BREAKPOINTS
   =================================================================== */

/* Tablets and small laptops */
@media (max-width: 1200px) {
    .navbar {
        padding: 20px 24px;
    }

    .contact-bar {
        padding: 8px 24px 0;
    }

    .deals-section {
        padding: 40px 24px 60px;
    }

    .promo-section {
        padding: 40px 24px 60px;
    }

    .community-section {
        padding: 40px 24px;
    }

    .video-flex {
        padding: 0 24px;
        gap: 40px;
    }

    .features-section {
        padding: 60px 24px;
    }

    .coupon-process {
        padding: 60px 24px;
        gap: 40px;
    }

    .categories-section {
        padding: 80px 24px;
    }

    .deals-grid-wrapper {
        margin: 0 -24px;
        padding: 0 24px;
    }
}

/* Tablets */
@media (max-width: 992px) {

    /* Navbar - hide center nav, show hamburger */
    .mobile-menu-toggle {
        display: inline-flex;
    }

    .nav-center {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        background: #1a3a0a;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-radius: 0;
        padding: 80px 20px 24px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 1050;
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
    }

    .nav-center.is-mobile-open {
        transform: translateX(0);
    }

    .nav-indicator {
        display: none !important;
    }

    .nav-center a {
        width: 100%;
        font-size: 14px;
        padding: 14px 18px;
        border-radius: 10px;
        color: #fff;
    }

    .nav-center a:hover,
    .nav-center a.is-active {
        background: rgba(255, 255, 255, 0.08);
    }

    .nav-center .btn-lime {
        margin-top: 16px;
        justify-content: center;
        padding: 14px 18px;
    }

    /* Navbar layout: hamburger | logo (center) | icons */
    .navbar {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 12px;
    }

    .mobile-menu-toggle {
        order: 1;
        justify-self: start;
    }

    .logo {
        order: 2;
        justify-self: center;
        padding: 4px 14px;
    }

    .logo img {
        height: 40px;
    }

    .nav-right {
        order: 3;
        justify-self: end;
        gap: 8px;
    }

    /* Hide search on mobile, keep cart + profile only */
    .search-wrap {
        display: none !important;
    }

    .login-btn span {
        display: none;
    }

    .login-btn {
        padding: 0;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        justify-content: center;
    }

    .login-btn .avatar {
        width: 28px;
        height: 28px;
    }

    /* Hero */
    .hero {
        min-height: 80vh;
    }

    .hero-form-wrap {
        padding: 100px 20px 60px;
        min-height: 80vh;
    }

    .hero-brand-tag {
        font-size: 13px;
        padding: 8px 22px;
        margin-bottom: 24px;
    }

    .hero-main-content {
        margin-bottom: 36px;
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 4.5rem) !important;
    }

    .hero-desc {
        font-size: 16px;
    }

    /* Phone field */
    .phone-field {
        height: 64px;
    }

    .phone-prefix {
        padding: 0 18px;
        font-size: 18px;
    }

    .phone-field input {
        padding: 0 16px;
        font-size: 14px;
    }

    .phone-field .btn-lime {
        height: 48px;
        padding: 0 20px;
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        padding: 16px;
    }

    .contact-bar {
        padding: 6px 16px 0;
    }

    .contact-link {
        font-size: 12px;
        padding: 6px 12px;
        gap: 8px;
    }

    .contact-icon {
        width: 20px;
        height: 20px;
    }

    .contact-icon svg {
        width: 11px;
        height: 11px;
    }

    .search-wrap {
        display: none !important;
    }

    .icon-btn,
    .cart-btn {
        width: 42px;
        height: 42px;
    }

    /* Hero text alignment */
    .hero-main-content {
        text-align: center;
    }

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

    .hero-desc {
        margin: 0 auto;
        text-align: center;
    }

    /* Hero phone field: prefix + input inline, button below */
    .hero-phone-form {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .hero-phone-field-wrap {
        width: 100%;
        max-width: 480px;
    }

    .phone-field {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        height: 56px;
        padding: 0;
        border-radius: 50px;
        overflow: hidden;
    }

    .phone-prefix {
        border-right: 1.5px solid #299704;
        border-bottom: 0;
        padding: 0 18px;
        font-size: 18px;
        justify-content: center;
    }

    .phone-field input {
        flex: 1;
        padding: 0 14px;
        font-size: 13px;
        text-align: left;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-connect-desktop {
        display: none !important;
    }

    .btn-connect-mobile {
        display: inline-flex;
        height: 56px;
        padding: 0 28px 0 32px;
        border-radius: 50px;
        font-size: 14px;
    }

    /* Categories */
    .categories-section {
        padding: 48px 16px;
    }

    .categories-title {
        font-size: 26px;
    }

    .view-all-link {
        font-size: 12px;
        padding: 8px 14px;
    }

    /* Promo */
    .promo-section {
        padding: 32px 16px 48px;
        gap: 16px;
    }

    .promo-card {
        min-height: 320px;
        padding: 28px;
    }

    .promo-title {
        font-size: 24px;
    }

    .promo-tag {
        font-size: 12px;
    }

    .promo-subtitle {
        font-size: 14px;
    }

    .promo-image {
        max-width: 60%;
        max-height: 70%;
    }

    /* Community */
    .community-section {
        padding: 32px 16px;
        gap: 24px;
    }

    .comm-card {
        padding: 40px 20px 0;
        min-height: auto;
        text-align: center;
    }

    .comm-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .comm-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .comm-btn {
        padding: 10px 22px;
        font-size: 13px;
    }

    /* Video */
    .video-section {
        padding: 40px 0;
    }

    .video-flex {
        padding: 0 16px;
        gap: 28px;
    }

    .personal-shopper-title {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .personal-shopper-desc {
        font-size: 15px;
    }

    /* Features (hide horizontal scroll requirement, stack as grid) */
    .features-section {
        padding: 32px 16px;
        overflow-x: visible;
    }

    .features-grid {
        flex-wrap: wrap;
        min-width: 0;
        justify-content: flex-start;
        gap: 16px;
    }

    .feature-item {
        flex: 1 1 calc(50% - 8px);
        min-width: 0;
        white-space: normal;
    }

    .feature-icon-wrap {
        width: 56px;
        height: 56px;
    }

    .feature-icon-wrap img {
        width: 32px;
        height: 32px;
    }

    .feature-info h3 {
        font-size: 14px;
    }

    .feature-info p {
        font-size: 12px;
    }

    /* Coupon */
    .coupon-process {
        padding: 40px 16px;
        flex-direction: column;
        gap: 32px;
    }

    .coupon-image-wrap {
        max-width: 100%;
        width: 100%;
        margin-bottom: 8px;
    }

    .process-grid {
        flex-direction: row;
        width: 100%;
        gap: 10px;
        align-items: flex-start;
        justify-content: space-between;
    }

    .process-step {
        flex: 1;
        min-width: 0;
    }

    .process-step:not(:last-child)::after {
        top: 35px;
        right: -15px;
        bottom: auto;
        left: auto;
        width: 20px;
        height: 1.5px;
        background: rgba(255, 255, 255, 0.4);
        transform: none;
    }

    .step-icon-wrap {
        width: 64px;
        height: 64px;
        margin-bottom: 12px;
    }

    .step-icon-wrap svg {
        width: 24px;
        height: 24px;
    }

    .step-title {
        font-size: 13px;
        font-weight: 700;
        white-space: nowrap;
    }

    .step-number {
        font-size: 11px;
        opacity: 0.8;
        margin-bottom: 6px;
    }

    /* Floating buttons */
    .floating-buttons {
        display: flex;
        bottom: 70px;
        right: 16px !important;
        left: auto !important;
        gap: 10px;
    }

    .btn-back-to-top {
        display: none !important;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .btn-whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .navbar {
        padding: 12px;
    }

    .logo img {
        height: 80px;
    }

    .login-btn {
        padding: 8px;
    }

    .login-btn .avatar {
        width: 22px;
        height: 22px;
    }

    .contact-bar {
        padding: 4px 12px 0;
    }

    .contact-link strong {
        display: block;
    }

    .hero-form-wrap {
        padding: 100px 16px 50px;
        min-height: 80vh;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-brand-tag {
        font-size: 12px;
        padding: 7px 18px;
        margin-bottom: 18px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 8vw, 2.8rem) !important;
        margin-bottom: 16px;
    }

    .hero-desc {
        font-size: 14px;
        line-height: 1.5;
    }

    .categories-title {
        font-size: 22px;
    }

    .promo-card {
        padding: 22px;
        min-height: 280px;
    }

    .promo-title {
        font-size: 20px;
    }

    .comm-content {
        max-width: 100%;
    }

    .comm-title {
        font-size: 22px;
    }

    .personal-shopper-title {
        font-size: 22px;
    }

    .whatsapp-book-btn {
        padding: 10px 22px;
        font-size: 12px;
    }

    .feature-item {
        flex: 1 1 100%;
    }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
        /* Subtle shadow for floating effect */
        padding: 4px 24px;
        z-index: 9999;
    }

    .mobile-bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #737373;
        /* Grey text for inactive */
        font-size: 13px;
        font-weight: 500;
        gap: 6px;
        transition: color 0.3s ease;
    }

    .mobile-bottom-nav .nav-item .material-icons-outlined {
        font-size: 26px;
    }

    .mobile-bottom-nav .nav-item.active {
        color: #F26522;
        /* Orange for active */
    }

    .mobile-bottom-nav .nav-item.active .material-icons-outlined {
        font-variation-settings: 'FILL' 1;
    }

    /* Padding for body so content isn't hidden by nav */
    body {
        padding-bottom: 74px;
    }
}

/* Base styles for the new header rows */
.mobile-top-row {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle,
.mobile-top-spacer,
.mobile-bottom-row {
    display: none;
}

@media (max-width: 991px) {

    .hero-header,
    .hero-header.header-scrolled {
        background: #111e10 !important;
        padding: 0;
    }

    .navbar {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 6px 16px;
        gap: 0;
    }

    .mobile-top-row {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        transition: all 0.3s ease;
        max-height: 80px;
        opacity: 1;
        overflow: hidden;
    }

    .mobile-top-row.top-row-hidden {
        max-height: 0;
        opacity: 0;
        margin-top: 0;
        padding-top: 0;
        padding-bottom: 0;
        pointer-events: none;
    }

    .mobile-top-spacer {
        display: none;
    }

    .logo {
        background: transparent;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        display: inline-flex;
        margin: 0;
    }

    .logo img {
        height: 73px;
        max-height: 66px;
    }

    .mobile-bottom-row {
        display: flex;
        width: 100%;
        gap: 12px;
        align-items: stretch;
    }

    .mobile-menu-toggle {
        display: flex;
        background: #ffffff;
        border-radius: 50%;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        border: none;
        flex-shrink: 0;
        position: static;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
        background: #204113;
        display: block;
        transition: 0.3s;
    }

    .mobile-header-search {
        flex: 1;
        background: #ffffff;
        border-radius: 60px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .m-search-wrap-inner {
        display: flex;
        align-items: center;
        height: 45px;
        padding: 0 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .m-search-icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .m-search-wrap-inner input {
        flex: 1 1 0%;
        border: none;
        background: transparent;
        outline: none;
        padding: 0 12px;
        font-size: 14px;
        color: #333;
        min-width: 0;
        text-overflow: ellipsis;
    }

    .m-search-wrap-inner input::placeholder {
        color: #999;
    }

    .m-search-divider {
        width: 1px;
        height: 24px;
        background: #e5e7eb;
        margin: 0 12px;
        flex-shrink: 0;
    }

    .m-cats-select {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 13px;
        font-weight: 700;
        color: #1a3a0a;
        white-space: nowrap;
        cursor: pointer;
        flex-shrink: 0;
    }

    .m-cats-select svg {
        width: 16px;
        height: 16px;
    }

    /* Hide desktop nav items */
    .nav-center,
    .nav-right,
    .contact-bar {
        display: none !important;
    }
}

/* Shop Page Styles */
.shop-page-container {
    padding: 120px 30px 60px;
    background: #f8faf7;
    min-height: 100vh;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    max-width: 100%;
    margin: 0;
}

.shop-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.filter-section {
    margin-bottom: 32px;
}

.filter-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a3a0a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #687363;
    cursor: pointer;
    transition: color 0.2s;
}

.filter-item:hover {
    color: #F26522;
}

.filter-count {
    font-size: 12px;
    color: #b0b0b0;
}

.shop-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.shop-search-bar-modern {
    display: flex;
    align-items: center;
    background: #f1f5e8;
    border-radius: 50px;
    padding: 0 24px;
    height: 54px;
    width: 480px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.search-input-wrap {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 12px;
}

.search-input-wrap svg {
    color: #1a3a0a;
}

.search-input-wrap input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 15px;
    font-weight: 500;
    color: #1a3a0a;
    width: 100%;
}

.search-divider {
    width: 1px;
    height: 24px;
    background: #d1dcbc;
    margin: 0 20px;
}

.search-category-select {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #1a3a0a;
    cursor: pointer;
    white-space: nowrap;
}

.search-category-select svg {
    color: #1a3a0a;
}

.shop-results-info {
    font-size: 14px;
    color: #687363;
}

.shop-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Custom Modern Dropdown */
.custom-dropdown {
    position: relative;
    min-width: 180px;
}

.dropdown-selected {
    background: #f1f5e8;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #1a3a0a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.dropdown-selected:hover {
    background: #e9f0df;
    border-color: #d1dcbc;
}

.dropdown-selected svg {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.custom-dropdown.is-active .dropdown-selected svg {
    transform: rotate(180deg);
}

.dropdown-options {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 220px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    list-style: none;
    padding: 10px;
    display: none;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-dropdown.is-active .dropdown-options {
    display: block;
}

.dropdown-options li {
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #687363;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdown-options li:hover {
    background: #f1f5e8;
    color: #1a3a0a;
}

.dropdown-options li.active {
    background: #F26522;
    color: #fff;
    font-weight: 700;
}

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        display: none;
        /* Hide sidebar on small screens for now, or make it a drawer later */
    }

    .shop-page-container {
        padding: 100px 20px 40px;
    }
}

/* FAQ Page Styles */
.faq-page-container {
    padding: 223px 80px 100px;
    background: #fdfdfd;
    min-height: 100vh;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-sidebar {
    padding-top: 20px;
}

.faq-main-title {
    font-size: 64px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -2px;
}

.faq-sidebar-desc {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.faq-support-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.support-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.btn-contact-us {
    background: #F26522;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 5px 0 0 #9c3a10;
    position: relative;
    top: 0;
}

.btn-contact-us:hover {
    background: #e15d1f;
    top: 2px;
    box-shadow: 0 3px 0 0 #9c3a10;
}

.btn-contact-us:active {
    top: 5px;
    box-shadow: 0 0 0 0 #9c3a10;
}

/* Accordion Styles */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.is-active {
    border-color: #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.faq-question-btn {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Outfit', sans-serif;
}

.faq-question-btn span {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.faq-toggle-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-toggle-icon svg {
    width: 16px;
    height: 16px;
}

.faq-item.is-active .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    padding: 0 30px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-active .faq-answer {
    max-height: 500px;
    /* Large enough to fit content */
    opacity: 1;
    padding: 0 30px 24px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .faq-page-container {
        padding: 202px 40px 60px;
    }

    .faq-main-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .faq-page-container {
        padding: 202px 20px 40px;
    }

    .faq-main-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px;
        font-size: 14px;
    }

    .faq-item.is-active .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-tabs {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 40px;
    }

    .faq-tab {
        padding: 10px 18px;
        font-size: 13px;
        flex: 1;
        text-align: center;
        min-width: 120px;
    }
}

/* Contact Page Styles */
.contact-page-container {
    padding: 212px 80px 100px;
    background: #fff;
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.contact-title {
    font-size: 64px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -2px;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.contact-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-group {
    margin-bottom: 30px;
}

.contact-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 18px 24px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    color: #1a1a1a;
    background: #fdfdfd;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: #1a1a1a;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.contact-form-group textarea {
    height: 140px;
    resize: none;
}

.checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.checkbox-wrap input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-wrap a {
    color: #666;
    text-decoration: underline;
}

.btn-send-request {
    width: 100%;
    background: #F26522;
    color: #fff;
    padding: 20px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 6px 0 0 #9c3a10;
    position: relative;
    top: 0;
}

.btn-send-request:hover {
    background: #e15d1f;
    top: 2px;
    box-shadow: 0 4px 0 0 #9c3a10;
}

.btn-send-request:active {
    top: 6px;
    box-shadow: 0 0 0 0 #9c3a10;
}

.contact-info-section h3 {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 80px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 24px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.benefit-item .material-icons-outlined {
    color: #1a1a1a;
    font-size: 22px;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.location-item {
    position: relative;
}

.location-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.location-header .material-icons-outlined {
    font-size: 20px;
}

.location-addr {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.extra-contact-section {
    max-width: 1200px;
    margin: 100px auto 0;
    border-top: 1px solid #eee;
    padding-top: 60px;
}

.extra-contact-title {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.extra-contact-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.extra-icon-wrap {
    width: 48px;
    height: 48px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.extra-item span:last-child {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-page-container {
        padding: 204px 40px 60px;
    }

    .contact-title {
        font-size: 40px;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* Quick Order Page Styles */
.quick-order-container {
    padding: 202px 48px 40px;
    background: #f8faf7;
    min-height: 100vh;
}

.quick-order-inner {
    width: 100%;
    margin: 0 auto;
}

.quick-order-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    padding: 30px;
    border: 1px solid #eee;
}

.quick-order-table {
    width: 100%;
    border-collapse: collapse;
}

.quick-order-table th {
    text-align: left;
    padding: 15px 20px;
    background: #f1f5e8;
    color: #1a3a0a;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-order-table th:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.quick-order-table th:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.quick-order-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.quick-order-row:last-child td {
    border-bottom: none;
}

.product-search-input {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
}

.product-search-input:focus {
    border-color: #F26522;
}

.qty-input {
    width: 80px;
    padding: 12px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    outline: none;
}

.btn-add-row {
    background: #f1f5e8;
    color: #1a3a0a;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-add-row:hover {
    background: #e9f0df;
}

.quick-order-footer {
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.btn-add-to-cart-bulk {
    background: #F26522;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 6px 0 0 #9c3a10;
    transition: all 0.2s ease;
    position: relative;
    top: 0;
}

.btn-add-to-cart-bulk:hover {
    background: #e15d1f;
    top: 2px;
    box-shadow: 0 4px 0 0 #9c3a10;
}

.btn-add-to-cart-bulk:active {
    top: 6px;
    box-shadow: 0 0 0 0 #9c3a10;
}

@media (max-width: 768px) {
    .quick-order-container {
        padding: 120px 20px 60px;
    }

    .quick-order-card {
        padding: 15px;
        overflow-x: auto;
    }

    .quick-order-table {
        min-width: 600px;
    }
}

/* About Page Styles */
.about-hero {
    padding: 220px 80px 120px;
    background: #f1f5e8;
    text-align: center;
}

.about-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #fff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    color: #F26522;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.about-title {
    font-size: 64px;
    font-weight: 800;
    color: #1a3a0a;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
}

.about-title span {
    color: #F26522;
}

.about-desc {
    font-size: 20px;
    color: #687363;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-vision {
    padding: 100px 80px;
    background: #fff;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.vision-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: #1a3a0a;
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
}

.vision-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 24px;
}

.stats-row {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.stat-item h4 {
    font-size: 32px;
    font-weight: 800;
    color: #F26522;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    font-weight: 700;
    color: #1a3a0a;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .about-hero {
        padding: 160px 40px 80px;
    }

    .about-title {
        font-size: 48px;
    }

    .vision-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding: 140px 20px 60px;
    }

    .about-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .about-desc {
        font-size: 16px;
    }

    .about-vision {
        padding: 60px 20px;
    }

    .vision-content h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .vision-image {
        aspect-ratio: 1/1;
        border-radius: 20px;
    }

    .stats-row {
        gap: 30px;
        margin-top: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item h4 {
        font-size: 24px;
    }
}

/* Cart Page Styles */
.cart-page-container {
    padding: 160px 80px 100px;
    background: #fdfdfd;
    min-height: 100vh;
}

.cart-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
}

.cart-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
}

.cart-items-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    padding: 30px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-img {
    width: 100px;
    height: 100px;
    background: #f8f8f8;
    border-radius: 12px;
    padding: 10px;
}

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

.cart-item-info {
    flex: 1;
}

.cart-item-brand {
    font-size: 12px;
    font-weight: 800;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.cart-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.cart-item-meta {
    font-size: 13px;
    color: #666;
}

.cart-qty-ctrl {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f5f5f5;
    padding: 8px 16px;
    border-radius: 50px;
}

.qty-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.cart-item-price {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    width: 100px;
    text-align: right;
}

.cart-summary-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #eee;
    padding: 30px;
    align-self: start;
    position: sticky;
    top: 120px;
}

.summary-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-family: 'Outfit', sans-serif;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 15px;
    color: #666;
}

.summary-row.total {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #eee;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 20px;
}

.btn-checkout {
    width: 100%;
    background: #F26522;
    color: #fff;
    padding: 18px;
    border-radius: 14px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.2s ease;
    box-shadow: 0 6px 0 0 #9c3a10;
    position: relative;
    top: 0;
}

.btn-checkout:hover {
    background: #e15d1f;
    top: 2px;
    box-shadow: 0 4px 0 0 #9c3a10;
}

.btn-checkout:active {
    top: 6px;
    box-shadow: 0 0 0 0 #9c3a10;
}

@media (max-width: 1024px) {
    .cart-inner {
        grid-template-columns: 1fr;
    }

    .cart-page-container {
        padding: 120px 40px 60px;
    }
}

@media (max-width: 640px) {
    .cart-item {
        flex-wrap: wrap;
    }

    .cart-item-info {
        width: 100%;
        order: -1;
    }

    .cart-item-price {
        width: auto;
        flex: 1;
    }
}

/* Checkout Page Styles */
.checkout-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
    align-items: start;
}

.checkout-main {
    min-width: 0;
}

.checkout-section-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    padding: 30px;
}

.checkout-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.checkout-step-badge {
    width: 32px;
    height: 32px;
    background: #F26522;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.checkout-section-title {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    font-family: 'Outfit', sans-serif;
}

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

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

.form-group-full {
    grid-column: span 2;
}

.form-label {
    font-size: 13px;
    font-weight: 700;
    color: #444;
}

.form-label .req {
    color: #F26522;
}

.form-input {
    padding: 12px 16px;
    border: 1.5px solid #e5e5e5;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}

.form-input:focus {
    border-color: #F26522;
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.1);
    background: #fff;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

/* Payment Options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option {
    cursor: pointer;
    display: block;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border: 1.5px solid #e5e5e5;
    border-radius: 12px;
    background: #fafafa;
    transition: border-color 0.2s, background 0.2s;
}

.payment-option input[type="radio"]:checked + .payment-option-content {
    border-color: #F26522;
    background: #fff8f4;
}

.payment-icon {
    color: #F26522;
    font-size: 28px;
}

.payment-option-title {
    font-weight: 700;
    font-size: 14px;
    color: #1a1a1a;
}

.payment-option-desc {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

/* Checkout Order Items */
.checkout-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 4px;
}

.checkout-order-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-order-img {
    position: relative;
    width: 52px;
    height: 52px;
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: visible;
}

.checkout-order-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.checkout-item-qty {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #F26522;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-order-name {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.checkout-order-price {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    white-space: nowrap;
}

/* Mobile/Desktop visibility */
.checkout-mobile-submit { display: none; }
.checkout-desktop-submit { display: flex !important; }

/* Checkout responsive */
@media (max-width: 1024px) {
    .checkout-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .checkout-form-grid {
        grid-template-columns: 1fr;
    }
    .form-group-full {
        grid-column: span 1;
    }
    .checkout-mobile-submit { display: block; }
    .checkout-desktop-submit { display: none !important; }
}

@media (max-width: 640px) {
    .checkout-section-card {
        padding: 20px;
    }
}

/* Blog Page Styles */
.blog-page-container {
    padding: 212px 0 100px;
    background: #fff;
    min-height: 100vh;
}

.blog-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
}

.blog-decorations .shape {
    position: absolute;
    opacity: 0.3;
}

.shape.circle {
    top: -40px;
    left: 10%;
    width: 25px;
    height: 25px;
    border: 4px solid #8E44AD;
    border-radius: 50%;
}

.shape.star {
    top: 20px;
    left: -100px;
    width: 30px;
    height: 30px;
    background: #FFBD44;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.shape.square {
    top: 0;
    right: -100px;
    width: 20px;
    height: 20px;
    background: #E94E77;
    opacity: 0.5;
}

.quick-order-header {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 202px;
}

.quick-order-title {
    font-size: 64px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -2px;
}

.quick-order-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.blog-header h1 {
    font-size: 64px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -2px;
}

.blog-search-bar {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.blog-search-bar input {
    width: 100%;
    padding: 20px 60px 20px 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    font-size: 16px;
    background: #fff;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.blog-search-bar input:focus {
    border-color: #F26522;
    box-shadow: 0 15px 45px rgba(242, 101, 34, 0.08);
}

.blog-search-bar .search-icon {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #F26522;
    background: #fff5f0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.blog-search-bar .search-icon:hover {
    background: #F26522;
    color: #fff;
}

.blog-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    border-bottom: 1px solid #efefef;
    margin-bottom: 60px;
    padding-bottom: 0;
}

.blog-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 5px;
    font-size: 14px;
    font-weight: 700;
    color: #555;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.blog-tab.is-active {
    color: #F26522;
    border-bottom-color: #F26522;
}

.blog-tab .material-icons-outlined {
    font-size: 20px;
}

.blog-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 48px;
}

/* Featured Card */
.featured-blog-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 80px;
    min-height: 500px;
}

.featured-blog-info {
    padding: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-blog-info h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.featured-blog-info p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.featured-blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.featured-blog-info .read-more-wrapper {
    margin-top: 20px;
    padding-top: 0;
}

.featured-blog-img {
    background: #FFBD44;
    /* Placeholder accent */
    position: relative;
}

.featured-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-section-title {
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.blog-grid .col-12 {
    grid-column: 1 / -1;
}

.post-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-img {
    height: 200px;
    background: #eee;
    position: relative;
}

.post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-img .overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYwIiBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMTYwIDIwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik0wIDEwaDgwbDgwLTEwVjBIMTBWMTB6IiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMSkiLz48L3N2Zz4=');
    pointer-events: none;
}

.post-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px);
}

.post-info h3 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #777;
    font-weight: 700;
}

.post-tag {
    background: #f0f7ff;
    color: #007bff;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
}

.post-tag.benefits {
    background: #fff1f8;
    color: #d63384;
}

.post-tag.culture {
    background: #ecfdf5;
    color: #10b981;
}

/* Blog Pagination Styles */
.blog-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
}

.blog-pagination .page-item {
    display: inline-block;
}

.blog-pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #555;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.blog-pagination .page-item.active .page-link {
    background: #F26522;
    color: #fff;
    border-color: #F26522;
    box-shadow: 0 10px 25px rgba(242, 101, 34, 0.25);
    transform: translateY(-2px);
}

.blog-pagination .page-link:hover:not(.active) {
    background: #fff;
    color: #F26522;
    border-color: #F26522;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(242, 101, 34, 0.12);
}

.blog-pagination .page-item.disabled .page-link {
    color: #bbb;
    background: #fafafa;
    border-color: #eee;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Hide unwanted parts of Laravel's default pagination (mobile view and "Showing..." text) */
.blog-pagination nav > div:first-child {
    display: none !important;
}

.blog-pagination nav > div:last-child > div:first-child {
    display: none !important;
}

.blog-pagination nav > div:last-child {
    display: flex !important;
    justify-content: center !important;
    width: 100%;
}

.blog-pagination .pagination {
    display: flex !important;
    list-style: none;
    gap: 8px;
    padding: 0;
    margin: 0;
    justify-content: center;
    flex-wrap: wrap;
}


.read-more-wrapper {
    margin-top: auto;
    padding-top: 15px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    color: #F26522;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.3s;
    gap: 8px;
}

.read-more-btn:hover {
    color: #d45112;
    gap: 12px;
}

.read-more-btn::after {
    content: '\2192'; /* Right arrow */
    font-size: 18px;
}

@media (max-width: 1024px) {
    .quick-order-inner {
        padding: 0 40px;
    }

    .featured-blog-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .featured-blog-img {
        height: 350px;
        order: -1;
    }

    .featured-blog-info {
        padding: 50px 40px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .quick-order-container {
        padding: 160px 0 40px;
    }

    .table-responsive-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 20px;
    }

    .quick-order-table {
        min-width: 600px;
    }

    .quick-order-title {
        font-size: 32px;
    }

    .quick-order-subtitle {
        font-size: 14px;
    }

    .btn-add-to-cart-bulk {
        width: 100%;
    }

    .blog-page-container {
        padding: 202px 0 60px;
    }

    .blog-header {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .blog-header h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .blog-search-bar input {
        padding: 16px 55px 16px 20px;
        font-size: 14px;
    }

    .blog-search-bar .search-icon {
        width: 38px;
        height: 38px;
        right: 18px;
    }

    .blog-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 20px 10px;
        margin-bottom: 40px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .blog-tabs::-webkit-scrollbar {
        display: none;
    }

    .blog-tab {
        white-space: nowrap;
        padding: 15px 10px;
        font-size: 13px;
        gap: 6px;
    }

    .blog-content {
        padding: 0 20px;
    }

    .featured-blog-info h2 {
        font-size: 24px;
    }

    .featured-blog-info {
        padding: 30px 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-decorations {
        display: none;
    }

    .post-img {
        height: 180px;
    }
}

/* Blog Detail Page Styles */
.blog-detail-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 202px 48px 100px;
}

.blog-detail-header {
    text-align: left;
    margin-bottom: 50px;
}

.entry-title {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: 'Outfit', sans-serif;
}

.entry-meta {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.author-link {
    color: #1a1a1a;
    font-weight: 700;
    text-decoration: underline;
}

.entry-featured-img {
    width: 100%;
    height: 60vh;
    margin-bottom: 80px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.entry-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.entry-layout {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) 280px;
    gap: 80px;
    align-items: start;
}

.share-sidebar {
    position: sticky;
    top: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.share-label {
    font-size: 14px;
    font-weight: 800;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.share-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.share-icon {
    width: 44px;
    height: 44px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}

.share-icon:hover {
    background: #F26522;
    transform: translateY(-3px);
}

.entry-content {
    max-width: 100%;
}

.section-heading {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 60px 0 30px;
    font-family: 'Outfit', sans-serif;
}

.entry-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.toc-sidebar {
    position: sticky;
    top: 140px;
}

.toc-title {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.toc-list {
    list-style: none;
    padding: 0;
    border-left: 2px solid #eee;
}

.toc-list li {
    padding: 10px 0 10px 0;
    position: relative;
    transition: all 0.3s;
}

.toc-list li a {
    font-size: 15px;
    color: #999;
    font-weight: 600;
    transition: all 0.3s;
    display: block;
}

.toc-list li.active::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: #1a1a1a;
}

.toc-list li.active a {
    color: #1a1a1a;
    font-weight: 800;
    padding-left: 30px;
}

.toc-list li:hover a {
    color: #F26522;
}

@media (max-width: 1024px) {
    .entry-layout {
        grid-template-columns: 1fr;
    }

    .share-sidebar {
        flex-direction: row;
        position: static;
        margin-bottom: 40px;
        justify-content: flex-start;
    }

    .share-links {
        flex-direction: row;
    }

    .toc-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .blog-detail-container {
        padding: 160px 20px 60px;
    }

    .entry-title {
        font-size: 36px;
    }
}

/* Shop Page Responsiveness */
.shop-page-container {
    padding-top: 140px;
    background: #fdfdfd;
}

.mobile-shop-actions {
    display: none;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 15px 0;
    position: sticky;
    top: 24px;
    z-index: 100;
}

.mobile-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
}

.mobile-action-btn span:last-child {
    font-family: 'Inter', sans-serif;
}

.mobile-action-btn .material-icons-outlined {
    font-size: 20px;
}

.action-divider {
    width: 1px;
    height: 24px;
    background: #e5e7eb;
}

@media (max-width: 1024px) {
    .shop-layout {
        display: block;
    }

    .shop-sidebar {
        display: none;
        /* Hide sidebar by default on mobile/tablet */
    }

    .shop-page-container {
        padding: 120px 20px 60px;
    }

    .shop-product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 851px) {
    .shop-search-bar-modern {
        display: none !important;
    }

    .shop-main-header {
        justify-content: flex-end;
    }
}

@media (max-width: 850px) {
    .mobile-shop-actions {
        display: flex;
        margin-bottom: 30px;
    }

    .shop-search-bar-modern,
    .shop-results-info {
        display: none !important;
    }

    .shop-main-header {
        display: none;
    }

    .shop-controls {
        display: none;
    }

    .shop-search-bar-modern {
        width: 100%;
        max-width: none;
    }
}

/* Base styles - hide mobile components by default on desktop */
.mobile-bottom-sheet,
.mobile-filter-modal {
    display: none;
}

@media (max-width: 850px) {
    /* Mobile Bottom Sheet (Sort) */
    .mobile-bottom-sheet {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 10000;
        visibility: hidden;
        transition: visibility 0.3s;
    }

    .mobile-bottom-sheet.is-open {
        visibility: visible;
    }

    .sheet-backdrop {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-bottom-sheet.is-open .sheet-backdrop {
        opacity: 1;
    }

    .sheet-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding-bottom: env(safe-area-inset-bottom);
    }

    .mobile-bottom-sheet.is-open .sheet-content {
        transform: translateY(0);
    }

    .sheet-header {
        padding: 20px 24px 15px;
        border-bottom: 1px solid #f0f0f0;
    }

    .sheet-header h3 {
        font-size: 14px;
        font-weight: 700;
        color: #888;
        letter-spacing: 0.5px;
        margin: 0;
    }

    .sheet-body {
        padding: 10px 0;
    }

    .sort-option {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 24px;
        cursor: pointer;
        transition: background 0.2s;
        position: relative;
    }

    .sort-option:active {
        background: #f9f9f9;
    }

    .sort-option span {
        font-size: 16px;
        font-weight: 500;
        color: #1a1a1a;
    }

    .sort-option input {
        position: absolute;
        opacity: 0;
    }

    .radio-custom {
        width: 20px;
        height: 20px;
        border: 2px solid #ccc;
        border-radius: 50%;
        position: relative;
        transition: border-color 0.2s;
    }

    .sort-option input:checked~.radio-custom {
        border-color: #2b6cb0;
    }

    .sort-option input:checked~.radio-custom::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 10px;
        height: 10px;
        background: #2b6cb0;
        border-radius: 50%;
    }

    /* Mobile Filter Modal */
    .mobile-filter-modal {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 11000;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .mobile-filter-modal.is-open {
        transform: translateX(0);
    }

    .filter-modal-header {
        display: flex;
        align-items: center;
        padding: 12px 16px;
        background: #fff;
        border-bottom: 1px solid #f0f2f5;
        gap: 16px;
        flex-shrink: 0;
    }

    .filter-back-btn {
        background: none;
        border: none;
        padding: 4px;
        cursor: pointer;
        display: flex;
        align-items: center;
    }

    .filter-modal-header h3 {
        font-size: 18px;
        font-weight: 600;
        color: #1f2937;
        margin: 0;
    }

    .filter-modal-content {
        flex: 1;
        display: flex;
        min-height: 0;
        /* Important for flex child scrolling */
    }

    .filter-sidebar {
        width: 120px;
        background: #f1f5f9;
        overflow-y: auto;
        border-right: 1px solid #e2e8f0;
    }

    .filter-cat-item {
        padding: 16px 12px;
        font-size: 14px;
        font-weight: 500;
        color: #475569;
        cursor: pointer;
        border-bottom: 1px solid #e2e8f0;
    }

    .filter-cat-item.active {
        background: #fff;
        color: #2563eb;
        font-weight: 600;
    }

    .filter-main {
        flex: 1;
        display: flex;
        flex-direction: column;
        background: #fff;
        overflow-y: auto;
        padding: 16px;
    }

    .filter-search-wrap {
        display: flex;
        align-items: center;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 8px 12px;
        margin-bottom: 20px;
        gap: 8px;
    }

    .filter-search-wrap input {
        border: none;
        background: none;
        outline: none;
        font-size: 14px;
        width: 100%;
    }

    .filter-options-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .filter-checkbox-item {
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
    }

    .filter-checkbox-item input {
        position: absolute;
        opacity: 0;
    }

    .checkbox-custom {
        width: 20px;
        height: 20px;
        border: 2px solid #cbd5e1;
        border-radius: 4px;
        position: relative;
        transition: all 0.2s;
        flex-shrink: 0;
    }

    .filter-checkbox-item input:checked~.checkbox-custom {
        background: #2563eb;
        border-color: #2563eb;
    }

    .filter-checkbox-item input:checked~.checkbox-custom::after {
        content: 'check';
        font-family: 'Material Icons Outlined';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        font-size: 16px;
    }

    .checkbox-label {
        font-size: 15px;
        color: #1e293b;
    }

    .filter-view-more {
        margin-top: 20px;
        color: #2563eb;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
    }

    .filter-modal-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px;
        background: #fff;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
        border-top: 1px solid #f0f2f5;
        flex-shrink: 0;
    }

    .filter-results-info {
        display: flex;
        flex-direction: column;
    }

    .filter-results-info strong {
        font-size: 16px;
        color: #1e293b;
    }

    .filter-results-info span {
        font-size: 12px;
        color: #64748b;
    }

    .filter-apply-btn {
        background: #ff5911;
        /* Brand orange */
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 12px 48px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(255, 89, 17, 0.2);
    }

    .shop-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .shop-product-grid {
        grid-template-columns: 1fr;
    }

    .shop-page-container {
        padding-top: 126px;
    }
}

/* ========================= USER DASHBOARD ========================= */
.user-dashboard-page {
    background: #f6f7f5;
    min-height: 100vh;
    width: 100%;
    padding: 202px 0 0;
}

.user-dashboard-container {
    width: 100%;
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    align-items: stretch;
    min-height: calc(100vh - 202px);
}

.user-sidebar {
    border-radius: 0;
    padding: 24px;
    position: sticky;
    top: 110px;
    align-self: flex-start;
    height: calc(100vh - 110px);
    overflow-y: auto;
}

.user-profile-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eef0ec;
    margin-bottom: 16px;
}

.user-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #e6f8ec;
    color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar .material-icons-outlined {
    font-size: 38px;
}

.user-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1b1b18;
    margin: 0 0 2px;
}

.user-info p {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    word-break: break-all;
}

.user-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.user-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.user-nav-link:hover {
    background: #f3f4f1;
    color: #1b1b18;
}

.user-nav-link.active {
    background: #25D366;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 5px 0 0 #128a3f;
}

.user-nav-link .material-icons-outlined {
    font-size: 20px;
}

.user-nav-badge {
    margin-left: auto;
    background: #25D366;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
}

.user-nav-link.active .user-nav-badge {
    background: #fff;
    color: #25D366;
}

.user-nav-logout {
    margin-top: 12px;
    border-top: 1px solid #eef0ec;
    padding-top: 18px;
    color: #dc2626;
}

.user-nav-logout:hover {
    background: #fef2f2;
    color: #dc2626;
}

.user-dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px 32px 60px;
    width: 100%;
}

.user-content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.user-page-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px;
}

.user-page-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.user-primary-btn {
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 5px 0 0 #128a3f;
    transition: all 0.2s ease;
    position: relative;
    top: 0;
}

.user-primary-btn:hover {
    top: 2px;
    box-shadow: 0 3px 0 0 #128a3f;
}

.user-primary-btn:active {
    top: 5px;
    box-shadow: 0 0 0 0 #128a3f;
}

.user-primary-btn .material-icons-outlined {
    font-size: 18px;
}

.user-secondary-btn {
    background: #f3f4f1;
    color: #1b1b18;
    border: none;
    border-radius: 10px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.user-secondary-btn:hover {
    background: #e5e7e2;
}

.user-link-btn {
    background: transparent;
    color: #25D366;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 0;
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.user-link-btn .material-icons-outlined {
    font-size: 16px;
}

.user-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.user-secondary-btn .material-icons-outlined {
    font-size: 18px;
}

.user-search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 14px;
    min-width: 280px;
}

.user-search-wrap .material-icons-outlined {
    color: #9ca3af;
    font-size: 20px;
}

.user-search-wrap input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    width: 100%;
}

.user-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.user-stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.user-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-stat-icon .material-icons-outlined {
    font-size: 26px;
}

.user-stat-icon.orange { background: #e6f8ec; color: #25D366; }
.user-stat-icon.green { background: #e7f6ec; color: #16a34a; }
.user-stat-icon.blue { background: #e6f0ff; color: #2563eb; }
.user-stat-icon.purple { background: #f1ebff; color: #7c3aed; }

.user-stat-info h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 2px;
}

.user-stat-info p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.user-dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.user-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.user-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.user-card-header h2 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.user-card-header h2 .material-icons-outlined {
    font-size: 20px;
    color: #25D366;
}

.user-card-link {
    font-size: 13px;
    font-weight: 600;
    color: #25D366;
}

.user-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.user-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.user-table thead th {
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px;
    border-bottom: 1px solid #eef0ec;
    background: #fafaf8;
}

.user-table tbody td {
    padding: 14px 12px;
    border-bottom: 1px solid #f1f3ef;
    color: #1f2937;
}

.user-table tbody tr:last-child td {
    border-bottom: none;
}

.user-table tbody tr:hover {
    background: #fafaf8;
}

.user-product-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-product-thumb {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #fafaf8;
    border: 1px solid #eef0ec;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.user-table-btn {
    background: #e6f8ec;
    color: #25D366;
    border: none;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.user-table-btn:hover {
    background: #c8efd1;
}

.user-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.user-status.delivered { background: #e7f6ec; color: #16a34a; }
.user-status.shipped { background: #e6f0ff; color: #2563eb; }
.user-status.processing { background: #fff4e0; color: #b45309; }
.user-status.cancelled { background: #fde2e2; color: #b91c1c; }

.user-activity-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.user-activity-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f3ef;
}

.user-activity-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.user-activity-list p {
    margin: 0 0 4px;
    font-size: 14px;
    color: #1f2937;
}

.user-activity-list small {
    font-size: 12px;
    color: #9ca3af;
}

.activity-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    flex-shrink: 0;
}

.activity-icon.green { background: #e7f6ec; color: #16a34a; }
.activity-icon.blue { background: #e6f0ff; color: #2563eb; }
.activity-icon.orange { background: #e6f8ec; color: #25D366; }
.activity-icon.purple { background: #f1ebff; color: #7c3aed; }

/* Order Tracking */
.user-track-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eef0ec;
    margin-bottom: 32px;
}

.user-track-label {
    font-size: 12px;
    color: #6b7280;
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-track-header h3 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.user-track-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    gap: 8px;
}

.user-track-timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}

.user-track-step {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #9ca3af;
}

.user-track-step .material-icons-outlined {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f3f4f1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 10px;
    border: 2px solid #fff;
}

.user-track-step.done {
    color: #16a34a;
}

.user-track-step.done .material-icons-outlined {
    background: #16a34a;
    color: #fff;
}

.user-track-step.active {
    color: #25D366;
}

.user-track-step.active .material-icons-outlined {
    background: #25D366;
    color: #fff;
    box-shadow: 0 0 0 6px rgba(255, 89, 17, 0.15);
}

.user-track-step p {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 2px;
    color: #1f2937;
}

.user-track-step small {
    font-size: 11px;
    color: #9ca3af;
}

/* Messages */
.user-messages-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    display: grid;
    grid-template-columns: 320px 1fr;
    min-height: 560px;
    overflow: hidden;
}

.user-messages-list {
    border-right: 1px solid #eef0ec;
    overflow-y: auto;
}

.user-message-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    cursor: pointer;
    border-bottom: 1px solid #f1f3ef;
    transition: background 0.2s;
}

.user-message-item:hover {
    background: #fafaf8;
}

.user-message-item.active {
    background: #e6f8ec;
}

.user-msg-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-msg-info {
    flex: 1;
    min-width: 0;
}

.user-msg-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.user-msg-top h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    color: #0f172a;
}

.user-msg-top small {
    font-size: 11px;
    color: #9ca3af;
}

.user-msg-info p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-message-thread {
    display: flex;
    flex-direction: column;
}

.user-thread-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-bottom: 1px solid #eef0ec;
}

.user-thread-header h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.user-thread-header small {
    font-size: 12px;
    color: #16a34a;
}

.user-thread-body {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fafaf8;
    overflow-y: auto;
}

.user-bubble {
    max-width: 70%;
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.4;
}

.user-bubble.in {
    background: #fff;
    color: #1f2937;
    border: 1px solid #eef0ec;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.user-bubble.out {
    background: #25D366;
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.user-thread-input {
    display: flex;
    gap: 8px;
    padding: 16px 24px;
    border-top: 1px solid #eef0ec;
    background: #fff;
}

.user-thread-input input {
    flex: 1;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
}

.user-thread-input input:focus {
    border-color: #25D366;
}

.user-thread-input button {
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 10px;
    width: 46px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Profile Form */
.user-profile-banner {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eef0ec;
    margin-bottom: 24px;
}

.user-profile-avatar-lg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e6f8ec;
    color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-profile-avatar-lg .material-icons-outlined {
    font-size: 60px;
}

.user-profile-banner h3 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.user-profile-banner p {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
}

.user-profile-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.user-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.user-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.user-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.user-form-group label .material-icons-outlined {
    font-size: 18px;
    color: #25D366;
}

.user-input-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.user-input-icon > .material-icons-outlined {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 20px;
    pointer-events: none;
}

.user-input-icon.textarea > .material-icons-outlined {
    top: 16px;
    transform: none;
}

.user-input-icon input,
.user-input-icon textarea {
    width: 100%;
    padding-left: 44px !important;
}

.user-form-group input,
.user-form-group textarea {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    background: #fafaf8;
    transition: border-color 0.2s;
    resize: vertical;
}

.user-form-group input:focus,
.user-form-group textarea:focus {
    border-color: #25D366;
    background: #fff;
}

.user-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 8px;
}

/* Responsive */
.user-sidebar-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 0 0 #128a3f;
}

.user-sidebar-toggle .material-icons-outlined {
    font-size: 20px;
}

.user-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.user-sidebar-overlay.is-open {
    display: block;
    opacity: 1;
}

.user-sidebar-close {
    display: none;
    position: absolute;
    top: 14px;
    right: 14px;
    background: #f3f4f1;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1f2937;
    z-index: 2;
}

@media (max-width: 1024px) {
    .user-dashboard-page {
        padding: 100px 0 0;
    }

    .user-dashboard-container {
        display: block;
        min-height: auto;
        position: relative;
        width: 100%;
        overflow-x: hidden;
    }

    .user-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 300px;
        max-width: 85vw;
        z-index: 2500;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-radius: 0;
        overflow-y: auto;
        background: #fff;
    }

    .user-sidebar.is-open {
        transform: translateX(0);
    }

    .user-sidebar-overlay {
        z-index: 2400;
    }

    .user-sidebar-close {
        display: flex;
    }

    .user-sidebar-toggle {
        display: inline-flex;
        position: sticky;
        top: 10px;
        left: 12px;
        z-index: 90;
        background: #1a3a0a;
        color: #fff !important;
        border: none !important;
        outline: none !important;
        padding: 8px 16px 8px 12px;
        border-radius: 50px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        align-items: center;
        gap: 8px;
        font-weight: 700;
        font-size: 13px;
        transition: all 0.3s ease;
        cursor: pointer;
        margin-bottom: -40px;
        text-decoration: none !important;
    }

    .user-sidebar-toggle.is-hidden {
        opacity: 0;
        visibility: hidden;
    }

    .user-dashboard-content {
        padding: 60px 12px 40px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
        overflow-x: hidden;
        min-width: 0;
    }

    .user-card {
        padding: 16px 12px;
        margin-bottom: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 12px;
        overflow: hidden;
    }

    .user-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
    }

    .user-stat-card {
        padding: 16px;
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .user-stat-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0;
    }

    .user-table-wrap {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .user-nav {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .user-nav-link {
        flex: 1 1 auto;
    }

    .user-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .user-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .user-track-header {
        grid-template-columns: repeat(2, 1fr);
    }

    .user-messages-card {
        grid-template-columns: 1fr;
    }

    .user-messages-list {
        border-right: none;
        border-bottom: 1px solid #eef0ec;
        max-height: 280px;
    }
}

@media (max-width: 600px) {
    .user-dashboard-page {
        padding: 122px 0 0;
    }

    .user-stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .user-dashboard-content {
        padding: 70px 10px 40px;
    }

    .user-card {
        padding: 14px 10px;
        border-radius: 10px;
    }

    .user-table-wrap {
        margin: 0;
        padding: 0;
        width: 100%;
        overflow-x: auto;
    }
}

/* ===== How To Order Page ===== */
.hto-page {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: #0f172a;
    background: #fff;
}

.hto-pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #0f172a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
}

.hto-accent { color: #ff5911; }

/* Hero */
.hto-hero {
    position: relative;
    padding: 40px 24px 32px;
    background:
        radial-gradient(1200px 400px at -10% -20%, #fff1ea 0%, rgba(255, 241, 234, 0) 60%),
        radial-gradient(1000px 400px at 110% 110%, #ecfdf5 0%, rgba(236, 253, 245, 0) 60%),
        #ffffff;
}

.hto-hero-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    box-sizing: border-box;
}

.hto-hero-left { max-width: none; }

.hto-hero-title {
    margin: 18px 0 14px;
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -2px;
}

.hto-hero-desc {
    margin: 0 0 26px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    max-width: 520px;
}

.hto-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 56px;
    background: #F26522;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 6px 0 0 #9c3a10;
    transition: all 0.2s ease;
    position: relative;
    top: 0;
}

.hto-cta:hover {
    background: #e15d1f;
    color: #fff;
    top: 2px;
    box-shadow: 0 4px 0 0 #9c3a10;
}

.hto-cta:active {
    top: 6px;
    box-shadow: 0 0 0 0 #9c3a10;
}

/* Video card */
.hto-hero-right { display: flex; flex-direction: column; align-items: stretch; }

.hto-video-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, #ff7a3a 0%, #ff5911 100%);
    box-shadow: 0 20px 50px rgba(15, 23, 42, .12);
    aspect-ratio: 16 / 9;
}

.hto-video-thumb {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.hto-video-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.hto-video-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .35;
}

.hto-yt-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .35));
}

.hto-watch-pill {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.hto-watch-pill strong { color: #ff5911; margin-left: 4px; }

.hto-video-caption {
    margin: 12px 4px 0;
    color: #64748b;
    font-size: 13px;
    text-align: center;
}

/* Steps */
.hto-steps {
    padding: 64px 24px;
    background: #fff;
}

.hto-steps-head {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.hto-steps-title {
    margin: 14px 0 8px;
    font-size: clamp(24px, 2.6vw, 34px);
    font-weight: 800;
    color: #0b1220;
    letter-spacing: -0.01em;
}

.hto-steps-desc {
    margin: 0;
    color: #64748b;
    font-size: 15px;
}

.hto-steps-grid {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 48px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    box-sizing: border-box;
}

.hto-step-card {
    position: relative;
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 18px;
    padding: 32px 26px 26px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .03);
    overflow: hidden;
}

.hto-step-num {
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: #f1f5f9;
    letter-spacing: -1px;
    line-height: 1;
}

.hto-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff1ea 0%, #ffe0cc 100%);
    color: #ff5911;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.hto-step-icon .material-icons-outlined {
    font-size: 28px;
}

.hto-step-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: #0b1220;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.3px;
}

.hto-step-text {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.hto-link {
    color: #ff5911;
    text-decoration: none;
    font-weight: 600;
}
.hto-link:hover { text-decoration: underline; }

/* Walk-through */
.hto-walkthrough {
    padding: 64px 24px;
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.hto-walk-head {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.hto-walk-title {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: #0b1220;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1.5px;
}

.hto-walk-desc {
    margin: 0;
    color: #64748b;
    font-size: 18px;
}

.hto-walk-frame {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    background: #0b1220;
    box-shadow: 0 30px 60px rgba(15, 23, 42, .2);
    aspect-ratio: 16 / 9;
}

.hto-walk-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Responsive */
@media (max-width: 980px) {
    .hto-hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hto-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .hto-hero { padding: 40px 16px 24px; }
    .hto-steps { padding: 48px 16px; }
    .hto-walkthrough { padding: 16px 16px 56px; }
    .hto-steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== B2B Page ===== */
.b2b-hero-card {
    width: 100%;
    background: linear-gradient(135deg, #ff6a1f 0%, #ff8a3d 100%);
    border-radius: 24px;
    padding: 36px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    box-shadow: 0 20px 50px rgba(255, 89, 17, .25);
    color: #fff;
    box-sizing: border-box;
}

.b2b-hero-stat {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    backdrop-filter: blur(6px);
}

.b2b-stat-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 3vw, 38px);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 6px;
}

.b2b-stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, .9);
    font-weight: 500;
}

.b2b-cta-section {
    min-height: auto;
    padding: 80px 24px;
    background: #fff8f3;
}

.b2b-cta-section .hto-walk-head {
    max-width: 760px;
}

.b2b-cta-actions {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.b2b-cta-note {
    margin: 20px 0 0;
    color: #64748b;
    font-size: 14px;
}

@media (max-width: 600px) {
    .b2b-hero-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    .b2b-cta-section { padding: 56px 16px; }
}

/* ===== Product List Page ===== */
.pl-page { background: #fff; }

.pl-toolbar-section {
    padding: 0 48px 24px;
}

.pl-toolbar {
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 18px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .03);
    flex-wrap: wrap;
}

.pl-search {
    flex: 1 1 320px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f6f7f9;
    border: 1px solid #eef0f3;
    border-radius: 12px;
    padding: 10px 14px;
    transition: border-color .2s, background .2s;
}

.pl-search:focus-within {
    border-color: #ff5911;
    background: #fff;
}

.pl-search .material-icons-outlined {
    color: #94a3b8;
    font-size: 20px;
}

.pl-search input {
    flex: 1;
    border: 0;
    background: transparent;
    outline: none;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    color: #0b1220;
}

.pl-list-section {
    padding: 0 48px 96px;
}

.pl-catalogue {
    width: 100%;
    font-family: 'Outfit', sans-serif;
}

.pl-catalogue-head {
    display: grid;
    grid-template-columns: 200px 120px 1fr 180px;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid #eef0f3;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    font-weight: 700;
}

.pl-th-img { text-align: left; padding-left: 10px; }
.pl-th-link { text-align: left; }

.pl-group {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: flex-start;
    padding: 32px 24px;
    border-bottom: 1px solid #f1f3f5;
}

.pl-group-cat {
    padding-top: 18px;
}

.pl-cat-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #0b1220;
    letter-spacing: -0.2px;
    line-height: 1.4;
}

.pl-group-list {
    display: flex;
    flex-direction: column;
}

.pl-item {
    display: grid;
    grid-template-columns: 140px 1fr 180px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #f1f3f5;
    gap: 24px;
}

.pl-item:last-child { border-bottom: 0; }

.pl-item-img-col {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pl-item-num {
    color: #0b1220;
    font-weight: 700;
    min-width: 18px;
}

.pl-item-text {
    flex: 1;
    font-size: 15px;
    color: #6b7280;
    font-weight: 400;
    line-height: 1.5;
    min-width: 0;
}

.pl-item-link {
    display: flex;
    justify-content: flex-end;
}

.pl-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff5911;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 8px;
    box-shadow: 0 3px 0 #c33d00;
    transition: transform .1s ease, background .2s ease, box-shadow .2s ease;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
}

.pl-view-btn:hover {
    background: #ff6a25;
    color: #fff;
}

.pl-view-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #c33d00;
}

.pl-empty {
    padding: 60px 24px;
    text-align: center;
    color: #94a3b8;
}

.pl-empty .material-icons-outlined {
    font-size: 48px;
    margin-bottom: 12px;
    color: #cbd5e1;
}

.pl-empty p {
    margin: 0;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
}

@media (max-width: 980px) {
    .pl-toolbar-section { padding: 0 24px 20px; }
    .pl-list-section { padding: 0 24px 64px; }
    .pl-catalogue-head { grid-template-columns: 160px 100px 1fr 140px; padding: 16px; }
    .pl-group { grid-template-columns: 160px 1fr; padding: 24px 16px; }
    .pl-item { grid-template-columns: 100px 1fr 140px; }
}

@media (max-width: 700px) {
    .pl-toolbar-section { padding: 0 16px 16px; }
    .pl-list-section { padding: 0 16px 56px; }
    .pl-catalogue-head { display: none; }
    .pl-group { grid-template-columns: 1fr; padding: 20px 16px; gap: 12px; }
    .pl-group-cat { padding-top: 0; }
    .pl-cat-title {
        display: inline-block;
        background: #fff1ea;
        color: #ff5911;
        padding: 6px 14px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.4px;
    }
    .pl-item { grid-template-columns: 1fr; gap: 15px; padding: 20px 0; }
    .pl-item-text { font-size: 14px; }
    .pl-item-link { justify-content: flex-start; }
    .pl-view-btn { width: 100%; }
}

/* ===== Product Detail Page ===== */
.pd-page {
    background: #fff;
    font-family: 'Outfit', sans-serif;
}

.pd-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 202px 140px 96px;
    box-sizing: border-box;
}

.pd-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 24px;
}

.pd-crumb {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
}

.pd-crumb:hover { color: #ff5911; }

.pd-crumb.is-current {
    color: #6b7280;
    font-weight: 500;
    pointer-events: none;
}

.pd-crumb-sep { color: #cbd5e1; }

.pd-main {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 48px;
    align-items: flex-start;
}

.pd-gallery { display: flex; flex-direction: column; gap: 14px; }

.pd-main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f6f7f9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pd-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
    box-sizing: border-box;
}

.pd-image-placeholder {
    color: #cbd5e1;
}

.pd-image-placeholder .material-icons-outlined {
    font-size: 96px;
}

.pd-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.pd-thumb {
    background: #f6f7f9;
    border: 2px solid transparent;
    border-radius: 10px;
    aspect-ratio: 1 / 1;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    box-sizing: border-box;
}

.pd-thumb.is-active {
    border-color: #ff5911;
}

.pd-thumb-more {
    background: #0b1220;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: default;
}

.pd-info { padding-top: 4px; }

.pd-title {
    margin: 0 0 12px;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 700;
    color: #0b1220;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.pd-short {
    margin: 0 0 12px;
    color: #475569;
    font-size: 15px;
    line-height: 1.55;
}

.pd-long {
    margin: 0 0 18px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.pd-readmore {
    color: #ff5911;
    text-decoration: underline;
    font-weight: 600;
}

.pd-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #64748b;
    flex-wrap: wrap;
}

.pd-sold {
    font-weight: 600;
    color: #0b1220;
}

.pd-sold em {
    font-style: normal;
    color: #64748b;
    font-weight: 500;
}

.pd-meta-dot { color: #cbd5e1; }

.pd-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    color: #0b1220;
}

.pd-rating .material-icons {
    color: #f59e0b;
    font-size: 18px;
}

.pd-meta-muted { color: #94a3b8; font-weight: 500; }

.pd-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.pd-price {
    font-size: clamp(28px, 3vw, 34px);
    font-weight: 800;
    color: #0b1220;
    letter-spacing: -1px;
    font-family: 'Outfit', sans-serif;
}

.pd-mrp {
    color: #ef4444;
    text-decoration: line-through;
    font-size: 16px;
    font-weight: 500;
}

.pd-option {
    margin-bottom: 22px;
}

.pd-option-label {
    display: block;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 10px;
}

.pd-option-label strong {
    color: #0b1220;
    font-weight: 600;
}

.pd-form-swatches {
    display: flex;
    gap: 10px;
}

.pd-swatch {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid #eef0f3;
    cursor: pointer;
    padding: 0;
    transition: border-color .15s ease, transform .1s ease;
}

.pd-swatch.is-active {
    border-color: #0b1220;
}

.pd-pack-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pd-pack {
    min-width: 56px;
    padding: 10px 16px;
    border: 1px solid #eef0f3;
    background: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0b1220;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all .15s ease;
}

.pd-pack:hover { border-color: #ffd2bb; }

.pd-pack.is-active {
    border-color: #0b1220;
    background: #0b1220;
    color: #fff;
}

.pd-price-table-wrap {
    margin-top: 12px;
    border: 1px solid #eef0f3;
    border-radius: 8px;
    overflow: hidden;
}

.pd-price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.pd-price-table th {
    background: #ff5911;
    color: #fff;
    text-align: left;
    padding: 12px 16px;
    font-weight: 600;
}

.pd-price-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #f1f3f5;
    color: #0b1220;
    font-weight: 500;
}

.pd-price-table tr:last-child td { border-bottom: 0; }
.pd-price-table tr.is-highlight td { background: #f8fafc; }

.pd-price-note {
    margin-top: 12px;
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
}

.pd-qty-selector {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 24px;
}

.pd-qty-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #0b1220;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
}

.pd-qty-btn:hover { background: #f8fafc; }
.pd-qty-btn .material-icons-outlined { font-size: 18px; }

#qtyMinus { border-radius: 4px 0 0 4px; }
#qtyPlus { border-radius: 0 4px 4px 0; }

.pd-qty-input {
    width: 60px;
    height: 44px;
    border: 1px solid #cbd5e1;
    border-left: 0;
    border-right: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #0b1220;
    font-family: 'Outfit', sans-serif;
    -moz-appearance: textfield;
}

.pd-qty-input::-webkit-outer-spin-button,
.pd-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 14px;
}

.pd-actions .pd-btn {
    flex: 0 0 auto;
    min-width: 180px;
}

.pd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .1s ease, background .2s ease, box-shadow .2s ease;
    font-family: 'Outfit', sans-serif;
}

.pd-btn .material-icons-outlined { font-size: 20px; }

.pd-btn-primary {
    background: #ff5911;
    color: #fff;
    box-shadow: 0 4px 0 #c33d00;
}

.pd-btn-primary:hover { background: #ff6a25; color: #fff; }
.pd-btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 #c33d00; }

.pd-btn-outline {
    background: #fff;
    color: #ff5911;
    border-color: #ffd2bb;
}

.pd-btn-outline:hover {
    background: #fff8f3;
    color: #ff5911;
}

.pd-meta-actions {
    display: flex;
    gap: 0;
    border-top: 1px solid #eef0f3;
    padding-top: 14px;
    max-width: 420px;
}

.pd-meta-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: 0;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    padding: 10px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.pd-meta-btn:hover { color: #ff5911; }

.pd-meta-btn .material-icons-outlined { font-size: 18px; }

.pd-meta-btn + .pd-meta-btn { border-left: 1px solid #eef0f3; }

.pd-share-area {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid #eef0f3;
}

.pd-share-label {
    display: block;
    font-size: 14px;
    color: #0b1220;
    font-weight: 600;
    margin-bottom: 12px;
}

.pd-share-list {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.pd-share-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: opacity .2s ease, transform .1s ease;
}

.pd-share-btn:hover {
    color: #fff;
    opacity: .9;
    transform: translateY(-1px);
}

.pd-share-fb { background: #1877f2; }
.pd-share-tw { background: #1da1f2; }
.pd-share-li { background: #0a66c2; }
.pd-share-pi { background: #e60023; }
.pd-share-wa { background: #25d366; }

.pd-inquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #4caf50;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 22px;
    border-radius: 8px;
    box-shadow: 0 4px 0 #2e7d32;
    transition: transform .1s ease, background .2s ease, box-shadow .2s ease;
    font-family: 'Outfit', sans-serif;
}

.pd-inquiry-btn:hover {
    background: #43a047;
    color: #fff;
}

.pd-inquiry-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #2e7d32;
}

/* Bottom section */
.pd-bottom {
    margin-top: 56px;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 48px;
    align-items: flex-start;
}

.pd-tabs {
    display: flex;
    gap: 24px;
    border-bottom: 1px solid #eef0f3;
    margin-bottom: 24px;
}

.pd-tab {
    background: transparent;
    border: 0;
    padding: 14px 4px;
    font-size: 15px;
    font-weight: 600;
    color: #94a3b8;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    font-family: 'Outfit', sans-serif;
}

.pd-tab.is-active {
    color: #ff5911;
    border-color: #ff5911;
}

.pd-policy-content {
    color: #475569;
    font-size: 15px;
    line-height: 1.8;
}

.pd-policy-content h1, .pd-policy-content h2, .pd-policy-content h3 {
    font-family: 'Outfit', sans-serif;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.pd-policy-content h1 { font-size: 24px; }
.pd-policy-content h2 { font-size: 20px; }
.pd-policy-content h3 { font-size: 18px; }

.pd-policy-content p { margin-bottom: 1.25rem; }

.pd-policy-content ul, .pd-policy-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.pd-policy-content li { margin-bottom: 0.5rem; }

.pd-panel-title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    color: #0b1220;
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.pd-panel-sub {
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
}

.pd-review-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.pd-review-sort {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
}

.pd-review-sort select {
    border: 1px solid #eef0f3;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 13px;
    font-family: 'Outfit', sans-serif;
    background: #fff;
    color: #0b1220;
    font-weight: 600;
    cursor: pointer;
}

.pd-review-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pd-review {
    display: flex;
    gap: 14px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f1f3f5;
}

.pd-review:last-child { border-bottom: 0; }

.pd-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.pd-review-body { flex: 1; }

.pd-review-name {
    font-size: 14px;
    font-weight: 700;
    color: #0b1220;
    margin-bottom: 2px;
}

.pd-review-stars {
    display: inline-flex;
    gap: 1px;
    margin-bottom: 8px;
}

.pd-review-stars .material-icons {
    font-size: 16px;
    color: #e5e7eb;
}

.pd-review-stars .material-icons.filled { color: #f59e0b; }

.pd-review-text {
    margin: 0 0 10px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

.pd-review-meta {
    display: flex;
    gap: 18px;
}

.pd-review-meta-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 0;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    padding: 0;
}

.pd-review-meta-btn:hover { color: #ff5911; }

.pd-review-meta-btn .material-icons-outlined { font-size: 16px; }

.pd-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 320px;
}

.pd-sidebar-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.pd-sidebar-title {
    font-size: 22px;
    font-weight: 800;
    color: #0b1220;
    margin: 0;
}

.pd-slider-nav {
    display: flex;
    gap: 8px;
}

.pd-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #eef0f3;
    background: #fff;
    color: #0b1220;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
}

.pd-nav-btn:hover {
    background: #0b1220;
    color: #fff;
    border-color: #0b1220;
}

.pd-nav-btn .material-icons,
.pd-nav-btn .material-icons-outlined { font-size: 18px; }

.pd-seller-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.pd-seller-slider::-webkit-scrollbar { display: none; }

.pd-seller-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #f1f3f5;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow .2s ease;
}

.pd-seller-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.pd-seller-img {
    position: relative;
    aspect-ratio: 0.9;
    background: #f8fafc;
}

.pd-seller-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

.pd-seller-wish {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b1220;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.pd-seller-info {
    padding: 18px 16px;
}

.pd-seller-brand {
    font-size: 13px;
    font-weight: 900;
    color: #000;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.pd-seller-name {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 800;
    color: #0b1220;
    line-height: 1.3;
}

.pd-seller-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.pd-seller-stars {
    display: flex;
    gap: 2px;
}

.pd-seller-stars .material-icons {
    font-size: 15px;
    color: #000;
}

.pd-seller-rev {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.pd-seller-btn {
    width: 100%;
    display: flex;
    padding: 0;
    background: #ff5911;
    color: #fff;
    border: 0;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
}

.pd-seller-btn span {
    padding: 14px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-seller-btn span:first-child {
    flex: 1.2;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.pd-seller-btn .pd-seller-price {
    flex: 1;
    background: rgba(0,0,0,0.05);
}

.pd-rating-card {
    background: #fff;
    border: 1px solid #f1f3f5;
    border-radius: 12px;
    padding: 24px;
}

.pd-rating-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

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

.pd-rating-stars .material-icons {
    font-size: 26px;
    color: #f59e0b;
}

.pd-rating-score {
    font-size: 32px;
    font-weight: 800;
    color: #0b1220;
    letter-spacing: -1px;
    font-family: 'Outfit', sans-serif;
}

.pd-rating-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pd-rating-bar {
    display: grid;
    grid-template-columns: 16px 1fr 40px;
    align-items: center;
    gap: 12px;
}

.pd-rating-num {
    font-size: 13px;
    font-weight: 700;
    color: #0b1220;
}

.pd-rating-track {
    height: 8px;
    background: #f1f3f5;
    border-radius: 999px;
    overflow: hidden;
    display: block;
}

.pd-rating-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #ff8a3d 0%, #ff5911 100%);
    border-radius: 999px;
}

.pd-rating-count {
    font-size: 13px;
    color: #64748b;
    text-align: right;
    font-weight: 500;
}

.pd-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

.pd-details-list li {
    padding: 10px 14px;
    background: #fafbfc;
    border: 1px solid #eef0f3;
    border-radius: 10px;
}

.pd-details-list strong { color: #0b1220; margin-right: 6px; }

.pd-empty-text { color: #94a3b8; font-size: 14px; }

@media (max-width: 980px) {
    .pd-container { padding: 16px 24px 64px; }
    .pd-main { grid-template-columns: 1fr; gap: 32px; }
    .pd-bottom { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
    .pd-container { 
        padding: 12px 16px 56px; 
        overflow-x: hidden;
        width: 100% !important;
        min-width: 0 !important;
    }
    .pd-thumbs { grid-template-columns: repeat(4, 1fr); }
    .pd-tabs { 
        gap: 16px; 
        overflow-x: auto; 
        white-space: nowrap;
        padding-bottom: 4px;
        max-width: 100%;
        -webkit-overflow-scrolling: touch;
    }
    .pd-tab { font-size: 14px; padding: 10px 0; flex-shrink: 0; }
    .pd-tab-panel {
        padding: 15px 0;
        width: 100%;
        overflow-x: hidden;
    }
    .pd-policy-content {
        font-size: 14px;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        overflow-x: hidden;
    }
    .pd-policy-content * {
        white-space: normal !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .pd-policy-content h1, .pd-policy-content h2, .pd-policy-content h3 {
        font-size: 20px !important;
        margin-top: 1.5rem !important;
        margin-bottom: 0.8rem !important;
        line-height: 1.3 !important;
    }
    .pd-policy-content p { margin-bottom: 1rem; }
    .pd-policy-content ul { padding-left: 1.2rem; }
    .pd-tab-panel {
        padding: 10px 0;
    }
}

/* ===================== LEGAL PAGES ===================== */
.legal-page {
    background: #fff;
}

/* Header — mirrors quick-order-header / contact-header pattern */
.legal-header {
    text-align: center;
    margin-top: 202px;
    padding: 0 48px 80px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.legal-pill {
    display: inline-block;
    padding: 7px 18px;
    background: #f1f5e8;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    color: #F26522;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
}

.legal-heading {
    font-size: 64px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -2px;
    line-height: 1.1;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 24px;
}

.legal-subtext {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    max-width: 560px;
    margin: 0 auto;
}

/* Body */
.legal-body {
    padding: 0 48px 120px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content-card {
    background: #fdfdfd;
    border: 1px solid #ebebeb;
    border-radius: 20px;
    padding: 64px 72px;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
}

/* Typography inside the content */
.legal-content {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.85;
    color: #4b5563;
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    margin-top: 2.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.legal-content h1 { font-size: 30px; }
.legal-content h2 { font-size: 24px; border-bottom: 1px solid #f0f0f0; padding-bottom: 10px; }
.legal-content h3 { font-size: 20px; color: #333; }
.legal-content h4 { font-size: 17px; color: #333; }

.legal-content p {
    margin-bottom: 1.25rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.6rem;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 0.55rem;
}

.legal-content a {
    color: #F26522;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content a:hover {
    color: #c44e14;
}

.legal-content strong, .legal-content b {
    color: #1a1a1a;
    font-weight: 600;
}

.legal-content hr {
    border: none;
    border-top: 1px solid #ebebeb;
    margin: 2.5rem 0;
}

.legal-content blockquote {
    border-left: 3px solid #F26522;
    padding: 12px 20px;
    margin: 1.5rem 0;
    background: #fffaf7;
    border-radius: 0 8px 8px 0;
    color: #555;
    font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
    .legal-header {
        margin-top: 160px;
        padding: 0 40px 64px;
    }
    .legal-heading { font-size: 52px; }
    .legal-body { padding: 0 40px 100px; }
    .legal-content-card { padding: 48px 52px; }
}

@media (max-width: 768px) {
    .legal-header {
        margin-top: 140px;
        padding: 0 24px 48px;
    }
    .legal-heading { font-size: 38px; letter-spacing: -1px; }
    .legal-subtext { font-size: 17px; }
    .legal-body { padding: 0 24px 80px; }
    .legal-content-card { padding: 36px 32px; border-radius: 16px; }
    .legal-content { font-size: 15px; }
    .legal-content h2 { font-size: 20px; }
}

@media (max-width: 480px) {
    .legal-heading { font-size: 30px; }
    .legal-content-card { padding: 28px 20px; }
    .legal-content h1 { font-size: 24px; }
    .legal-content h2 { font-size: 18px; }
}.pd-thumb-hidden { display: none !important; }  
#mobileSearchTrigger { display: none; }
@media (max-width: 991px) { #mobileSearchTrigger { display: flex !important; } } 

/* Search Overlay Category Dropdown */
.soc-divider {
    width: 1px;
    height: 24px;
    background: #e2e8f0;
    flex-shrink: 0;
}

.soc-cat-wrap {
    position: relative;
    flex-shrink: 0;
}

.soc-cat-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    font-family: inherit;
    white-space: nowrap;
    transition: background 0.2s;
}

.soc-cat-btn:hover {
    background: #f1f5f9;
}

.soc-chevron {
    width: 14px;
    height: 14px;
    color: #94a3b8;
    transition: transform 0.25s;
}

.soc-cat-btn.is-open .soc-chevron {
    transform: rotate(180deg);
}

.soc-cat-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    max-height: 260px;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.13);
    border: 1px solid #f1f5f9;
    padding: 6px;
    z-index: 100;
}

.soc-cat-dropdown.is-open {
    display: block;
}

.soc-cat-item {
    display: block;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.soc-cat-item:hover {
    background: #f0fdf4;
    color: #15803d;
}

.soc-cat-item.is-active {
    background: #f0fdf4;
    color: #15803d;
    font-weight: 600;
}

@media (max-width: 768px) {
    .soc-cat-btn {
        font-size: 11px;
        padding: 3px 6px;
    }
    .soc-divider {
        height: 18px;
    }
}

/* ===== Mobile Search Panel (slide from top, mobile only) ===== */
.msearch-panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3000;
    transform: translateY(-105%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.msearch-panel.is-open {
    transform: translateY(0);
}

.msearch-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.msearch-backdrop.is-open {
    opacity: 1;
}

@media (max-width: 900px) {
    .msearch-panel {
        display: block;
    }
    .msearch-backdrop {
        display: block;
    }
}

.msearch-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.msearch-icon {
    width: 20px;
    height: 20px;
    color: #94a3b8;
    flex-shrink: 0;
}

.msearch-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: #1e293b;
    background: transparent;
    font-family: inherit;
    min-width: 0;
}

.msearch-input::placeholder {
    color: #94a3b8;
}

.msearch-sep {
    width: 1px;
    height: 22px;
    background: #e2e8f0;
    flex-shrink: 0;
}

.msearch-cat-wrap {
    position: relative;
    flex-shrink: 0;
}

.msearch-cat-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
    font-family: inherit;
    transition: background 0.2s;
}

.msearch-cat-btn:hover {
    background: #f1f5f9;
}

.msearch-chevron {
    width: 13px;
    height: 13px;
    color: #94a3b8;
    transition: transform 0.25s;
}

.msearch-cat-btn.is-open .msearch-chevron {
    transform: rotate(180deg);
}

.msearch-cat-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 190px;
    max-height: 250px;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
    border: 1px solid #f1f5f9;
    padding: 6px;
    z-index: 3100;
}

.msearch-cat-dropdown.is-open {
    display: block;
}

.msearch-cat-item {
    display: block;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.msearch-cat-item:hover {
    background: #f0fdf4;
    color: #15803d;
}

.msearch-cat-item.is-active {
    background: #f0fdf4;
    color: #15803d;
    font-weight: 600;
}

.msearch-close-btn {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    color: #64748b;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.msearch-close-btn:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.msearch-close-btn svg {
    width: 20px;
    height: 20px;
}

.msearch-body {
    max-height: calc(100svh - 60px);
    overflow-y: auto;
    padding: 18px 16px;
    background: #f8fafc;
}

.msearch-section-label {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 14px;
}

.msearch-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.msearch-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    transition: all 0.2s;
}

.msearch-chip:hover {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #15803d;
}

.msearch-results {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.msearch-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #fff;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid #f1f5f9;
    transition: background 0.15s;
}

.msearch-result-item:hover {
    background: #f0fdf4;
}

.msearch-result-img {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    object-fit: contain;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.msearch-result-info {
    flex: 1;
    min-width: 0;
}

.msearch-result-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.msearch-result-price {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #0d9488;
    margin-top: 2px;
}
