/* ==========================================
   1. HOME PAGE SPECIFIC STYLES
   ========================================== */

.home-hero {
    padding: 6rem 0;
    position: relative;
    background: url('../images/hero_banner.png') no-repeat center center;
    background-size: cover;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.45);
    z-index: 1;
}

.home-hero > * {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.home-hero .hero-image-container {
    display: none !important;
}

.home-hero .hero-content {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 580px;
    box-shadow: var(--shadow-lg);
}

/* Futuristic Hero Banner Styling */
.home-hero-futuristic {
    width: calc(100% - 4rem);
    max-width: calc(var(--container-width) - 4rem);
    margin: 2rem auto;
    border-radius: 36px;
    border: 4px solid #ffffff;
    background: linear-gradient(135deg, #E2EDF8 0%, #EEF4FA 50%, #F5F9FD 100%);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
    min-height: 720px;
    display: flex;
    align-items: center;
}

.home-hero-futuristic .container {
    max-width: 100%;
    width: 100%;
    padding: 8.5rem 3.5rem 3.5rem 3.5rem;
    margin: 0;
}

.hero-grid-futuristic {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.hero-content-futuristic {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Futuristic Integrated Header */
.main-header.header-futuristic {
    background-color: transparent;
    border-bottom: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
}

.header-container-futuristic {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3.5rem 0.5rem 3.5rem;
    width: 100%;
    position: relative;
}

.logo-link-futuristic {
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.logo-link-futuristic svg {
    color: var(--text-dark);
}

.nav-menu-futuristic {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.4rem 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    gap: 0.2rem;
}

.nav-link-futuristic {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 550;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-normal);
}

.nav-link-futuristic:hover {
    color: var(--text-light);
}

.nav-link-futuristic.active {
    background-color: var(--white);
    color: var(--text-dark);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}

.menu-toggle-futuristic {
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 90px;
    background-color: var(--white);
    border: none;
    border-radius: 0;
    border-bottom-left-radius: 24px;
    border-top-right-radius: 32px; /* matches inner card radius (36px - 4px) */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
    transition: var(--transition-normal);
}

.menu-toggle-futuristic::before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 24px;
    height: 24px;
    background: transparent;
    border-bottom-left-radius: 24px;
    box-shadow: 12px -12px 0 12px #ffffff;
    pointer-events: none;
}

.menu-toggle-futuristic::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    width: 24px;
    height: 24px;
    background: transparent;
    border-bottom-left-radius: 24px;
    box-shadow: 12px -12px 0 12px #ffffff;
    pointer-events: none;
}

.menu-toggle-futuristic span {
    display: block;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.menu-toggle-futuristic span:nth-child(1) {
    width: 20px;
}

.menu-toggle-futuristic span:nth-child(2) {
    width: 14px;
    margin-left: 6px;
}

.heading-switch-row {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    vertical-align: middle;
}

.mini-switch-bracket {
    font-family: monospace;
    font-size: 1.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.mini-switch {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #FFF;
    border: 1.5px solid var(--border-medium);
    position: relative;
    box-shadow: var(--shadow-sm);
    vertical-align: middle;
}

.mini-switch::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mini-switch.switch-orange::after { background-color: #FF6B00; }
.mini-switch.switch-purple::after { background-color: #7000FF; }
.mini-switch.switch-grey::after { background-color: #8C8C8C; }
.mini-switch.switch-blue::after { background-color: #0088FF; }
.mini-switch.switch-pink::after { background-color: #FF007A; }

.title-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.6);
    border: 1.5px solid var(--border-medium);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    vertical-align: middle;
    margin-left: 0.8rem;
    line-height: 1;
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #0055FF;
}

.pill-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tab-thumb-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    overflow: hidden;
}

.tab-machine-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Title & Description */
.hero-title-futuristic {
    font-family: var(--font-sans);
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-light);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-title-futuristic .highlight-text {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-desc-futuristic {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

/* Futuristic Buttons */
.hero-btns-futuristic {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.btn-buy-now {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--text-light);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
}

.btn-buy-now:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 111, 125, 0.25);
}

.arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.btn-buy-now:hover .arrow-circle {
    background-color: rgba(255, 255, 255, 0.25);
}

.btn-explore-more {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    border: 1.5px solid var(--border-medium);
    color: var(--text-light);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
}

.btn-explore-more:hover {
    border-color: var(--text-light);
    background-color: rgba(15, 23, 42, 0.03);
    transform: translateY(-2px);
}

/* Bottom Left Globe Badge */
.hero-left-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    width: 100%;
    max-width: 450px;
}

.globe-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(15, 23, 42, 0.03);
    color: var(--text-muted);
    border: 1.5px solid var(--border-light);
}

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

.badge-text strong {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
}

.badge-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Right Column Visual container */
.hero-visual-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hero-main-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 2.5rem;
}

.hero-main-machine {
    max-height: 380px;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.12));
    animation: float 6s ease-in-out infinite;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Floating Glass Cards */
.floating-glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    z-index: 3;
    animation: float-slow 8s ease-in-out infinite;
}

.floating-glass-card.card-top-right {
    top: 2rem;
    right: 10%;
    animation-delay: 0.5s;
}

.floating-glass-card.card-bottom-left {
    bottom: 2rem;
    left: 10%;
    animation-delay: 1.5s;
}

.card-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.card-number-rating {
    color: var(--gold) !important;
}

.card-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
}

