/* ========================================================
   Luxeora Flowers - Luxury Design System
   Color Palette: Dark Brown #6B4423, Beige #F5EFE7, Gold #D4AF7E,
                  Light Brown #9D8B7E, Pink #E8B4C8, Green #A8C77C, White #FFF
   ======================================================== */

/* --- CSS Variables --- */
:root {
    /* New Palette */
    --primary: #B45CA3;
    /* Soft Lavender / Light Purple */
    --primary-dark: #914a83;
    /* Darker shade for hover */
    --secondary: #F6D6E6;
    /* Blush Pink */
    --accent: #C4162A;
    /* Deep Red / Rose */
    --bg-main: #FAF7F5;
    /* Light Beige */
    --white: #FFFFFF;

    /* Text Colors */
    --text-dark: #333333;
    /* Dark Gray */
    --text-muted: #6A4C93;
    /* Muted Purple */
    --text-light: #888888;

    /* Legacy/Utils */
    --gold: #D4AF7E;
    /* Keeping for specific luxury accents */
    --green: #4CAF50;
    --border: rgba(180, 92, 163, 0.15);

    /* Shadows - Softer & Purple tinted */
    --shadow-sm: 0 2px 8px rgba(180, 92, 163, 0.08);
    --shadow-md: 0 4px 20px rgba(180, 92, 163, 0.12);
    --shadow-lg: 0 8px 40px rgba(180, 92, 163, 0.15);
    --shadow-hover: 0 12px 48px rgba(180, 92, 163, 0.2);

    --radius: 12px;
    --radius-lg: 18px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-h: 130px;
    /* Increased for TopBar + Header + Nav */

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul,
ol {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

/* --- Container --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
}

.text-center {
    text-align: center;
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
    background: var(--white);
    padding: 16px 0;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    height: auto;
}

/* Actions */
.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--text-dark);
    width: auto;
    height: auto;
    border-radius: 0;
}

.header-icon-btn:hover {
    color: var(--primary);
    background: transparent;
}

.icon-label {
    font-weight: 500;
}

.cart-icon-wrapper {
    position: relative;
}

/* Nav Bar - Separate */
.nav-bar-wrapper {
    background: var(--secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all var(--transition);
    border-bottom: 3px solid transparent;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.4);
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.nav-icon {
    font-size: 18px;
}

/* Top Bar */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 12px;
    font-weight: 500;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-contact:hover {
    opacity: 0.8;
}

/* Search - Centered */
.header-search {
    flex: 1;
    max-width: 500px;
    margin: 0 24px;
}

.search-form {
    display: flex;
    align-items: center;
    background: var(--bg-main);
    border-radius: 30px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.search-input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 10px 20px;
    font-size: 14px;
}

.search-submit {
    padding: 0 16px;
    color: var(--primary);
    background: transparent;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.3s;
    padding-top: 60px;
}

.mobile-nav-overlay.active {
    transform: translateX(0);
}

[dir="rtl"] .mobile-nav-overlay {
    transform: translateX(100%);
}

[dir="rtl"] .mobile-nav-overlay.active {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    gap: 0;
}

.mobile-nav a {
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
}

.mobile-nav a:hover {
    color: var(--primary);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 8px;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    transition: all var(--transition);
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    color: var(--primary);
    letter-spacing: 4px;
    line-height: 1.1;
}

.logo-sub {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 9px;
    color: var(--gold);
    letter-spacing: 6px;
    text-transform: uppercase;
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
}

.lang-btn {
    color: rgba(255, 255, 255, 0.8);
    padding: 4px 6px;
    border-radius: 4px;
    transition: all var(--transition);
}

.lang-btn.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.lang-btn:hover {
    color: var(--white);
}

.lang-sep {
    color: rgba(255, 255, 255, 0.4);
}

/* Cart Count */
.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 16px;
    height: 16px;
    background: var(--accent);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ========================================
   MAIN CONTENT
   ======================================== */
.main-content {
    margin-top: var(--header-h);
    min-height: 60vh;
}

/* ========================================
   HERO SECTION (Dual Banner)
   ======================================== */
.hero-section {
    padding: 32px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    height: 500px;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
}

.hero-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px;
    transition: transform var(--transition);
}

