/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Caveat:wght@600;700&family=Inter:wght@400;500;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    --primary: #0280f9;
    /* Sea green, matching the button colors */
    --primary-dark: #025eb5;
    /* Dark green for header/footer */
    --primary-light: #eff6ff;
    /* Light green for backgrounds */
    --text-main: #333333;
    --text-muted: #777777;
    --bg-gray: #f9fbf9;
    --border: #e0e0e0;
    --yellow: #fdd835;
    --white: #ffffff;
    --font-family: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.5;
    font-size: 14px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

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

/* Top Bar */
.top-bar {
    background-color: var(--primary);
    color: var(--white);
    font-size: 12px;
    padding: 10px 0;
    font-weight: 500;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-right div {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

/* Header Main */
.header-main {
    padding: 20px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.logo img {
    height: 60px;
    max-height: 65px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    gap: 25px;
    font-weight: 600;
    font-size: 14px;
}

.main-nav a {
    color: var(--text-main);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.header-search {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 8px 15px;
    flex: 1;
    max-width: 300px;
}

.header-search input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font-size: 13px;
    font-family: inherit;
}

.header-search button {
    background: var(--primary);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    color: var(--text-main);
}

.header-icons i {
    cursor: pointer;
}

.header-icons .cart-icon {
    position: relative;
}

.header-icons .cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--primary);
    color: white;
    font-size: 10px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #fdfdfd;
}

.hero-section img.banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
    padding-left: 5%;
}

.hero-subtitle {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}

.hero-title {
    font-size: 46px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-title span {
    color: var(--primary);
    font-style: italic;
}

.hero-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 15px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
}

.btn-outline {
    background: white;
    color: var(--text-main);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
}

.hero-features-bar {
    position: absolute;
    bottom: 30px;
    left: 5%;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.hero-features-bar .divider {
    width: 1px;
    height: 35px;
    background: #e0e0e0;
}

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

.hero-feat-item i {
    color: var(--primary);
    font-size: 24px;
}

.hero-feat-text strong {
    display: block;
    font-size: 14px;
    color: #111;
    font-weight: 700;
}

.hero-feat-text span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin: 60px 0 30px;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
    position: relative;
    display: inline-block;
}

.section-title h2::before {
    content: '🌿';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
}

/* Circular Categories Carousel */
.category-carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.category-circle-grid {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.category-circle-grid::-webkit-scrollbar {
    display: none;
}

.carousel-btn {
    position: absolute;
    top: 50px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: #555;
    transition: 0.3s;
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.cat-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.cat-circle-item:hover {
    transform: translateY(-5px);
}

.cat-circle-ring {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    padding: 3px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cat-circle-item:hover .cat-circle-ring {
    border-color: var(--primary-dark);
    box-shadow: 0 4px 14px rgba(2, 128, 249, 0.25);
}

.cat-circle-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.cat-circle-fallback {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary);
}

.cat-circle-item h3 {
    font-size: 11px;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    max-width: 110px;
    line-height: 1.3;
}

/* About Section */
.about-section {
    background: var(--primary-light);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 60px 0;
    overflow: hidden;
    position: relative;
}

.about-content {
    max-width: 450px;
}

.about-tag {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 13px;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 15px;
}

.about-list {
    margin-bottom: 30px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 14px;
}

.about-list li i {
    color: var(--primary);
    background: white;
    padding: 4px;
    border-radius: 50%;
    font-size: 10px;
}

.about-image {
    position: absolute;
    right: -50px;
    bottom: -20px;
    width: 60%;
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
    margin-bottom: 60px;
}

.feat-box {
    padding: 20px;
}

.feat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
}

.feat-box h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feat-box p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Promo Banner */
.promo-banner {
    background: var(--primary-dark);
    color: white;
    border-radius: 15px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1542838132-92c53300491e?w=800&fit=crop') center/cover;
    opacity: 0.3;
    mix-blend-mode: luminosity;
}

.promo-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.promo-text-wrap {
    max-width: 50%;
}

.promo-tag {
    color: var(--yellow);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.promo-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 5px;
}

.promo-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.promo-code {
    border: 1px dashed rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    border-radius: 6px;
    display: inline-block;
    font-size: 14px;
}

.promo-code strong {
    color: var(--yellow);
}

.btn-yellow {
    background: var(--yellow);
    color: var(--text-main);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Product Grid */
.product-slider-wrap {
    position: relative;
}

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

.prod-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: 0.3s;
}

.prod-card:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.prod-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.prod-fav {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #ccc;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
}

.prod-fav:hover {
    color: #ff4d4f;
}

.prod-img {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 20px;
}

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

.prod-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-main);
}