/* Bottom Tabs Panel */
.hero-bottom-tabs {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 0;
    z-index: 1000;
    background: transparent;
    padding: 0;
    margin: 0;
    align-items: flex-end;
}

.bottom-tab-card {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: none;
    border-right: none;
    border-radius: 20px 20px 0 0;
    padding: 1.1rem 1.6rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 170px;
    box-sizing: border-box;
}

.bottom-tab-card:last-child {
    border-right: none;
    border-top-right-radius: 0;
}

.bottom-tab-card:not(.active):hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.bottom-tab-card.active {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    padding: 1.5rem 1.8rem;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.04);
    z-index: 5;
    transform: none;
}

/* Concave Left Corner for Active Tab */
.bottom-tab-card.active::before {
    content: '';
    position: absolute;
    right: 100%;
    bottom: 0;
    width: 24px;
    height: 24px;
    background: transparent;
    border-top-left-radius: 24px;
    box-shadow: 12px 12px 0 12px #ffffff;
    pointer-events: none;
    z-index: 10;
}

/* Concave Right Corner for Active Tab */
.bottom-tab-card.active::after {
    content: '';
    position: absolute;
    left: 100%;
    bottom: 0;
    width: 24px;
    height: 24px;
    background: transparent;
    border-top-right-radius: 24px;
    box-shadow: -12px 12px 0 12px #ffffff;
    pointer-events: none;
    z-index: 10;
}

/* Thumbnail Animations */
.tab-thumb-wrapper {
    width: 0;
    height: 36px;
    opacity: 0;
    overflow: hidden;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin-right 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.03);
}

.bottom-tab-card.active .tab-thumb-wrapper {
    width: 36px;
    opacity: 1;
    margin-right: 0.2rem;
}

.tab-machine-thumb {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Dot grid icon on tabs */
.tab-dot-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    grid-template-columns: repeat(2, 4px);
    gap: 3px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.bottom-tab-card.active .tab-dot-icon {
    opacity: 0.6;
}

.tab-dot-icon span {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--text-dark);
}

.tab-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tab-info strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
}

.tab-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.2;
}