.hero-banner:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Left Banner - Soft */
.banner-left {
    background: linear-gradient(135deg, #F6D6E6 0%, #E8B4C8 100%);
}

.banner-left .banner-content {
    max-width: 50%;
    z-index: 2;
}

.banner-left .banner-title {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 12px;
}

.banner-left .banner-text {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

/* Right Banner - Red/Romantic */
.banner-right {
    background: linear-gradient(135deg, #8B1E3F 0%, #C4162A 100%);
    color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.banner-right .banner-content {
    z-index: 2;
    max-width: 80%;
}

.banner-right .banner-title {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 12px;
}

.banner-right .banner-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.banner-image {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    width: 60%;
    z-index: 1;
}

.banner-right .banner-image {
    width: 100%;
    opacity: 0.3;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.payment-badges {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.badge-pill {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 12px;
}

/* Categories Row (3D) */
.categories-section {
    padding: 24px 0;
}

.categories-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 16px;
    justify-content: flex-start;
}

/* Desktop Grid */
@media (min-width: 769px) {
    .categories-row {
        justify-content: space-between;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        overflow-x: visible;
    }
}

.category-card-3d {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--white);
    padding: 16px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    min-width: 100px;
}

.category-card-3d:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.cat-icon-3d {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.cat-icon-3d img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cat-label {
    font-weight: 600;
    font-size: 13px;
    color: var(--text-dark);
}


/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-red {
    background: var(--white);
    color: var(--accent);
    font-weight: 700;
}

.btn-red:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 15px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.btn-block {
    width: 100%;
}

.btn-add-cart {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 0 0 var(--radius) var(--radius);
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(8px);
}

.product-card:hover .btn-add-cart {
    opacity: 1;
    transform: translateY(0);
}

.btn-add-cart:hover {
    background: var(--primary-dark);
}

.btn-add-cart.added {
    background: var(--green);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(24px, 3vw, 36px);
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 15px;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

.section-cta .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
}

.section-cta .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ========================================
   PRODUCT GRID & CARDS
   ======================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.product-card-link {
    display: block;
}

.product-card-image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--bg-main);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-main), #E8E0D6);
    color: var(--text-secondary);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    color: var(--white);
}

.badge-new {
    background: var(--gold);
}

.badge-bestseller {
    background: var(--primary);
}

.badge-sale {
    background: var(--pink);
    color: var(--text-dark);
}

[dir="rtl"] .product-badge {
    left: auto;
    right: 12px;
}

.product-card-info {
    padding: 16px 16px 4px;
}

.product-card-name {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
}

.product-card-price {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
}

.price-current,
.price-sale {
    font-weight: 600;
    color: var(--primary);
    font-size: 16px;
}

.price-sale {
    color: var(--primary);
}

.price-original {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: line-through;
}

/* ========================================
   OCCASIONS GRID
   ======================================== */
.occasions-section {
    background: var(--white);
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.occasion-card {
    display: block;
    text-align: center;
    padding: 32px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    background: var(--bg-main);
}

.occasion-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.occasion-icon {
    color: var(--gold);
    margin-bottom: 12px;
}

.occasion-name {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
}

/* ========================================
   FEATURES (WHY CHOOSE US)
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.feature-card {
    text-align: center;
    padding: 32px 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-icon {
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.feature-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
    background: var(--white);
}

.testimonials-slider {
    display: flex;
    gap: 24px;
    overflow: hidden;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 300px;
    padding: 32px;
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 16px;
}

.testimonial-author {
    font-weight: 600;
    font-size: 13px;
    color: var(--primary);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all var(--transition);
}

.slider-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ========================================
   BLOG
   ======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-main);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 20px;
}

.blog-date {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 18px;
    color: var(--text-dark);
    margin: 8px 0;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.blog-read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
}

/* Blog Post Page */
.blog-post-hero {
    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.blog-post-hero img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.blog-post-title {
    font-family: var(--font-heading);
    font-size: 32px;
    margin: 12px 0 24px;
    color: var(--primary);
}

.blog-body {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-dark);
}

.blog-body h3 {
    font-family: var(--font-heading);
    margin: 24px 0 12px;
    color: var(--primary);
}

.blog-body p {
    margin-bottom: 16px;
}

.back-link {
    display: inline-block;
    margin-bottom: 24px;
    font-weight: 500;
    color: var(--primary);
    font-size: 14px;
}

/* ========================================
   NEWSLETTER
   ======================================== */
.newsletter-section {
    background: var(--primary);
}

.newsletter-inner {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.newsletter-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.newsletter-input-group {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-section .btn-primary {
    background: var(--gold);
    color: var(--text-dark);
    border-color: var(--gold);
}

.newsletter-section .btn-primary:hover {
    background: #C9A06E;
}

/* ========================================
   SHOP PAGE
   ======================================== */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
}

.shop-sidebar {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 24px;
}

.filter-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
}

.filter-option input[type="radio"] {
    accent-color: var(--primary);
}

.price-inputs {
    display: flex;
    gap: 8px;
    align-items: center;
}

.price-inputs span {
    color: var(--text-secondary);
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.results-count {
    font-size: 13px;
    color: var(--text-secondary);
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.sort-wrapper label {
    color: var(--text-secondary);
}

.sort-wrapper select {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    font-size: 13px;
    cursor: pointer;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text-dark);
    transition: all var(--transition);
}

.page-link.active,
.page-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ========================================
   PRODUCT DETAIL
   ======================================== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 40px 0;
}

.gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
}

.gallery-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    cursor: zoom-in;
}

.gallery-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.gallery-thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.7;
    transition: all var(--transition);
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--gold);
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge-inline {
    display: inline-block;
    padding: 4px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    color: var(--white);
    margin-bottom: 12px;
}

