/* ===== CSS Variables ===== */
:root {
    --navy-900: #0f172a;
    --navy-800: #1e293b;
    --navy-100: #e2e8f0;
    --navy-50: #f8fafc;
    --red-600: #dc2626;
    --red-500: #ef4444;
    --red-100: #fee2e2;
    --red-50: #fef2f2;
    --blue-600: #2563eb;
    --blue-100: #dbeafe;
    --green-600: #16a34a;
    --green-100: #dcfce7;
    --amber-400: #fbbf24;
    --amber-600: #d97706;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --white: #ffffff;

    --font-jp: 'Noto Sans JP', sans-serif;
    --font-main: 'Inter', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--navy-900);
    line-height: 1.6;
    background-color: var(--white);
}

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

ul {
    list-style: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input {
    font-family: inherit;
}

/* ===== Layout ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.min-h-screen {
    min-height: 100vh;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--navy-900);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.brand-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-jp);
    line-height: 1.2;
}

.brand-text p {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy-900);
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--red-600);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-btn {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: background-color 0.2s;
}

.nav-btn:hover {
    background-color: var(--gray-100);
}

.nav-btn i {
    font-size: 1.125rem;
    color: var(--navy-900);
}

.mobile-menu-btn {
    display: flex;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
}

.btn-primary {
    background: var(--navy-900);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: var(--navy-800);
    box-shadow: var(--shadow-xl);
}

.btn-accent {
    background: var(--red-600);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-accent:hover {
    background: var(--red-500);
    box-shadow: var(--shadow-xl);
}

/* ===== Badges ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-red {
    background: var(--red-50);
    color: var(--red-600);
}

.badge-navy {
    background: var(--navy-100);
    color: var(--navy-900);
}

.badge-light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* ===== Hero Section ===== */
.hero {
    padding-top: 6rem;
    padding-bottom: 5rem;
    background: var(--white);
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-jp);
    line-height: 1.2;
    color: var(--navy-900);
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.text-accent {
    color: var(--red-600);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--navy-900);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Hero Images */
.hero-images {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .hero-images {
        display: grid;
    }
}

.hero-images-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-images-col.offset {
    padding-top: 2rem;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-card img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: transform 0.5s;
}

.hero-image-card.tall img {
    height: 16rem;
}

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

.image-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 0.75rem;
}

.label-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy-900);
}

.label-subtitle {
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.light .section-title,
.section-header.light .section-subtitle {
    color: var(--white);
}

.section-header.light .section-subtitle {
    color: var(--gray-300);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    font-family: var(--font-jp);
    color: var(--navy-900);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 42rem;
    margin: 0 auto;
}

/* ===== Trust Section ===== */
.trust-section {
    padding: 6rem 0;
    position: relative;
    /* background: linear-gradient(135deg, var(--navy-50), var(--blue-100)); Removed background as it's replaced by video/overlay */
    overflow: hidden;
}

.trust-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.trust-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.4), rgba(219, 234, 254, 0.4));
    /* Reduced opacity for better video visibility */
    z-index: 1;
}

.trust-section .container {
    position: relative;
    z-index: 10;
}

.trust-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .trust-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.trust-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: box-shadow 0.3s;
}

.trust-card:hover {
    box-shadow: var(--shadow-xl);
}

.trust-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.trust-icon.red {
    background: var(--red-100);
}

.trust-icon.red i {
    color: var(--red-600);
}

.trust-icon.navy {
    background: var(--navy-100);
}

.trust-icon.navy i {
    color: var(--navy-900);
}

.trust-icon i {
    font-size: 1.875rem;
}

.trust-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-jp);
    color: var(--navy-900);
    margin-bottom: 1rem;
}

.trust-card p {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.trust-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-700);
}