.hero-sub {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-container img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    padding: 3rem 2rem;
    background-color: var(--navy-dark);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.feature-card {
    text-align: center;
    padding: 1rem;
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem auto;
}

.feature-icon-wrapper svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Product Cards Grid & Design */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.section-title-wrapper h2 {
    font-size: 2.2rem;
    margin-top: 0.5rem;
}

.section-subtitle {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.view-all-link {
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-medium);
    box-shadow: var(--shadow-md);
}

.product-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    z-index: 5;
}

.tag-bestseller { background-color: var(--primary); color: var(--white); }
.tag-new { background-color: var(--green); color: var(--white); }
.tag-popular { background-color: var(--gold); color: var(--white); }
.tag-save { background-color: #6366F1; color: var(--white); }

.product-img-wrapper {
    background-color: var(--navy-medium);
    aspect-ratio: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.product-img-wrapper img {
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition-normal);
}

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

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--text-light);
}

.product-category {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.product-price-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    margin-top: auto;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.product-old-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.95rem;
}

.btn-add-cart {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-medium);
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

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

.btn-add-cart svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1.5rem;
}

.category-card {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem 1rem;
    text-align: center;
    transition: var(--transition-normal);
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 111, 125, 0.15);
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--navy-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.category-icon span {
    font-size: 2rem;
}

.category-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Business Segment Grid */
.business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.business-card {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    padding: 2.5rem 1.5rem;
    transition: var(--transition-normal);
}

.business-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-medium);
}

.business-img-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem auto;
    border: 3px solid var(--primary-light);
}

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

.business-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.business-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Compare Row Layout */
.comparison-teaser-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: center;
}

.compare-box {
    background-color: var(--white);
    color: var(--text-dark);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.compare-badge-float {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    transform: rotate(5deg);
}

.compare-table-compact {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    font-size: 0.85rem;
}

.compare-table-compact th {
    font-weight: 600;
    text-align: center;
    padding: 0.8rem 0.5rem;
    border-bottom: 2px solid #E2E8F0;
}

.compare-table-compact td {
    padding: 0.8rem 0.5rem;
    border-bottom: 1px solid #E2E8F0;
    text-align: center;
}

.compare-table-compact td:first-child {
    font-weight: 600;
    text-align: left;
    color: #475569;
}

/* Testimonial slider */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    transition: var(--transition-normal);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.333rem);
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
}

.testimonial-quote-icon {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: var(--font-serif);
}

.testimonial-body {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--navy-light);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.testimonial-user h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.testimonial-user p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    gap: 1rem;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.slider-arrow svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Recipes Grid */
.recipes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.recipe-card {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.recipe-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-medium);
}

.recipe-img-wrapper {
    aspect-ratio: 1.5;
    overflow: hidden;
    background-color: var(--navy-medium);
}

.recipe-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.recipe-content {
    padding: 1.5rem;
}

.recipe-tag-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 700;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.recipe-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.recipe-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Newsletter banner block */
.newsletter-banner {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-darkest) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
}

.newsletter-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.newsletter-form input {
    flex-grow: 1;
    background-color: var(--navy-medium);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 0.85rem 1.5rem;
    color: var(--text-light);
    font-family: var(--font-sans);
}

.newsletter-form input:focus {
    border-color: var(--primary);
    outline: none;
}

.newsletter-perks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.perk-item svg {
    width: 14px;
    height: 14px;
    fill: var(--primary);
}

.newsletter-image img {
    animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* ==========================================
   2. ABOUT PAGE SPECIFIC STYLES
   ========================================== */

.about-founder-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
    align-items: center;
}

.founder-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.founder-quote-card {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    padding: 2rem;
    border-radius: var(--radius-md);
    max-width: 320px;
    box-shadow: var(--shadow-lg);
}

.founder-quote-card h4 {
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.founder-quote-card p {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.founder-signature {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
}

.about-beginning h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-beginning p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.signature-mia {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-style: italic;
    margin-top: 2rem;
    color: var(--primary);
}

/* Timeline Layout */
.timeline-container {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--border-medium), var(--border-medium) 8px, transparent 8px, transparent 16px);
    z-index: 1;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

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

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--navy-dark);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 1.25rem;
    box-shadow: 0 0 15px rgba(255, 111, 125, 0.2);
}