.product-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 16px;
}

.product-price-block {
    margin-bottom: 16px;
}

.price-sale-lg {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.price-original-lg {
    font-size: 20px;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-left: 12px;
}

.price-current-lg {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

[dir="rtl"] .price-original-lg {
    margin-left: 0;
    margin-right: 12px;
}

.product-stock {
    margin-bottom: 16px;
}

.stock-available {
    color: var(--green);
    font-weight: 500;
    font-size: 14px;
}

.stock-out {
    color: var(--pink);
    font-weight: 500;
    font-size: 14px;
}

.product-short-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.product-meta {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.meta-item {
    display: block;
    margin-bottom: 4px;
}

/* Quantity */
.qty-selector {
    margin-bottom: 16px;
}

.qty-selector label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.qty-controls {
    display: inline-flex;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
    transition: background var(--transition);
}

.qty-btn:hover {
    background: var(--bg-main);
}

.qty-input {
    width: 56px;
    text-align: center;
    font-weight: 600;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Tabs */
.product-tabs {
    margin-top: 32px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.tab-btn {
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    border-bottom: 2px solid transparent;
    transition: all var(--transition);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--gold);
}

.tab-content {
    display: none;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dark);
}

.tab-content.active {
    display: block;
}

.product-placeholder-lg {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.related-section {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

/* ========================================
   CART
   ======================================== */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-main);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-placeholder-sm {
    width: 100%;
    height: 100%;
    background: var(--bg-main);
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-family: var(--font-heading);
    font-size: 15px;
    margin-bottom: 4px;
}

.cart-item-name a {
    color: var(--text-dark);
}

.cart-item-name a:hover {
    color: var(--primary);
}

.cart-item-price {
    font-size: 14px;
    color: var(--text-secondary);
}

.cart-item-qty {
    display: flex;
    align-items: center;
}

.qty-display {
    padding: 0 16px;
    font-weight: 600;
}

.cart-item-subtotal {
    font-weight: 600;
    color: var(--primary);
    min-width: 80px;
    text-align: right;
}

.cart-remove-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-secondary);
    border-radius: 50%;
    transition: all var(--transition);
}

.cart-remove-btn:hover {
    background: var(--pink);
    color: var(--white);
}

.cart-summary {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.coupon-form {
    margin-bottom: 20px;
}

.coupon-input-group {
    display: flex;
    gap: 8px;
}

.summary-lines {
    margin-bottom: 20px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-dark);
}

.summary-line.total {
    font-weight: 700;
    font-size: 18px;
    border-top: 2px solid var(--border);
    padding-top: 12px;
    margin-top: 8px;
}

.summary-line.discount {
    color: var(--green);
}

/* ========================================
   CHECKOUT
   ======================================== */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
}

.checkout-heading {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.checkout-summary {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.checkout-items {
    margin-bottom: 20px;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.checkout-item-img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-main);
    flex-shrink: 0;
}

.checkout-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-info {
    flex: 1;
}

.checkout-item-name {
    font-size: 13px;
    font-weight: 500;
    display: block;
}

.checkout-item-qty {
    font-size: 12px;
    color: var(--text-secondary);
}

.checkout-item-price {
    font-weight: 600;
    font-size: 13px;
}

/* Forms */
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    font-size: 14px;
    color: var(--text-dark);
    transition: border-color var(--transition);
}

.form-input:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 126, 0.15);
}