.trust-list i {
    color: var(--red-600);
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.trust-list.navy i {
    color: var(--navy-900);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .trust-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-stat {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.trust-stat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.trust-stat-icon.red {
    background: var(--red-100);
}

.trust-stat-icon.red i {
    color: var(--red-600);
}

.trust-stat-icon.navy {
    background: var(--navy-100);
}

.trust-stat-icon.navy i {
    color: var(--navy-900);
}

.trust-stat-icon i {
    font-size: 1.25rem;
}

.trust-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.25rem;
}

.trust-stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ===== Categories Section ===== */
.categories-section {
    padding: 6rem 0;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    cursor: pointer;
    transition: all 0.3s;
}

.category-card:hover {
    box-shadow: var(--shadow-xl);
}

.category-image {
    position: relative;
    width: 100%;
    height: 14rem;
    overflow: hidden;
    background: var(--gray-50);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.category-count {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-900);
}

.category-content {
    padding: 1.5rem;
}

.category-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.category-card:hover h4 {
    color: var(--red-600);
}

.category-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-footer span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.category-footer i {
    font-size: 1.25rem;
    color: var(--navy-900);
    transition: all 0.2s;
}

.category-card:hover .category-footer i {
    color: var(--red-600);
    transform: translateX(0.25rem);
}

/* ===== Products Section ===== */
.products-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    width: 100%;
    height: 16rem;
    overflow: hidden;
    background: var(--gray-50);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
}

.product-badge.bestseller {
    background: var(--navy-900);
}

.product-badge.sale {
    background: var(--red-600);
}

.product-badge.premium {
    background: var(--amber-600);
}

.product-badge.new {
    background: var(--green-600);
}

.product-badge.halal {
    background: #059669;
    /* Green-600 hex equivalent */
}

.product-badge.grocery {
    background: #2563eb;
    /* Blue-600 */
}

.product-badge.bbq {
    background: #dc2626;
    /* Red-600 */
}

.product-badge.signature {
    background: #7c3aed;
    /* Violet-600 */
}

.product-wishlist {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transition: opacity 0.2s;
}

.product-card:hover .product-wishlist {
    opacity: 1;
}

.product-wishlist:hover {
    background: var(--red-50);
}

.product-wishlist i {
    font-size: 1.125rem;
    color: var(--navy-900);
}

.product-content {
    padding: 1.25rem;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--red-600);
    margin-bottom: 0.5rem;
}

.product-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.product-card:hover h4 {
    color: var(--red-600);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.product-rating .stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-rating .stars i {
    font-size: 0.875rem;
    color: var(--amber-400);
}

.product-rating .score {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-900);
}

.product-rating .reviews {
    font-size: 0.75rem;
    color: var(--gray-500);
}

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

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

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

.product-price .original {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.add-to-cart {
    width: 2.25rem;
    height: 2.25rem;
    background: var(--navy-900);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.add-to-cart:hover {
    background: var(--red-600);
}

.add-to-cart i {
    font-size: 1rem;
}

.products-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== Promotions Section ===== */
.promotions-section {
    padding: 6rem 0;
    background: var(--white);
}

.promotions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.promo-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all 0.3s;
}

.promo-card:hover {
    box-shadow: var(--shadow-xl);
}

.promo-image {
    position: relative;
    width: 100%;
    height: 16rem;
    overflow: hidden;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), transparent);
}

.promo-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--red-600);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.promo-content {
    padding: 2rem;
}

.promo-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.promo-card:hover .promo-content h4 {
    color: var(--red-600);
}

.promo-content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.promo-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.promo-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===== Delivery Section ===== */
.delivery-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    color: var(--white);
}

.delivery-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .delivery-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.delivery-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

.delivery-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.delivery-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.delivery-icon.red {
    background: var(--red-600);
}

.delivery-icon.blue {
    background: var(--blue-600);
}

.delivery-icon.green {
    background: var(--green-600);
}

.delivery-icon i {
    font-size: 1.875rem;
    color: var(--white);
}

.delivery-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.delivery-card>p {
    color: var(--gray-300);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.delivery-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.delivery-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--gray-300);
}

.delivery-list i {
    color: var(--red-500);
    font-size: 1.125rem;
    margin-top: 0.125rem;
}

.delivery-list.blue i {
    color: #60a5fa;
}

.delivery-list.green i {
    color: #4ade80;
}

.delivery-schedule {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .delivery-schedule {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.schedule-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.schedule-info>p {
    color: var(--gray-300);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.schedule-times {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.schedule-time {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.schedule-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--red-600);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule-icon i {
    color: var(--white);
}

.schedule-day {
    font-weight: 600;
    color: var(--white);
}

.schedule-hours {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.schedule-contact {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-contact h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.schedule-contact>p {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--red-500);
}

.contact-link i {
    font-size: 1.25rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
}

.footer-brand .nav-brand {
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    color: var(--navy-900);
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--navy-900);
    color: var(--white);
}

.social-link i {
    font-size: 1.125rem;
}

.footer-links h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray-600);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--red-600);
}

.footer-newsletter h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 1rem;
}