.timeline-node h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.timeline-node h5 {
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 0.6rem;
}

.timeline-node p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    text-align: center;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 3rem 0;
}

.stat-item h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Sustainability split */
.sustainability-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
}

.sustainability-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.eco-badge-float {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background-color: var(--green);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    text-transform: uppercase;
}

.sustainability-checklist {
    list-style: none;
    margin: 1.5rem 0 2.5rem 0;
}

.sustainability-checklist li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.sustainability-checklist svg {
    width: 16px;
    height: 16px;
    fill: var(--green);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.team-card {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    padding: 2rem 1rem;
    transition: var(--transition-normal);
}

.team-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.team-avatar-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.2rem auto;
    border: 2px solid var(--border-medium);
}

.team-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.team-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.team-socials a {
    color: var(--text-muted);
}

.team-socials a:hover {
    color: var(--primary);
}

.team-socials svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Instagram Grid */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background-color: var(--navy-light);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.instagram-item:hover img {
    transform: scale(1.05);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 111, 125, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-fast);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}


/* ==========================================
   3. SHOP PAGE SPECIFIC STYLES
   ========================================== */

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

/* Sidebar Filters */
.shop-sidebar {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: fit-content;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1rem;
}

.sidebar-header h3 {
    font-size: 1.15rem;
}

.clear-all-filters {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--white);
}

/* Checkbox inputs list */
.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    user-select: none;
}

.checkbox-label input {
    margin-right: 0.8rem;
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

.checkbox-label span {
    margin-left: auto;
    font-size: 0.75rem;
    opacity: 0.6;
}

/* Price range styling */
.price-range-inputs {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.price-input-box {
    background-color: var(--navy-medium);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.6rem;
    color: var(--text-light);
    font-size: 0.85rem;
    width: 100%;
}

.sidebar-cta {
    background-color: var(--navy-medium);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
    border: 1px solid var(--border-light);
}

.sidebar-cta h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.sidebar-cta p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.sidebar-cta img {
    margin: 1.2rem auto 0 auto;
    max-height: 80px;
}

/* Shop Controls */
.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.sort-select-wrapper select {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 0.5rem 1.5rem;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
}

.sort-select-wrapper select:focus {
    border-color: var(--primary);
}

.load-more-container {
    text-align: center;
    margin-top: 4rem;
}

/* Bundle promo card */
.bundle-promo-banner {
    background: linear-gradient(135deg, var(--white) 0%, #FFF5F6 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    margin-bottom: 5rem;
}

.bundle-promo-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.bundle-list {
    list-style: none;
    margin: 1.5rem 0 2.5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.bundle-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
}

.bundle-list svg {
    width: 14px;
    height: 14px;
    fill: var(--primary);
}

.bundle-price-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.bundle-prices h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.bundle-prices .price-now {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
}

.bundle-prices .price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.25rem;
}


/* ==========================================
   4. PRODUCT DETAIL PAGE SPECIFIC STYLES
   ========================================== */

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
}

/* Media Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image-display {
    background-color: var(--navy-medium);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    aspect-ratio: 1.1;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.main-image-display img {
    max-height: 100%;
    object-fit: contain;
}

.gallery-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.gallery-nav-arrow:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.gallery-arrow-prev { left: 1.5rem; }
.gallery-arrow-next { right: 1.5rem; }

.thumbnail-track {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.thumbnail-item {
    aspect-ratio: 1;
    width: calc(20% - 0.8rem);
    background-color: var(--navy-medium);
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border-light);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.thumbnail-item.active {
    border-color: var(--primary);
}

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

.thumbnail-item.overlay-more {
    position: relative;
}

.thumbnail-item.overlay-more::after {
    content: '+5';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}

/* Variant selectors */
.variant-group {
    margin-bottom: 2rem;
}

.variant-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.variant-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.variant-btn {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-family: var(--font-sans);
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.variant-btn:hover {
    border-color: var(--text-muted);
}

.variant-btn.active {
    border-color: var(--primary);
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
}

/* Purchase details card */
.quantity-buy-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.qty-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background-color: var(--navy-dark);
}

.qty-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    width: 45px;
    height: 45px;
    cursor: pointer;
}