.prod-weight {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.prod-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.prod-price .new {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.prod-price .old {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.btn-add {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

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

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: var(--text-main);
}

.nav-arrow.left {
    left: -20px;
}

.nav-arrow.right {
    right: -20px;
}

/* Promo Banner Section */
.promo-banner-card {
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    padding: 0 4%;
    font-family: 'Poppins', sans-serif;
    background-color: #0280f9;
    /* Fallback */
}

.promo-banner-left {
    flex: 0 0 55%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.promo-banner-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.promo-banner-right {
    flex: 0 0 45%;
    padding: 60px 60px 60px 20px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.promo-tag {
    color: #fdd835;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.promo-banner-right h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.promo-banner-right p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    opacity: 0.95;
    color: white;
    max-width: 90%;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.promo-code {
    border: 1.5px dashed rgba(255, 255, 255, 0.5);
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 25px;
    color: white;
}

.btn-promo {
    background: #fdd835;
    color: #1a1a1a;
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-promo:hover {
    background: #ffe066;
    transform: translateY(-2px);
}

.btn-promo i {
    font-size: 18px;
}

/* New About Section */
@media (min-width: 769px) {
    .mobile-about-section {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .desktop-about-section {
        display: none !important;
    }
}

.new-about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 50px 0 30px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 40px 45px;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.new-about-left {
    flex: 1;
    max-width: 54%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.new-about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    color: var(--primary);
    border: 1px solid #bfdbfe;
    padding: 7px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 14px;
    width: fit-content;
}

.new-about-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.new-about-title span {
    color: var(--primary);
}

.new-about-subtitle {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
    max-width: 95%;
    font-family: 'Inter', sans-serif;
}

.new-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 25px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 10px;
}

.new-feat-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
}

.new-feat-item:nth-child(1) {
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.new-feat-item:nth-child(2) {
    border-bottom: 1px solid #e2e8f0;
}

.new-feat-item:nth-child(3) {
    border-right: 1px solid #e2e8f0;
}

.new-feat-item:nth-child(4) {
    /* clean */
}

.new-feat-icon {
    width: 44px;
    height: 44px;
    border: 1.5px solid #bfdbfe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
    background: #eff6ff;
}

.new-feat-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 3px;
}

.new-feat-text p {
    font-size: 11.5px;
    color: #64748b;
    line-height: 1.35;
    font-family: 'Inter', sans-serif;
}

.quality-box {
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
    border: 1px solid #bfdbfe;
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.quality-box-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.quality-badge {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    font-size: 17px;
    border: 2px dashed white;
    box-shadow: 0 0 0 3px var(--primary);
    margin-left: 2px;
}

.quality-text h4 {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 3px;
}

.quality-text p {
    font-size: 11.5px;
    color: #64748b;
    font-family: 'Inter', sans-serif;
    line-height: 1.35;
    max-width: 250px;
}

.quality-script {
    font-family: 'Caveat', cursive;
    font-size: 40px;
    color: var(--primary);
    transform: rotate(-6deg);
    font-weight: 700;
    padding-right: 10px;
    line-height: 1;
}

.new-about-buttons {
    display: flex;
    gap: 15px;
    font-family: 'Poppins', sans-serif;
    margin-top: 5px;
}

.btn-primary .icon-circle {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-left: 8px;
    transition: 0.3s;
}

.new-about-right {
    position: relative;
    flex: 1;
    max-width: 44%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
    border-radius: 20px;
}

.new-about-right img {
    width: 100%;
    height: auto;
    max-height: 540px;
    object-fit: contain;
    border-radius: 18px;
    transform: none;
    box-shadow: 0 10px 30px rgba(2, 128, 249, 0.08);
}

.new-stats-bar {
    background: white;
    padding: 25px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    border: 1px solid #f0f0f0;
}

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

.new-stat-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.new-stat-text h4 {
    font-size: 18px;
    font-weight: 800;
    color: #222;
    line-height: 1;
    margin-bottom: 4px;
}

.new-stat-text p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Stats Section */
.stats-section {
    background: var(--bg-gray);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 60px 0;
}

.stats-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.stats-left img {
    height: 80px;
}

.stats-left h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    max-width: 250px;
}

.stats-left p {
    font-size: 13px;
    color: var(--text-muted);
}

.stats-numbers {
    display: flex;
    gap: 50px;
    flex: 2;
    justify-content: center;
}

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

.stat-box h4 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Footer */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-logo img {
    height: 40px;
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: white;
}

.contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contact-list i {
    margin-top: 4px;
    color: var(--primary);
}

.newsletter-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    padding: 5px;
    margin-top: 15px;
}

.newsletter-box input {
    background: transparent;
    border: none;
    color: white;
    padding: 10px;
    outline: none;
    width: 100%;
}

.newsletter-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-box button {
    background: var(--primary);
    border: none;
    color: white;
    width: 40px;
    border-radius: 4px;
    cursor: pointer;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

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

.social-icons a:hover {
    background: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icons span {
    background: white;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.payment-icons img {
    height: 16px;
}

/* =========================================
   CUSTOMER LOGIN PAGE (.auth-page)
   ========================================= */
.auth-page {
    background: linear-gradient(135deg, #fdfdfd 0%, #eef7ee 100%);
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
}

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

.auth-logo {
    color: #0280f9;
    font-size: 26px;
    font-weight: 800;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-leaf-logo {
    position: absolute;
    top: -5px;
    right: -18px;
    font-size: 16px;
    transform: rotate(45deg);
}

.auth-header-right {
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.auth-header-right a {
    color: #0280f9;
    text-decoration: none;
    font-weight: 700;
}

.auth-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    flex: 1;
    padding: 20px 20px 30px;
    box-sizing: border-box;
}

.auth-left {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 2;
}

.auth-card {
    background: #fff;
    width: 100%;
    max-width: 480px;
    padding: 35px 38px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    position: relative;
    box-sizing: border-box;
}

.auth-card-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.auth-card-header p {
    font-size: 14px;
    color: #666;
    margin: 0 0 25px 0;
}

.auth-form-group {
    margin-bottom: 18px;
}

.auth-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.auth-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-icon {
    position: absolute;
    left: 18px;
    color: #0280f9;
    font-size: 16px;
}

.auth-input-wrapper input {
    width: 100%;
    padding: 15px 18px 15px 48px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-input-wrapper input:focus {
    border-color: #0280f9;
    box-shadow: 0 0 0 3px rgba(11, 122, 36, 0.1);
}

.auth-input-wrapper input:-webkit-autofill,
.auth-input-wrapper input:-webkit-autofill:hover,
.auth-input-wrapper input:-webkit-autofill:focus,
.auth-input-wrapper input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #1a1a1a !important;
    transition: background-color 5000s ease-in-out 0s;
}

.auth-eye-icon {
    position: absolute;
    right: 18px;
    color: #888;
    cursor: pointer;
    font-size: 16px;
}

.auth-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.auth-remember {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    gap: 8px;
}

.auth-remember input[type="checkbox"] {
    accent-color: #0280f9;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.auth-forgot {
    font-size: 13px;
    color: #0280f9;
    font-weight: 700;
    text-decoration: none;
}

.auth-btn-main {
    width: 100%;
    background: #0280f9;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(2, 128, 249, 0.3);
}

.auth-btn-main:hover {
    background: #025eb5;
    box-shadow: 0 6px 20px rgba(2, 128, 249, 0.45);
    transform: translateY(-1px);
}

.auth-divider {
    text-align: center;
    margin: 25px 0 15px;
    position: relative;
}

.auth-divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #eee;
    z-index: 1;
}

.auth-divider span {
    background: #fff;
    padding: 0 15px;
    font-size: 11px;
    color: #999;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.auth-divider-text {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.auth-social-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.auth-btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    transition: background 0.2s;
}

.auth-btn-social:hover {
    background: #f9f9f9;
}

.auth-btn-social img {
    width: 18px;
}

.auth-footer-links {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.auth-footer-links a {
    color: #0280f9;
    text-decoration: none;
}

.auth-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
    width: 100%;
    z-index: 1;
}

.auth-right-subtitle {
    font-size: 24px;
    font-weight: 800;
    color: #0280f9;
    margin: 0 0 6px 0;
}

.auth-right-title {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.auth-right-text p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.auth-basket-img {
    margin-top: 15px;
    width: 100%;
    max-width: 520px;
    max-height: 380px;
    object-fit: contain;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

/* Floating leaves */
.auth-floating-leaf {
    position: absolute;
    color: #72b944;
    z-index: 0;
}

.leaf-1 {
    top: 10%;
    left: 20%;
    font-size: 35px;
    transform: rotate(-20deg);
    filter: blur(1px);
    opacity: 0.6;
}

.leaf-2 {
    top: 40%;
    right: 5%;
    font-size: 45px;
    transform: rotate(45deg);
    filter: blur(2.5px);
    opacity: 0.5;
}

.leaf-3 {
    bottom: 25%;
    left: 0;
    font-size: 30px;
    transform: rotate(70deg);
    filter: blur(0.5px);
    opacity: 0.8;
}

/* Bottom Features */
.auth-features-bar {
    background: #fff;
    max-width: 1200px;
    width: calc(100% - 40px);
    margin: 0 auto 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 3;
}

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

.auth-feature-icon-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #eaf5ea;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0280f9;
    font-size: 18px;
}

.auth-feature-text h4 {
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 2px 0;
}

.auth-feature-text p {
    font-size: 13px;
    font-weight: 500;
    color: #888;
    margin: 0;
}

.auth-feature-divider {
    height: 40px;
    width: 1px;
    background: #eee;
}

/* Mobile Adjustments for Auth Page */
@media (max-width: 992px) {
    .auth-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .auth-right {
        padding-left: 0;
        text-align: center;
        align-items: center;
    }

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

    .auth-basket-img {
        margin: 15px auto;
    }

    .auth-features-bar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px 10px;
        padding: 25px;
    }

    .auth-feature-divider {
        display: none;
    }

    .auth-feature-item {
        width: 48%;
        justify-content: flex-start;
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .auth-header {
        padding: 15px 20px;
    }

    .auth-feature-item {
        width: 48%;
        gap: 10px;
        padding-left: 0;
    }

    .auth-feature-icon-wrapper {
        width: 35px;
        height: 35px;
        font-size: 15px;
    }

    .auth-feature-text h4 {
        font-size: 13px;
    }

    .auth-feature-text p {
        font-size: 11px;
    }

    .auth-basket-img {
        max-width: 100%;
    }
}

/* =========================================
   MOBILE RESPONSIVENESS (Max Width: 768px)
   ========================================= */
.mobile-bottom-nav {
    display: none;
}

/* Mobile-specific elements hidden on desktop */
.mobile-menu-toggle,
.search-icon-left,
.mobile-banner-img,
.promo-mobile-img {
    display: none;
}

.category-section {
    padding: 0 4%;
}

/* Best Selling Products Section */
.bsp-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    position: relative;
    padding: 0 10px;
}

.bsp-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.bsp-leaf-icon {
    color: #0280f9;
    font-size: 18px;
    margin-bottom: 5px;
}

.bsp-title-wrapper h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.bsp-view-all {
    color: #0280f9;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    margin-left: auto;
    /* Push to right since title is absolute */
    display: flex;
    align-items: center;
}

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

.bsp-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Inter', sans-serif;
    /* Mockup looks cleaner, like Inter */
}

.bsp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.bsp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.bsp-badge {
    background: #0280f9;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.bsp-fav {
    color: #94a3b8;
    font-size: 18px;
    cursor: pointer;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    border: none;
    outline: none;
    z-index: 10;
}

.bsp-fav:hover {
    color: #e11d48;
    background: #fff1f2;
    transform: scale(1.15);
}

.bsp-fav.active i,
.bsp-fav i.fa-solid {
    color: #e11d48 !important;
}

.bsp-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

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

.bsp-weight-add {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.bsp-weight-text {
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 700;
}

.bsp-add-btn {
    border: 1px solid #0280f9;
    background: transparent;
    color: #0280f9;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.bsp-add-btn:hover {
    background: #0280f9;
    color: white;
}

.bsp-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bsp-sub-text {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
}

.bsp-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 15px;
}

.bsp-price-new {
    color: #0280f9;
    font-size: 18px;
    font-weight: 800;
}

.bsp-price-old {
    color: #999;
    font-size: 13px;
    text-decoration: line-through;
    font-weight: 500;
}

.bsp-meta-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.bsp-meta-row span {
    font-size: 13px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.bsp-category-btn {
    width: 100%;
    background: #eaf5ea;
    color: #0280f9;
    border: none;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-top: auto;
    /* Push to bottom of card */
}

.bsp-view-all-btn {
    background: #08611c;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .bsp-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .bsp-title-wrapper h2 {
        font-size: 20px;
    }

    .bsp-section-header {
        align-items: center;
        margin-bottom: 20px;
    }

    .bsp-title-wrapper {
        position: static;
        transform: none;
        align-items: flex-start;
    }

    .bsp-view-all {
        margin-left: 0;
    }

    .bsp-img {
        height: 120px;
    }
}

@media (max-width: 768px) {

    /* New About Section Mobile */
    .new-about-section {
        background: transparent !important;
        padding: 0 15px !important;
        margin: 20px 0 80px 0 !important;
        /* space for bottom nav */
        display: flex;
        flex-direction: column;
    }

    .about-mobile-top-card {
        width: 100% !important;
        max-width: 100% !important;
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 20px !important;
        padding: 20px 14px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: relative;
        overflow: hidden !important;
        margin-bottom: 20px !important;
        gap: 12px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
    }

    .about-text-content {
        flex: 1 1 54% !important;
        width: 54% !important;
        max-width: 55% !important;
        z-index: 2;
        padding-bottom: 0 !important;
    }

    .new-about-tag {
        font-size: 8.5px !important;
        padding: 4px 10px !important;
        margin-bottom: 8px !important;
        white-space: nowrap;
    }

    .new-about-title {
        font-size: 16px !important;
        line-height: 1.25 !important;
        margin-bottom: 6px !important;
    }

    .new-about-subtitle {
        font-size: 10px !important;
        line-height: 1.35 !important;
        margin-bottom: 10px !important;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .new-about-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
        align-items: flex-start !important;
        margin-top: 5px !important;
    }

    .new-about-buttons a,
    .new-about-buttons .btn-primary,
    .new-about-buttons .btn-outline {
        padding: 6px 12px !important;
        font-size: 9.5px !important;
        border-radius: 20px !important;
        text-align: center;
        width: fit-content !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 5px !important;
    }

    .mobile-about-section .new-about-right {
        position: relative !important;
        flex: 1 1 44% !important;
        width: 44% !important;
        max-width: 46% !important;
        height: auto !important;
        transform: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 1;
        border-radius: 12px !important;
        margin: 0 !important;
    }

    .mobile-about-section .new-about-right img {
        width: 100% !important;
        height: auto !important;
        max-height: 220px !important;
        object-fit: contain !important;
        object-position: center !important;
        transform: none !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 12px rgba(2, 128, 249, 0.08) !important;
    }

    .new-about-features {
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px !important;
        background: white;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        margin: 0 0 15px 0 !important;
    }

    .new-feat-item {
        padding: 15px 5px !important;
        gap: 12px !important;
    }

    .new-feat-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
        border-radius: 10px !important;
    }

    .new-feat-text h4 {
        font-size: 14px !important;
    }

    .new-feat-text p {
        font-size: 11px !important;
        line-height: 1.3 !important;
    }

    .quality-box {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 20px 0 !important;
        padding: 20px 15px !important;
        flex-direction: row !important;
    }

    .quality-box-left {
        gap: 15px !important;
    }

    .quality-badge {
        width: 50px !important;
        height: 50px !important;
        font-size: 16px !important;
    }

    .quality-text h4 {
        font-size: 15px !important;
    }

    .quality-text p {
        font-size: 11px !important;
        line-height: 1.3 !important;
    }

    .quality-script {
        font-size: 32px !important;
    }

    /* Mobile Bottom Nav */
    .mobile-bottom-nav {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        justify-content: space-around;
        padding: 10px 0;
        border-top: 1px solid #eee;
    }

    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #888;
        font-size: 10px;
        gap: 4px;
        position: relative;
    }

    .nav-item i {
        font-size: 18px;
    }

    .nav-item.active {
        color: #0280f9;
    }

    .nav-cart-badge {
        position: absolute;
        top: -5px;
        right: 10px;
        background: #0280f9;
        color: white;
        font-size: 8px;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }

    /* Mobile Category Circles (2 Rows) */
    .category-carousel-wrapper {
        padding: 0 35px;
        /* Space for smaller arrows */
    }

    .carousel-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
        top: 50%;
        /* Center vertically between both rows */
        transform: translateY(-50%);
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }

    .category-circle-grid {
        display: grid;
        grid-template-rows: 1fr 1fr;
        /* 2 Rows */
        grid-auto-flow: column;
        /* Flow horizontally */
        grid-auto-columns: calc((100vw - 70px - 36px) / 4);
        /* Exactly 4 columns visible */
        gap: 20px 12px;
        /* row-gap, col-gap */
        overflow-x: auto;
        padding-bottom: 5px;
        /* Prevent scrollbar clipping */
    }

    .cat-circle-item {
        width: 100%;
        min-width: 0;
        margin: 0;
    }

    .cat-circle-ring {
        width: 100%;
        max-width: 75px;
        height: auto;
        aspect-ratio: 1;
        border-width: 1.5px;
        padding: 2px;
        margin: 0 auto 8px auto;
        /* Center the ring */
    }

    .cat-circle-item h3 {
        font-size: 8.5px;
    }

    /* Hide Desktop Elements */
    .top-bar-right,
    .main-nav,
    .banner-bg,
    .hero-content,
    .promo-banner-card {
        display: none !important;
    }

    .category-section {
        padding: 0 !important;
    }

    /* Promo Section Mobile Styling */
    .promo-section {
        padding: 0 !important;
        margin: 30px 0 !important;
    }

    .promo-mobile-img {
        display: block !important;
        width: 100%;
        border-radius: 0 !important;
        /* Force no rounded corners */
        box-shadow: none !important;
        /* Remove shadow for flat full-width look */
        border: none !important;
        object-fit: cover;
    }

    /* Top Bar */
    .top-bar {
        padding: 8px 10px;
        text-align: center;
        background: #0280f9;
    }

    .top-bar .container {
        justify-content: center;
    }

    .top-bar-left {
        font-size: 11px;
        width: 100%;
        text-align: center;
        font-weight: 600;
    }

    /* Header Main */
    .header-main {
        padding: 12px 0;
    }

    .header-main .container {
        display: grid !important;
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        gap: 15px;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: block !important;
        font-size: 22px;
        color: #333;
        grid-column: 1;
        grid-row: 1;
    }

    .logo {
        grid-column: 2;
        grid-row: 1;
        justify-content: center;
        margin: 0;
        width: 100%;
    }

    .logo i {
        font-size: 24px !important;
    }

    .logo strong {
        font-size: 16px !important;
    }

    .header-icons {
        grid-column: 3;
        grid-row: 1;
        width: auto;
        justify-content: flex-end;
    }

    /* Search Bar drops to next line */
    .header-search {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        max-width: 100%;
        margin: 0;
        position: relative;
    }

    .header-search input {
        border-radius: 8px;
        border: 1px solid #e0e0e0;
        padding: 12px 15px 12px 40px;
        background: #fdfdfd;
        font-size: 13px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        width: 100%;
    }

    .search-icon-left {
        display: block !important;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #888;
        z-index: 2;
        font-size: 15px;
    }

    .header-search button {
        border-radius: 6px;
        padding: 0 15px;
        position: absolute;
        right: 4px;
        top: 4px;
        bottom: 4px;
        height: auto;
    }

    /* Hero Section */
    .hero-section {
        height: auto;
        padding: 15px;
        /* Consistent outer padding */
        background: #fff;
        margin-top: 0;
        display: block;
    }

    .hero-section .container {
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
    }

    .mobile-banner-img {
        display: block !important;
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        margin: 0 0 15px 0;
        object-fit: cover;
    }

    /* Hero Features Bar */
    .hero-features-bar {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 6px;
        border-radius: 12px;
        border: 1px solid #f0f0f0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        background: white;
    }

    .hero-feat-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 5px;
        flex: 1 1 0;
        /* Ensures absolute equal distribution */
        min-width: 0;
    }

    .hero-feat-item i {
        font-size: 15px;
        color: #0280f9;
        flex-shrink: 0;
    }

    .hero-feat-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        overflow: hidden;
    }

    .hero-feat-text strong {
        font-size: 9.5px;
        color: #1a1a1a;
        line-height: 1.2;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        max-width: 100%;
    }

    .hero-feat-text span {
        font-size: 7.5px;
        color: #666;
        line-height: 1.2;
        margin-top: 1px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        max-width: 100%;
    }

    .hero-features-bar .divider {
        height: 25px;
        width: 1px;
        background: #e8e8e8;
        margin: 0 2px;
        flex-shrink: 0;
    }

    /* Stats Section Mobile */
    .stats-section {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .stats-left {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .stats-numbers {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .stat-box {
        width: 45%;
    }
}

/* Universal Page Back Button */
.btn-page-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #334155;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.btn-page-back:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0280f9;
    transform: translateX(-2px);
}

/* My Account Header Pill Button */
.my-account-pill {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    border: 1px solid #ddd !important;
    padding: 7px 16px !important;
    border-radius: 25px !important;
    color: #1a1a1a !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    background: #fff !important;
    transition: 0.2s !important;
    line-height: 1 !important;
}

.my-account-pill:hover {
    border-color: #0280f9 !important;
    color: #0280f9 !important;
    background: #f9fdfa !important;
}

/* Best Selling Products Base Styling */
.bsp-section-wrapper {
    overflow: visible !important;
}

.bsp-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 14px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.bsp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(2, 128, 249, 0.08);
    border-color: #bfdbfe;
}

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

.bsp-badge {
    background: #0280f9;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    line-height: 1;
    letter-spacing: 0.2px;
}

.bsp-fav {
    color: #94a3b8;
    font-size: 15px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    outline: none;
    z-index: 5;
}

.bsp-fav:hover {
    color: #e11d48;
    background: #fff1f2;
    border-color: #fecdd3;
    transform: scale(1.1);
}

.bsp-fav.active i,
.bsp-fav i.fa-solid {
    color: #e11d48 !important;
}

.bsp-img {
    height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 6px;
}

.bsp-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.bsp-weight-add {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.bsp-weight-text {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

.bsp-add-btn {
    border: 1.5px solid #0280f9;
    background: #eff6ff;
    color: #0280f9;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.bsp-add-btn:hover {
    background: #0280f9;
    color: #ffffff;
}

.bsp-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin: 4px 0 8px;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s;
}

.bsp-card:hover .bsp-title {
    color: #0280f9;
}

.bsp-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
}

.bsp-price-new {
    font-size: 16px;
    font-weight: 900;
    color: #0280f9;
}

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

.bsp-meta-row {
    margin-top: auto;
    border-top: 1px dashed #f1f5f9;
    padding-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

/* Mobile & Tablet Product Cards & Grid Optimization */
@media (max-width: 768px) {
    .bsp-section-wrapper {
        margin: 25px auto 40px !important;
        padding: 0 12px !important;
    }

    .bsp-section-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        margin-bottom: 16px !important;
        gap: 10px !important;
    }

    .bsp-header-left {
        flex: 1;
    }

    .bsp-top-pill {
        font-size: 9.5px !important;
        padding: 3px 8px !important;
        margin-bottom: 4px !important;
    }

    .bsp-section-title {
        font-size: 20px !important;
        line-height: 1.25 !important;
    }

    .bsp-section-subtitle {
        font-size: 12px !important;
        margin-top: 2px !important;
    }

    .bsp-view-all-btn {
        font-size: 11px !important;
        padding: 5px 12px !important;
        border-radius: 16px !important;
        margin-top: 2px;
    }

    .bsp-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .bsp-card {
        padding: 10px !important;
        border-radius: 12px !important;
    }

    .bsp-header {
        margin-bottom: 4px !important;
    }

    .bsp-badge {
        font-size: 9px !important;
        padding: 2px 6px !important;
        border-radius: 4px !important;
    }

    .bsp-fav {
        width: 28px !important;
        height: 28px !important;
        font-size: 12px !important;
    }

    .bsp-img {
        height: 110px !important;
        margin-bottom: 6px !important;
        padding: 4px !important;
    }

    .bsp-weight-add {
        margin-bottom: 4px !important;
    }

    .bsp-weight-text {
        font-size: 11px !important;
    }

    .bsp-add-btn {
        font-size: 10.5px !important;
        padding: 3px 10px !important;
        border-radius: 5px !important;
    }

    .bsp-title {
        font-size: 12px !important;
        line-height: 1.3 !important;
        margin: 4px 0 6px !important;
        height: 32px !important;
        -webkit-line-clamp: 2 !important;
    }

    .bsp-price-row {
        margin-bottom: 6px !important;
        gap: 5px !important;
    }

    .bsp-price-new {
        font-size: 14px !important;
    }

    .bsp-price-old {
        font-size: 10.5px !important;
    }

    .bsp-meta-row {
        font-size: 9.5px !important;
        padding-top: 6px !important;
        gap: 4px !important;
    }
}