.footer-newsletter p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--navy-900);
    outline: none;
    transition: all 0.2s;
}

.newsletter-form input:focus {
    border-color: var(--navy-900);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: var(--gray-600);
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--red-600);
}

/* ===== Loading State ===== */
.loading {
    display: flex;
    justify-content: center;
    padding: 3rem;
}

.loading::after {
    content: '';
    width: 2rem;
    height: 2rem;
    border: 3px solid var(--gray-200);
    border-top-color: var(--navy-900);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== Shop Page Header ===== */
.page-header {
    padding: 7rem 0 2rem;
    background: linear-gradient(135deg, var(--navy-50), var(--blue-100));
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.breadcrumb a:hover {
    color: var(--red-600);
}

.breadcrumb i {
    font-size: 1rem;
    color: var(--gray-400);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-jp);
    color: var(--navy-900);
}

.page-subtitle {
    color: var(--gray-600);
    margin-top: 0.5rem;
}

/* ===== Shop Layout ===== */
.shop-section {
    padding: 3rem 0;
}

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

@media (min-width: 768px) {
    .shop-layout {
        grid-template-columns: 260px 1fr;
    }
}

/* Filters Sidebar */
.filters-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    height: fit-content;
    position: sticky;
    top: 6rem;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.filter-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-900);
}

.clear-filters {
    font-size: 0.75rem;
    color: var(--red-600);
    font-weight: 500;
    cursor: pointer;
}

.clear-filters:hover {
    text-decoration: underline;
}

.category-filters {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-filter-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    background: var(--gray-50);
    transition: all 0.2s;
    text-align: left;
    width: 100%;
}

.category-filter-btn:hover {
    background: var(--gray-100);
    color: var(--navy-900);
}

.category-filter-btn.active {
    background: var(--navy-900);
    color: var(--white);
}

.category-filter-btn i {
    font-size: 1.125rem;
}

.filter-count {
    margin-left: auto;
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
}

.category-filter-btn:not(.active) .filter-count {
    background: var(--gray-200);
    color: var(--gray-600);
}

/* Results Info */
.results-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.results-info strong {
    color: var(--navy-900);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-500);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}

.empty-state p {
    margin-bottom: 1.5rem;
}

/* ===== Nav Link Active ===== */
.nav-link.active {
    color: var(--red-600);
}

/* ===== Cart Badge ===== */
.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--red-600);
    color: var(--white);
    font-size: 0.625rem;
    font-weight: 700;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cartPop 0.3s ease;
}

@keyframes cartPop {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* ===== Search Modal ===== */
.search-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
}

.search-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
}

.search-modal-content {
    position: relative;
    max-width: 600px;
    margin: 8rem auto 0;
    padding: 0 1.5rem;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.search-form>i {
    font-size: 1.5rem;
    color: var(--gray-400);
}

.search-form input {
    flex: 1;
    font-size: 1.25rem;
    border: none;
    outline: none;
    background: none;
}

.search-form input::placeholder {
    color: var(--gray-400);
}

.search-close {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--gray-500);
    transition: all 0.2s;
}

.search-close:hover {
    background: var(--gray-100);
    color: var(--navy-900);
}

.search-close i {
    font-size: 1.5rem;
}

/* ===== Cart Sidebar ===== */
.cart-sidebar {
    position: fixed;
    inset: 0;
    z-index: 100;
}

.cart-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
}

.cart-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 420px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.cart-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-900);
}

.cart-close {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--gray-500);
    transition: all 0.2s;
}

.cart-close:hover {
    background: var(--gray-100);
    color: var(--navy-900);
}

.cart-close i {
    font-size: 1.5rem;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

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

.cart-item-details h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.cart-item-price {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--red-600);
    margin-bottom: 0.5rem;
}

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

.qty-btn {
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--white);
    border: 1px solid var(--gray-200);
    font-size: 0.875rem;
    color: var(--navy-900);
    transition: all 0.2s;
}