.qty-btn:hover {
    background-color: var(--navy-light);
}

.qty-input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    color: var(--white);
    font-family: var(--font-sans);
    font-weight: 600;
}

.purchase-actions .btn {
    width: 100%;
    margin-bottom: 1rem;
}

.purchase-installments {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.purchase-installments a {
    color: var(--primary);
    text-decoration: underline;
}

/* Delivery estimate widget */
.delivery-estimate-card {
    background-color: var(--navy-medium);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.delivery-estimate-card svg {
    width: 32px;
    height: 32px;
    fill: var(--primary);
}

.delivery-estimate-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.delivery-estimate-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Specs layout */
.specifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

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

.specs-table td {
    padding: 0.8rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--text-muted);
}

.specs-table td:last-child {
    text-align: right;
    color: var(--text-light);
}

/* Box Contents */
.box-contents-list {
    list-style: none;
}

.box-contents-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
}

.box-item-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.box-item-icon {
    font-size: 1.25rem;
}

.box-item-qty {
    font-weight: 700;
    color: var(--primary);
}

/* Full spec comparison grid */
.specs-comparison-matrix {
    width: 100%;
    border-collapse: collapse;
}

.specs-comparison-matrix th {
    background-color: var(--navy-dark);
    padding: 1.2rem;
    text-align: center;
    border: 1px solid var(--border-light);
}

.specs-comparison-matrix th:first-child {
    text-align: left;
}

.specs-comparison-matrix td {
    padding: 1.2rem;
    border: 1px solid var(--border-light);
    text-align: center;
    font-size: 0.9rem;
}

.specs-comparison-matrix td:first-child {
    font-weight: 600;
    text-align: left;
}

.specs-comparison-matrix tr.active-row td {
    background-color: var(--primary-light);
}

.specs-comparison-matrix svg {
    width: 18px;
    height: 18px;
}

.specs-comparison-matrix svg.check-icon {
    fill: var(--green);
}

.specs-comparison-matrix svg.cross-icon {
    fill: var(--primary);
}

/* Reviews list */
.reviews-summary-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 2rem;
    margin-bottom: 3rem;
}

.reviews-grid-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.review-detail-card {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.review-verified-badge {
    font-size: 0.75rem;
    color: var(--green);
    font-weight: 600;
}

.review-image-attached {
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-top: 1.2rem;
    aspect-ratio: 1.5;
}

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


/* ==========================================
   5. CART PAGE SPECIFIC STYLES
   ========================================== */

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
}

/* Shipping Progress Bar */
.shipping-progress-section {
    margin-bottom: 2.5rem;
}

.shipping-progress-text {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.shipping-progress-text span {
    color: var(--primary);
    font-weight: 600;
}

.progress-bar-bg {
    width: 100%;
    height: 10px;
    background-color: var(--navy-light);
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--primary);
    width: 75%;
    border-radius: 5px;
    transition: width 0.5s ease-out;
}

/* Coupon Banner */
.coupon-banner {
    background-color: var(--primary-light);
    border: 1.5px dashed var(--primary);
    border-radius: var(--radius-md);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.coupon-details h3 {
    font-size: 1.1rem;
    color: var(--primary);
}

.coupon-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.coupon-code-input-group {
    display: flex;
    gap: 0.5rem;
}

.coupon-code-input-group input {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0.5rem 1rem;
    color: var(--white);
    font-family: var(--font-sans);
}

.coupon-code-input-group input:focus {
    border-color: var(--primary);
    outline: none;
}

/* Cart Table */
.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    text-align: left;
    padding: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-light);
}