.form-input-sm {
    padding: 8px 12px;
}

.form-textarea {
    resize: vertical;
}

.form-group {
    margin-bottom: 16px;
}

.form-row {
    margin-bottom: 0;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Payment */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}

.payment-option:hover,
.payment-option.active {
    border-color: var(--gold);
}

.payment-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.payment-option input {
    accent-color: var(--primary);
}

/* Confirmation */
.confirmation-card {
    max-width: 560px;
    margin: 0 auto;
    padding: 48px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.confirmation-icon {
    margin-bottom: 24px;
}

.confirmation-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
}

.confirmation-text {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.order-number-display {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.order-details-card {
    background: var(--bg-main);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 32px;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-hero {
    text-align: center;
    padding: 48px 0 32px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 8px;
}

.about-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

.about-content {
    max-width: 700px;
    margin: 0 auto 48px;
}

.about-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-dark);
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
}

.about-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.values-list li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
}

.values-list li::before {
    content: '✦ ';
    color: var(--gold);
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
}

.contact-form {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--gold);
}

[dir="rtl"] .contact-info-card {
    border-left: none;
    border-right: 3px solid var(--gold);
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========================================
   ERROR PAGE
   ======================================== */
.error-page {
    padding: 120px 0;
    text-align: center;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 120px;
    color: var(--gold);
    opacity: 0.5;
}

.error-message {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ========================================
   EMPTY STATE
   ======================================== */
.empty-state {
    text-align: center;
    padding: 64px 0;
    color: var(--text-secondary);
}

.empty-state svg {
    margin-bottom: 16px;
    opacity: 0.4;
}

.empty-state p {
    margin-bottom: 24px;
    font-size: 16px;
}

/* ========================================
   FLASH MESSAGE
   ======================================== */
.flash-message {
    position: fixed;
    top: 90px;
    right: 24px;
    z-index: 9999;
    padding: 16px 48px 16px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    animation: slideInRight 0.3s ease-out;
}

[dir="rtl"] .flash-message {
    right: auto;
    left: 24px;
    animation: slideInLeft 0.3s ease-out;
}

.flash-success {
    background: var(--green);
    color: var(--white);
}

.flash-error {
    background: var(--pink);
    color: var(--text-dark);
}

.flash-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 20px;
    cursor: pointer;
    background: none;
    border: none;
    color: inherit;
}

[dir="rtl"] .flash-close {
    right: auto;
    left: 12px;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    color: var(--white);
    font-size: 20px;
}

.footer-logo .logo-sub {
    color: var(--gold);
}

.footer-about {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-heading {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 15px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.badge-item svg {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-badges {
        gap: 24px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .product-grid,
    .product-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero {
        height: 70vh;
        min-height: 400px;
    }

    .hero-title {
        letter-spacing: 3px;
    }

    .testimonials-slider {
        flex-direction: column;
    }

    .testimonial-card {
        flex: 1;
        min-width: auto;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .cart-item {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .occasions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-inner {
        gap: 8px;
    }

    .lang-toggle {
        font-size: 11px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }
}
/* ========================================
   HERO SECTION (Dual Banner) REMEDIES
   ======================================== */
.hero-section { padding: 32px 0; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    height: 500px;
}
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; height: auto; }
}

.hero-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px;
    transition: transform var(--transition);
}
.hero-banner:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Left Banner - Soft */
.banner-left { background: linear-gradient(135deg, #F6D6E6 0%, #E8B4C8 100%); }
.banner-left .banner-content { max-width: 50%; z-index: 2; }
.banner-left .banner-title {
    font-family: var(--font-heading); font-size: 42px;
    color: var(--primary-dark); line-height: 1.1; margin-bottom: 12px;
}
.banner-left .banner-text { font-size: 16px; color: var(--text-dark); margin-bottom: 24px; }

/* Right Banner - Red/Romantic */
.banner-right {
    background: linear-gradient(135deg, #8B1E3F 0%, #C4162A 100%);
    color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.banner-right .banner-content { z-index: 2; max-width: 80%; }
.banner-right .banner-title {
    font-family: var(--font-heading); font-size: 36px;
    color: var(--white); line-height: 1.1; margin-bottom: 12px;
}
.banner-right .banner-text { font-size: 15px; color: rgba(255, 255, 255, 0.9); margin-bottom: 24px; }
.banner-image { position: absolute; right: 0; bottom: 0; top: 0; width: 60%; z-index: 1; }
.banner-right .banner-image { width: 100%; opacity: 0.3; }
.banner-image img { width: 100%; height: 100%; object-fit: cover; }
.banner-tag {
    display: inline-block; padding: 6px 12px;
    background: rgba(255, 255, 255, 0.6); border-radius: 20px;
    font-size: 12px; font-weight: 600; color: var(--primary-dark); margin-bottom: 16px;
}

.payment-badges { display: flex; gap: 8px; margin-top: 24px; }
.badge-pill {
    background: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white); font-size: 10px; padding: 4px 10px; border-radius: 12px;
}

/* Categories Row (3D) */
.categories-section { padding: 24px 0; }
.categories-row {
    display: flex; gap: 20px; overflow-x: auto; padding-bottom: 16px; justify-content: flex-start;
}
@media (min-width: 769px) {
    .categories-row {
        justify-content: space-between; display: grid;
        grid-template-columns: repeat(6, 1fr); overflow-x: visible;
    }
}
.category-card-3d {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    background: var(--white); padding: 16px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); transition: all var(--transition); min-width: 100px;
}
.category-card-3d:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.cat-icon-3d { width: 64px; height: 64px; margin-bottom: 12px; filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1)); }
.cat-icon-3d img { width: 100%; height: 100%; object-fit: contain; }
.cat-label { font-weight: 600; font-size: 13px; color: var(--text-dark); }


/* ========================================
   HERO SECTION (Dual Banner) REMEDIES
   ======================================== */
.hero-section { padding: 32px 0; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    height: 500px;
}
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; height: auto; }
}

.hero-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px;
    transition: transform var(--transition);
}
.hero-banner:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Left Banner - Soft */
.banner-left { background: linear-gradient(135deg, #F6D6E6 0%, #E8B4C8 100%); }
.banner-left .banner-content { max-width: 50%; z-index: 2; }
.banner-left .banner-title {
    font-family: var(--font-heading); font-size: 42px;
    color: var(--primary-dark); line-height: 1.1; margin-bottom: 12px;
}
.banner-left .banner-text { font-size: 16px; color: var(--text-dark); margin-bottom: 24px; }

/* Right Banner - Red/Romantic */
.banner-right {
    background: linear-gradient(135deg, #8B1E3F 0%, #C4162A 100%);
    color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.banner-right .banner-content { z-index: 2; max-width: 80%; }
.banner-right .banner-title {
    font-family: var(--font-heading); font-size: 36px;
    color: var(--white); line-height: 1.1; margin-bottom: 12px;
}
.banner-right .banner-text { font-size: 15px; color: rgba(255, 255, 255, 0.9); margin-bottom: 24px; }
.banner-image { position: absolute; right: 0; bottom: 0; top: 0; width: 60%; z-index: 1; }
.banner-right .banner-image { width: 100%; opacity: 0.3; }
.banner-image img { width: 100%; height: 100%; object-fit: cover; }
.banner-tag {
    display: inline-block; padding: 6px 12px;
    background: rgba(255, 255, 255, 0.6); border-radius: 20px;
    font-size: 12px; font-weight: 600; color: var(--primary-dark); margin-bottom: 16px;
}

.payment-badges { display: flex; gap: 8px; margin-top: 24px; }
.badge-pill {
    background: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white); font-size: 10px; padding: 4px 10px; border-radius: 12px;
}

/* Categories Row (3D) */
.categories-section { padding: 24px 0; }
.categories-row {
    display: flex; gap: 20px; overflow-x: auto; padding-bottom: 16px; justify-content: flex-start;
}
@media (min-width: 769px) {
    .categories-row {
        justify-content: space-between; display: grid;
        grid-template-columns: repeat(6, 1fr); overflow-x: visible;
    }
}
.category-card-3d {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    background: var(--white); padding: 16px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); transition: all var(--transition); min-width: 100px;
}
.category-card-3d:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.cat-icon-3d { width: 64px; height: 64px; margin-bottom: 12px; filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1)); }
.cat-icon-3d img { width: 100%; height: 100%; object-fit: contain; }
.cat-label { font-weight: 600; font-size: 13px; color: var(--text-dark); }