.qty-btn:hover {
    background: var(--navy-900);
    color: var(--white);
    border-color: var(--navy-900);
}

.cart-item-quantity span {
    min-width: 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.cart-item-remove {
    color: var(--gray-400);
    transition: color 0.2s;
    align-self: flex-start;
}

.cart-item-remove:hover {
    color: var(--red-600);
}

.cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: var(--gray-500);
}

.cart-empty i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.cart-empty p {
    margin-bottom: 1.5rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-100);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-900);
}

.btn-block {
    width: 100%;
}

/* Add to cart feedback */
.add-to-cart.added {
    background: var(--green-600) !important;
}

.add-to-cart.added i {
    color: var(--white);
}

/* ===== Product Detail Page ===== */
.product-detail-section {
    padding: 2rem 0 4rem;
}

.loading-state {
    text-align: center;
    padding: 4rem 2rem;
}

.loading-state p {
    margin-top: 1rem;
    color: var(--gray-600);
}

.product-detail {
    animation: fadeIn 0.3s ease;
}

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

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

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.product-detail-image {
    position: relative;
}

.product-detail-image .image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--gray-50);
    box-shadow: var(--shadow-lg);
}

.product-detail-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-detail-image .product-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-category-tag {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.25rem 0.75rem;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
}

.product-detail-info h1 {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-jp);
    color: var(--navy-900);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .product-detail-info h1 {
        font-size: 2.5rem;
    }
}

.product-rating-large {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-rating-large .stars {
    display: flex;
    color: var(--amber-400);
}

.product-rating-large .stars i {
    font-size: 1.25rem;
}

.product-rating-large .score {
    font-weight: 700;
    color: var(--navy-900);
}

.product-rating-large .reviews {
    color: var(--gray-600);
}

.product-description {
    color: var(--gray-600);
    line-height: 1.75;
    font-size: 1rem;
}

.product-price-large {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.product-price-large .current {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-900);
}

.product-price-large .original {
    font-size: 1.25rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.product-price-large .discount-badge {
    background: var(--red-100);
    color: var(--red-600);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
}

.product-stock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--green-600);
    font-weight: 500;
}

.product-stock i {
    font-size: 1.25rem;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem 0;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 0.5rem;
}

.quantity-selector .qty-btn {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.quantity-selector .qty-btn:hover {
    background: var(--gray-200);
}

.quantity-selector span {
    min-width: 2rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-large i {
    margin-right: 0.5rem;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.product-features .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-600);
}

.product-features .feature i {
    font-size: 1.25rem;
    color: var(--red-600);
}

/* Related Products */
.related-products-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--gray-200);
}

.related-products-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-jp);
    color: var(--navy-900);
    margin-bottom: 2rem;
}

/* ===== Checkout Page ===== */
.checkout-section {
    padding: 2rem 0 4rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 1fr 400px;
    }
}

.checkout-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.checkout-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.checkout-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-jp);
    color: var(--navy-900);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkout-card h2 i {
    color: var(--red-600);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    color: var(--navy-900);
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy-900);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
}

.form-group input::placeholder {
    color: var(--gray-400);
}

/* Order Summary */
.order-summary {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    height: fit-content;
    position: sticky;
    top: 6rem;
}

.order-summary h2 {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-jp);
    color: var(--navy-900);
    margin-bottom: 1.5rem;
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.order-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.order-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.order-item img {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-md);
    object-fit: cover;
}

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

.order-item-info h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.25rem;
}

.order-item-info .quantity {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.order-item-price {
    font-weight: 600;
    color: var(--navy-900);
}

.order-totals {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.order-row {
    display: flex;
    justify-content: space-between;
    color: var(--gray-600);
}

.order-row.total {
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-200);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-900);
}

.checkout-submit {
    margin-top: 1.5rem;
}

.checkout-submit .btn {
    width: 100%;
}

.checkout-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.checkout-secure i {
    color: var(--green-600);
}

/* Empty Checkout */
.checkout-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.checkout-empty i {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.checkout-empty h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}

.checkout-empty p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

/* Order Confirmation */
.order-confirmation {
    text-align: center;
    padding: 4rem 2rem;
}