.cart-table td {
    padding: 2rem 1rem;
    border-bottom: 1px solid var(--border-light);
}

.cart-item-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    background-color: var(--navy-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

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

.cart-item-meta h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.cart-item-meta p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.cart-status-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-sm);
}

.badge-instock { background-color: rgba(16, 185, 129, 0.1); color: var(--green); }
.badge-freeship { background-color: var(--primary-light); color: var(--primary); margin-left: 0.5rem; }

.cart-item-remove-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    margin-left: 1rem;
}

.cart-item-remove-btn:hover {
    color: var(--primary);
}

.cart-item-remove-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.cart-actions-row {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

/* Order Summary Column */
.summary-card {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: sticky;
    top: 100px;
}

.summary-card h3 {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.summary-row.discount-row {
    color: var(--primary);
    font-weight: 600;
}

.summary-row.total-row {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.summary-card .btn {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.express-payments {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
    text-align: center;
}

.express-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.express-btn {
    background: #FFFFFF;
    border-radius: var(--radius-sm);
    padding: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.express-btn img {
    height: 20px;
    width: auto;
}

.express-btn.btn-shoppay { background-color: #5A31F4; }
.express-btn.btn-paypal { background-color: #FFB300; }
.express-btn.btn-gpay { background-color: #000000; }
.express-btn.btn-apple { background-color: #000000; }


/* ==========================================
   6. CHECKOUT PAGE SPECIFIC STYLES
   ========================================== */

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 4rem;
}

/* Stepper progress */
.checkout-stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.stepper-line {
    position: absolute;
    top: 15px;
    left: 40px;
    right: 40px;
    height: 2px;
    background-color: var(--border-light);
    z-index: 1;
}

.stepper-progress-line {
    position: absolute;
    top: 15px;
    left: 40px;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    z-index: 2;
    transition: width 0.3s ease-out;
}

.step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 3;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--navy-medium);
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-muted);
}

.step-node.active .step-circle {
    background-color: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.step-node.completed .step-circle {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Form block */
.checkout-section {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.checkout-section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 1.25rem;
}

.checkout-section-title span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Fields formatting */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group.no-margin { margin-bottom: 0; }

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-control {
    background-color: var(--navy-medium);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.2rem;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
}

/* Method options list */
.method-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.method-option {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    background-color: var(--navy-medium);
}

.method-option.selected {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.method-radio {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.method-details {
    flex-grow: 1;
}

.method-details h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.method-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.method-price {
    font-weight: 700;
    font-size: 0.95rem;
}

/* Card details form block */
.card-details-subform {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Checkout Review summary block */
.review-summary-table {
    width: 100%;
    border-collapse: collapse;
}

.review-summary-table td {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
}

.review-summary-table td:first-child {
    font-weight: 600;
    color: var(--text-muted);
    width: 120px;
}

.review-summary-table td:last-child {
    text-align: right;
}

.review-change-link {
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
}


/* ==========================================
   7. CONTACT PAGE SPECIFIC STYLES
   ========================================== */

.contact-help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-help-card {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--transition-normal);
}

.contact-help-card:hover {
    border-color: var(--primary);
}

.contact-help-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-help-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Split Form vs Reach Info */
.contact-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
}

.contact-form-box {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
}

.contact-reach-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reach-card {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.reach-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reach-icon-wrapper svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.reach-info h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.reach-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.reach-info a {
    color: var(--primary);
    font-weight: 600;
}

/* Headquarters Map block */
.headquarters-section {
    background-color: var(--navy-dark);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.headquarters-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
}

.headquarters-info-box {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.headquarters-info-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.headquarters-info-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.map-placeholder {
    height: 380px;
    background-color: var(--navy-medium);
    position: relative;
    overflow: hidden;
}

.map-placeholder-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.map-pin svg {
    width: 36px;
    height: 36px;
    fill: var(--primary);
}

.map-pin-label {
    background-color: var(--navy-darkest);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--border-light);
    white-space: nowrap;
}

/* Business Hours grid */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
}

.hours-card {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    text-align: center;
}

.hours-card.highlighted {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.hours-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.hours-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}


/* ==========================================
   8. BLOG PAGE SPECIFIC STYLES
   ========================================== */

.blog-filter-pills {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.pill-btn {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 0.6rem 1.5rem;
    color: var(--text-light);
    font-family: var(--font-sans);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

/* Featured stories row */
.featured-stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.featured-story-card {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.featured-story-img-wrapper {
    aspect-ratio: 1.4;
    background-color: var(--navy-medium);
    overflow: hidden;
}

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

.featured-story-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.featured-story-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: auto;
    border-top: 1px solid var(--border-light);
    padding-top: 1.2rem;
}

/* Latest Recipes Feed */
.recipes-feed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Guides & Tips grid */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.guide-card {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 240px;
}

.guide-card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.guide-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.guide-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.guide-card .read-guide-link {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}


/* ==========================================
   9. SUPPORT PAGE SPECIFIC STYLES
   ========================================== */

.support-hero {
    text-align: center;
    padding: 6rem 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 111, 125, 0.06) 0%, transparent 60%);
}

.support-search-wrapper {
    max-width: 600px;
    margin: 2rem auto 0 auto;
    position: relative;
}

.support-search-input {
    width: 100%;
    background-color: var(--navy-dark);
    border: 1.5px solid var(--border-medium);
    border-radius: var(--radius-xl);
    padding: 1rem 1.5rem 1rem 3.5rem;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1.05rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.support-search-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 15px rgba(255, 111, 125, 0.2);
}

.support-search-wrapper svg {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    fill: var(--text-muted);
}

/* Category grid tiles */
.support-tiles-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.support-tile-card {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1rem;
    text-align: center;
    transition: var(--transition-normal);
}

.support-tile-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.support-tile-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--primary);
}

.support-tile-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.support-tile-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Split FAQ vs Featured Answer Card */
.faq-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
}

/* Accordion details */
.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.accordion-header {
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
}

.accordion-header svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: var(--transition-fast);
}

.accordion-item.active .accordion-header svg {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: var(--navy-medium);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-light);
    transition: max-height 0.5s ease-in-out;
}

/* Popular FAQ highlight card */
.popular-faq-card {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popular-faq-card .faq-badge {
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.popular-faq-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.popular-faq-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    max-width: 280px;
}

.popular-faq-card img {
    margin-top: 2rem;
    max-height: 120px;
}

/* Setup Video playlist cards */
.setup-guides-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.video-guide-card {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.video-guide-card:hover {
    transform: translateY(-3px);
}

.video-thumbnail-wrapper {
    aspect-ratio: 1.5;
    background-color: var(--navy-medium);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 111, 125, 0.95);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 111, 125, 0.4);
    z-index: 5;
}

.video-play-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    margin-left: 2px;
}

.video-duration-badge {
    position: absolute;
    bottom: 0.8rem;
    right: 0.8rem;
    background-color: rgba(7, 12, 18, 0.85);
    color: var(--text-light);
    padding: 0.15rem 0.4rem;
    font-size: 0.7rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.video-card-content {
    padding: 1.2rem;
}

.video-card-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.video-card-content p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Downloads pdf cards */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.download-pdf-card {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-pdf-card .pdf-icon {
    font-size: 2.5rem;
    color: #EF4444;
    margin-bottom: 1.2rem;
}

.download-pdf-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.download-pdf-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.download-pdf-card .download-link {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}


/* ==========================================
   9. RESPONSIVE MEDIA QUERIES FOR PAGES
   ========================================== */

@media (max-width: 1024px) {
    .product-grid, .recipes-grid, .recipes-feed-grid, .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .business-grid, .team-grid, .setup-guides-grid, .downloads-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-grid, .about-founder-grid, .sustainability-grid, .comparison-teaser-grid, .newsletter-grid, .bundle-promo-grid, .product-detail-grid, .cart-layout, .checkout-layout, .contact-split-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
        border-left: 2px dashed var(--border-medium);
        padding-left: 2rem;
        gap: 2rem;
        text-align: left;
    }
    
    .timeline-node {
        text-align: left;
        position: relative;
    }
    
    .timeline-icon {
        margin: 0;
        position: absolute;
        left: -62px;
        top: 0;
    }
    
    .timeline-line {
        display: none;
    }
    
    .stats-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-help-grid {
        grid-template-columns: 1fr;
    }
    
    .support-tiles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .faq-split-grid {
        grid-template-columns: 1fr;
    }
    
    .headquarters-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding: 3rem 0;
    }

    .home-hero .hero-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .business-grid, .team-grid, .setup-guides-grid, .downloads-grid, .stats-row, .instagram-grid, .support-tiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-grid, .recipes-grid, .recipes-feed-grid, .guides-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .newsletter-banner {
        padding: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-perks {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ==========================================
   Product Showcase Custom styling
   ========================================== */
.showcase-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.showcase-tabs {
    display: inline-flex;
    background-color: var(--navy-medium);
    padding: 0.4rem;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    gap: 0.5rem;
}

.showcase-tab {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-normal);
}

.showcase-tab:hover {
    color: var(--text-light);
}

.showcase-tab.active {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 111, 125, 0.25);
}

.showcase-grid {
    display: none;
}

.showcase-grid.active {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.showcase-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.showcase-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 111, 125, 0.3);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08), 0 0 25px rgba(255, 111, 125, 0.05);
}

.showcase-img-wrapper {
    position: relative;
    background-color: var(--navy-medium);
    aspect-ratio: 1.1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.showcase-card:hover .showcase-img-wrapper img {
    transform: scale(1.08) translateY(-4px);
}

.showcase-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.showcase-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.showcase-rating-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.showcase-reviews {
    color: var(--text-muted);
}

.showcase-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 1.2rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.spec-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    font-weight: 500;
}

.spec-val {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.btn-quick-add {
    width: 100%;
    background-color: var(--navy-darkest);
    color: var(--text-dark);
    border: 1.5px solid var(--border-medium);
    padding: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
}

.showcase-card:hover .btn-quick-add {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 111, 125, 0.3);
}

/* Media Query Adaptations for Showcase */
@media (max-width: 1024px) {
    .showcase-grid.active {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .showcase-grid.active {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .showcase-tabs-container {
        margin-bottom: 2rem;
    }
    
    .showcase-tabs {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        border-radius: var(--radius-md);
    }
    
    .showcase-tab {
        flex-grow: 1;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        text-align: center;
    }
}

/* Media Query Adaptations for Futuristic Hero */
@media (max-width: 1024px) {
    .hero-grid-futuristic {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    
    .hero-content-futuristic {
        align-items: center;
    }
    
    .hero-desc-futuristic {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-left-badge {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .home-hero-futuristic {
        padding: 4.5rem 0 3.5rem 0;
    }
    
    .hero-title-futuristic {
        font-size: 2.2rem;
    }
    
    .hero-btns-futuristic {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        align-items: stretch;
    }
    
    .btn-buy-now, .btn-explore-more {
        justify-content: center;
        text-align: center;
    }
    
    .hero-bottom-tabs {
        flex-direction: column;
        width: 100%;
    }
    
    .floating-glass-card {
        padding: 0.6rem 1rem;
    }
    
    .floating-glass-card.card-top-right {
        right: 2%;
        top: 1rem;
    }
    
    .floating-glass-card.card-bottom-left {
        left: 2%;
        bottom: 1rem;
    }
}