.order-confirmation .success-icon {
    width: 5rem;
    height: 5rem;
    background: var(--green-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.order-confirmation .success-icon i {
    font-size: 2.5rem;
    color: var(--green-600);
}

.order-confirmation h2 {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-jp);
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}

.order-confirmation .order-number {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.order-confirmation p {
    color: var(--gray-600);
    max-width: 400px;
    margin: 0 auto 2rem;
}

/* ===== Auth Pages ===== */
.auth-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--red-500), var(--red-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.auth-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.auth-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--font-jp);
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--gray-600);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.auth-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 480px) {
    .auth-form .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

.input-icon input {
    padding-left: 2.75rem;
}

.auth-error {
    background: var(--red-50);
    color: var(--red-600);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.auth-footer p {
    color: var(--gray-600);
}

.auth-footer a {
    color: var(--red-600);
    font-weight: 600;
}

.auth-footer a:hover {
    color: var(--red-700);
}

/* ===== Account Page ===== */
.account-section {
    padding: 2rem 0 4rem;
}

.account-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.user-avatar {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--red-500), var(--red-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-avatar i {
    font-size: 2.5rem;
    color: var(--white);
}

.user-info h1 {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--font-jp);
    color: var(--navy-900);
    margin-bottom: 0.25rem;
}

.user-info p {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.member-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.account-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .account-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.account-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.account-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-jp);
    color: var(--navy-900);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.account-card h2 i {
    color: var(--red-600);
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.profile-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 480px) {
    .profile-form .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.profile-message {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    min-height: 2.5rem;
}

.profile-message.success {
    background: var(--green-50);
    color: var(--green-600);
}

.profile-message.error {
    background: var(--red-50);
    color: var(--red-600);
}

/* Orders List */
.orders-empty {
    text-align: center;
    padding: 2rem;
}

.orders-empty i {
    font-size: 3rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.orders-empty p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-card {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    border: 1px solid var(--gray-200);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.order-info h4 {
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.25rem;
}

.order-date {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.order-status {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.order-status.status-pending {
    background: var(--amber-100);
    color: var(--amber-700);
}

.order-status.status-completed {
    background: var(--green-100);
    color: var(--green-700);
}

.order-status.status-shipped {
    background: var(--blue-100);
    color: var(--blue-700);
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.875rem;
}

.order-total span {
    color: var(--gray-600);
}

.order-total strong {
    color: var(--navy-900);
}

/* Spinner animation */
.ri-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Small button variant */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ===== Reviews Section ===== */
.reviews-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-200);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.reviews-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-jp);
    color: var(--navy-900);
}

.average-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rating-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-900);
}

.average-rating .stars {
    display: flex;
    gap: 0.25rem;
}

.average-rating .stars i {
    font-size: 1.25rem;
    color: var(--amber-400);
}

.review-count {
    color: var(--gray-600);
}

/* Review Form */
.review-form-container {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.review-form-container h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 1rem;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-input label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--navy-900);
}

.star-rating-input {
    display: flex;
    gap: 0.25rem;
}

.star-rating-input button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    transition: transform 0.15s ease;
}

.star-rating-input button:hover {
    transform: scale(1.2);
}

.star-rating-input button i {
    font-size: 1.75rem;
    color: var(--gray-300);
    transition: color 0.15s ease;
}

.star-rating-input button.active i,
.star-rating-input button:hover i {
    color: var(--amber-400);
}

.review-message {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

.review-message.success {
    background: var(--green-50);
    color: var(--green-600);
}

.review-message.error {
    background: var(--red-50);
    color: var(--red-600);
}

/* Not Eligible Message */
.review-not-eligible {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gray-50);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.review-not-eligible i {
    font-size: 1.25rem;
    color: var(--gray-400);
}

.review-not-eligible p {
    color: var(--gray-600);
}

.review-not-eligible a {
    color: var(--red-600);
    font-weight: 600;
}

/* Reviews List */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reviews-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--gray-500);
}

.reviews-empty i {
    font-size: 3rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--red-500), var(--red-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--navy-900);
}

.review-date {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.review-rating {
    display: flex;
    gap: 0.125rem;
}

.review-rating i {
    font-size: 1rem;
    color: var(--amber-400);
}

.review-comment {
    color: var(--gray-700);
    line-height: 1.6;
}

/* ===== Hidden Utility ===== */
.hidden {
    display: none !important;
}

/* ===== Modal ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s;
}

.modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 600px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-900);
}

.close-modal {
    font-size: 1.5rem;
    color: var(--gray-500);
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--red-600);
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
}

.order-detail-group {
    margin-bottom: 1.5rem;
}

.order-detail-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.order-detail-value {
    font-size: 1rem;
    color: var(--navy-900);
    font-weight: 500;
}

.order-items-list {
    margin-top: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

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

.item-info h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-900);
}

.item-meta {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.item-total {
    font-weight: 600;
    color: var(--navy-900);
}

.order-summary {
    margin-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.summary-row.total {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray-200);
}

/* ===== Reviews Section ===== */
.reviews-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--gray-200);
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.reviews-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-900);
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.average-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rating-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-900);
}

.stars {
    display: flex;
    gap: 0.125rem;
}

.stars i {
    color: var(--amber-400);
    font-size: 1.25rem;
}

.review-count {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Review Form */
.review-form-container {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.review-form-container h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 1.5rem;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rating-input label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy-900);
}

.star-rating-input {
    display: flex;
    gap: 0.25rem;
}

.star-rating-input button {
    padding: 0.25rem;
    color: var(--gray-300);
    transition: all 0.2s;
}

.star-rating-input button i {
    font-size: 1.5rem;
}

.star-rating-input button:hover,
.star-rating-input button.active {
    color: var(--amber-400);
    transform: scale(1.1);
}

.review-message {
    font-size: 0.875rem;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    display: none;
}

.review-message:empty {
    display: none;
}

.review-message.success {
    display: block;
    background: var(--green-100);
    color: var(--green-600);
}

.review-message.error {
    display: block;
    background: var(--red-100);
    color: var(--red-600);
}

.review-not-eligible {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.review-not-eligible i {
    font-size: 1.25rem;
    color: var(--navy-900);
}

.review-not-eligible a {
    color: var(--navy-900);
    font-weight: 600;
    text-decoration: underline;
}

/* Reviews List */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card {
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--white);
}

.review-card .review-header {
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-full);
    background: var(--navy-100);
    color: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--navy-900);
    font-size: 0.875rem;
}

.review-date {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.review-card .review-rating {
    display: flex;
    gap: 0.125rem;
}

.review-card .review-rating i {
    font-size: 1rem;
    color: var(--amber-400);
}

.review-comment {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.reviews-empty {
    text-align: center;
    padding: 3rem;
    color: var(--gray-500);
}

.reviews-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Filter UI Enhancements */

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

.filter-group h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-900);
}

/* --- Dual Range Slider --- */
.price-slider-container {
    padding: 10px 0 20px;
    height: 50px;
    /* Ensure container has height */
}

.price-slider {
    position: relative;
    width: 100%;
    height: 6px;
    margin-bottom: 20px;
    background-color: var(--gray-200);
    border-radius: var(--radius-full);
}

.slider-track {
    position: absolute;
    height: 100%;
    background-color: var(--navy-900);
    border-radius: var(--radius-full);
    z-index: 1;
}

.price-slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 6px;
    background: none;
    pointer-events: none;
    /* Allows clicking through the track */
    -webkit-appearance: none;
    -moz-appearance: none;
    z-index: 2;
    top: 0;
    margin: 0;
}

/* Make sure thumb is clickable */
.price-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: var(--navy-900);
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
    pointer-events: auto;
    /* Re-enable pointer events on the thumb */
    cursor: pointer;
    margin-top: -7px;
    transition: transform 0.1s;
}

.price-slider input[type="range"]:active::-webkit-slider-thumb {
    transform: scale(1.1);
}

.price-slider input[type="range"]::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: var(--navy-900);
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
    pointer-events: auto;
    /* Re-enable pointer events on the thumb */
    cursor: pointer;
}

.price-values {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    /* Add margin to prevent overlap */
}

.price-value {
    background-color: var(--gray-50);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-900);
    border: 1px solid var(--gray-200);
}


/* --- Sleek Checkboxes --- */
.custom-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 32px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 0.95rem;
    user-select: none;
    transition: all 0.2s;
    padding: 0.5rem 0.5rem 0.5rem 0;
    /* Reduced padding, rely on gap */
    border-radius: var(--radius-md);
}

.custom-checkbox:hover {
    background-color: transparent;
    /* Remove background if it causes click issues */
}

.custom-checkbox:hover .label-text {
    color: var(--red-600);
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    /* Cover the entire label area */
    top: 0;
    left: 0;
    z-index: 1;
    /* Ensure on top */
}

.checkmark {
    position: relative;
    /* Changed from absolute to flow regularly or stick to left */
    display: inline-block;
    height: 1.25rem;
    width: 1.25rem;
    background-color: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    transition: all 0.2s;
    margin-right: 10px;
    flex-shrink: 0;
}

.custom-checkbox:hover input~.checkmark {
    border-color: var(--gray-400);
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--navy-900);
    border-color: var(--navy-900);
}

.custom-checkbox .label-text {
    color: var(--gray-700);
    transition: color 0.2s;
}

.custom-checkbox input:checked~.label-text {
    font-weight: 600;
    color: var(--navy-900);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ===== Promo Banner ===== */
.promo-banner {
    background: var(--navy-900);
    color: var(--white);
    padding: 0.75rem 1rem;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    /* Fixed height for calculations */
    transition: transform 0.3s ease;
}

.promo-banner.hidden {
    display: none;
}

.promo-banner p {
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.promo-close {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1.25rem;
    opacity: 0.8;
}

.promo-close:hover {
    opacity: 1;
}

/* Adjust navbar when banner is present */
.navbar {
    transition: top 0.3s ease;
}

/* Add margin to hero when banner is present */
body:has(.promo-banner:not(.hidden)) .hero {
    padding-top: calc(6rem + 40px);
}

/* ===== Homepage Grids & Cards ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.category-card {
    display: block;
    text-decoration: none;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--gray-100);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-info {
    padding: 1.25rem;
    text-align: center;
}

.category-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.25rem;
}

.category-info p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Featured Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

/* Ensure Homepage Product Cards Match */
/* Ensure Homepage Product Cards Match */
.add-to-cart-btn-small {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.add-to-cart-btn-small:hover {
    background: var(--red-600);
}

.add-to-cart-btn-small {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.add-to-cart-btn-small:hover {
    background: var(--red-600);
}

/* ===== Deal Section ===== */
.deal-section {
    padding: 2rem 0;
    background: var(--white);
}

.deal-banner {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.deal-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.deal-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

#deal-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-jp);
    margin-bottom: 1rem;
    color: var(--white);
}

#deal-desc {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timer-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 1rem;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-box span {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-mono);
    line-height: 1;
}

.timer-box small {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    color: var(--gray-400);
}

/* ===== Cart Badge Fix ===== */
#cart-btn,
.nav-btn.cart-btn {
    position: relative;
    overflow: visible;
    /* Ensure badge isn't clipped */
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--red-600);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.cart-count.hidden {
    display: none;
}

/* ===== Payment Tabs ===== */
.payment-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 1px;
}

.payment-tab {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-500);
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.payment-tab:hover {
    color: var(--navy-900);
    background: var(--gray-50);
}

.payment-tab.active {
    color: var(--blue-600);
    border-bottom-color: var(--blue-600);
}

.payment-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.payment-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

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

/* Checkout Quantity Controls */
.quantity-controls.sm {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 0.25rem;
    width: fit-content;
    margin-top: 0.25rem;
}

.quantity-controls.sm .qty-btn {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.quantity-controls.sm span {
    font-size: 0.875rem;
    font-weight: 600;
    min-width: 1rem;
    text-align: center;
}

.quantity-controls.sm .remove-btn {
    margin-left: 0.5rem;
    color: var(--red-500);
    padding: 0.25rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.quantity-controls.sm .remove-btn:hover {
    background: var(--red-100);
}

/* Apple Pay Button Styling */
.apple-pay-styled-btn {
    -webkit-appearance: -apple-pay-button;
    -apple-pay-button-type: plain;
    -apple-pay-button-style: black;
    width: 100%;
    height: 48px;
    display: block;
    cursor: pointer;
    border-radius: var(--radius-md);
}

/* ===== Payment Icons ===== */
.payment-icons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.icon {
    display: inline-block;
    vertical-align: middle;
}

.icon--full-color {
    fill: currentColor;
}