@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap');

/* ==========================================================================
   FEE NAS TOYS STORE - GLOBAL DESIGN SYSTEM & STYLES (Kuwait-Only E-Commerce)
   ========================================================================== */
:root {
    /* Playful & Gender-Neutral Color Scheme (Boys & Girls) */
    --primary-indigo: hsl(250, 75%, 62%);
    --primary-indigo-hover: hsl(250, 75%, 52%);
    --primary-indigo-light: hsl(250, 100%, 97%);
    --primary-indigo-glow: hsla(250, 75%, 62%, 0.15);
    
    --accent-coral: hsl(15, 100%, 62%);
    --accent-coral-hover: hsl(15, 100%, 55%);
    --accent-coral-light: hsl(15, 100%, 97%);
    
    --accent-mint: hsl(165, 75%, 42%);
    --accent-mint-hover: hsl(165, 75%, 35%);
    --accent-mint-light: hsl(165, 100%, 97%);
    
    --accent-gold: hsl(45, 100%, 55%);
    
    --dark-slate: hsl(220, 25%, 15%);
    --text-muted: hsl(220, 10%, 45%);
    
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --border-color: hsl(220, 20%, 92%);
    --header-bg: rgba(255, 255, 255, 0.9);
    --header-bg-gradient: linear-gradient(270deg, rgba(255, 240, 245, 0.65), rgba(240, 244, 255, 0.65), rgba(240, 253, 250, 0.65));
    --footer-bg: hsl(220, 25%, 15%);
    
    /* Theme Adaptable Backgrounds */
    --bg-page: var(--white);
    --bg-section-alt: #fffafd;
    --bg-card: var(--white);
    --border-pink: #ffe4ec;
    --bg-hero-pink: linear-gradient(135deg, #fff2f5 0%, #ffe4ec 100%);
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(250, 100%, 97%) 0%, hsl(165, 100%, 97%) 50%, hsl(15, 100%, 97%) 100%);
    --gradient-primary: linear-gradient(135deg, var(--primary-indigo) 0%, hsl(265, 80%, 60%) 100%);
    --gradient-coral: linear-gradient(135deg, var(--accent-coral) 0%, hsl(355, 90%, 60%) 100%);
    --gradient-mint: linear-gradient(135deg, var(--accent-mint) 0%, hsl(180, 80%, 45%) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 20px -3px rgba(80, 60, 200, 0.06), 0 4px 8px -2px rgba(80, 60, 200, 0.03);
    --shadow-lg: 0 20px 30px -5px rgba(80, 60, 200, 0.1), 0 10px 15px -5px rgba(80, 60, 200, 0.04);
    --shadow-glow: 0 0 20px var(--primary-indigo-glow);
    
    /* Layout Tokens */
    --border-radius-sm: 10px;
    --border-radius-md: 20px;
    --border-radius-lg: 28px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --white: hsl(220, 25%, 12%);
    --light-gray: hsl(220, 25%, 10%);
    --dark-slate: #f5f7fa;
    --text-muted: hsl(220, 10%, 75%);
    --border-color: hsl(220, 20%, 20%);
    --gradient-hero: linear-gradient(135deg, hsl(250, 40%, 15%) 0%, hsl(165, 40%, 15%) 50%, hsl(15, 40%, 15%) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(20, 20, 30, 0.8) 0%, rgba(20, 20, 30, 0.4) 100%);
    --primary-indigo-light: hsl(250, 30%, 15%);
    --accent-coral-light: hsl(15, 30%, 15%);
    --accent-mint-light: hsl(165, 30%, 15%);
    --header-bg: rgba(20, 20, 30, 0.9);
    --header-bg-gradient: linear-gradient(270deg, rgba(45, 20, 40, 0.65), rgba(30, 27, 75, 0.65), rgba(15, 35, 30, 0.65));
    --footer-bg: hsl(220, 25%, 6%);
    
    --bg-page: hsl(220, 25%, 8%);
    --bg-section-alt: hsl(220, 25%, 11%);
    --bg-card: hsl(220, 25%, 14%);
    --border-pink: hsl(340, 30%, 22%);
    --bg-hero-pink: linear-gradient(135deg, hsl(340, 40%, 12%) 0%, hsl(340, 30%, 16%) 100%);
}

/* ==========================================================================
   RESET & CORE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    color: var(--dark-slate);
    background-color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

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

input, select, textarea {
    font-family: inherit;
    outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--primary-indigo-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-indigo);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-indigo-hover);
}

/* ==========================================================================
   ANNOUNCEMENT & HEADER
   ========================================================================== */
.announcement-bar {
    background: var(--gradient-primary);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 0;
    position: relative;
    z-index: 1000;
}

.bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.bar-phone {
    display: flex;
    align-items: center;
    gap: 6px;
}

.phone-link:hover {
    text-decoration: underline;
}

.main-header {
    background: var(--header-bg-gradient);
    background-size: 400% 400%;
    animation: waveBg 15s ease infinite;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1.5px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 38px 0; /* Increased by 26px top & bottom (52px total) for a premium taller design */
    transition: var(--transition-fast);
}

.main-header.scrolled {
    padding: 20px 0; /* Increased scrolled padding */
    box-shadow: var(--shadow-sm);
}

@keyframes waveBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.logo-fallback {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

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

.logo-main {
    font-family: 'Fredoka', 'Cairo', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(to right, #ff5a5f, #ff7a00, #ffc000, #00b4a0, #503cc8, #ff5a5f);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    letter-spacing: -0.5px;
    animation: rgbShift 3s linear infinite;
}

.rgb-wave-text {
    background: linear-gradient(to right, #ff5a5f, #ff7a00, #ffc000, #00b4a0, #503cc8, #ff5a5f) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block !important;
    animation: rgbShift 3s linear infinite !important;
}

@keyframes rgbShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.logo-sub {
    font-family: 'Fredoka', 'Cairo', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-mint);
    text-transform: uppercase;
    margin-top: 1px;
}

/* Search bar header */
.header-search {
    flex-grow: 1;
    max-width: 450px;
    position: relative;
}

.header-search input {
    width: 100%;
    padding: 10px 42px 10px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.header-search input:focus {
    border-color: var(--primary-indigo);
    box-shadow: var(--shadow-glow);
}

.header-search i {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    color: var(--text-muted);
}

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

.cart-btn {
    background: var(--primary-indigo-light);
    color: var(--primary-indigo);
    border: 1.5px solid transparent;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: var(--transition-fast);
}

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

.cart-count {
    background: var(--accent-coral);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    left: -8px;
    box-shadow: 0 2px 6px rgba(255, 60, 60, 0.2);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 25px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--dark-slate);
    border-radius: 2px;
}

/* ==========================================================================
   HERO STORE BANNER
   ========================================================================== */
.store-hero {
    background: var(--gradient-hero);
    padding: 50px 0 60px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1.5px solid var(--border-color);
}

.store-hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-indigo);
    margin-bottom: 16px;
}

.store-hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 16px;
}

.highlight-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.store-hero p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 550px;
    margin-bottom: 24px;
}

.hero-stats-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-stat-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid var(--border-color);
    padding: 12px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.hero-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-stat-card i {
    font-size: 1.4rem;
    color: var(--accent-coral);
}

.stat-info h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--dark-slate);
}

.stat-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.hero-art-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.floating-bubbles {
    width: 250px;
    height: 250px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(40px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-toy-collage {
    position: relative;
    z-index: 2;
    max-height: 280px;
    animation: floating-bounce 4s ease-in-out infinite;
}

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

/* ==========================================================================
   CATALOG GRID & FILTER TABS
   ========================================================================== */
.catalog-section {
    padding: 60px 0;
    background: var(--white);
}

.filter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.category-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
}

.tab-btn {
    background: var(--light-gray);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 12px;
    border: 1.5px solid transparent;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: var(--primary-indigo);
    border-color: var(--primary-indigo-light);
    background: var(--primary-indigo-light);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 10px var(--primary-indigo-glow);
}

.catalog-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.filter-controls-group {
    display: flex;
    gap: 16px;
    align-items: center;
}

.age-filter-wrapper,
.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-select,
.age-select {
    padding: 8px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    background-color: var(--white);
    color: var(--dark-slate);
    cursor: pointer;
    transition: var(--transition-fast);
}

.sort-select:focus,
.age-select:focus {
    border-color: var(--primary-indigo);
    outline: none;
}

/* Products grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--white);
    border: 1.5px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-indigo-light);
}

.card-img-wrapper {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background-color: var(--light-gray);
}

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

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

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-coral);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    z-index: 2;
}

.card-details {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-code {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary-indigo);
    margin-bottom: 6px;
    display: inline-block;
}

.card-title {
    font-size: 0.95rem;
    font-weight: 750;
    line-height: 1.4;
    color: var(--dark-slate);
    margin-bottom: 12px;
    height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
}

.card-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--accent-coral);
}

.add-to-cart-btn {
    background: var(--primary-indigo-light);
    color: var(--primary-indigo);
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.add-to-cart-btn:hover {
    background: var(--primary-indigo);
    color: var(--white);
    transform: scale(1.05);
}

/* Load more action */
.load-more-row {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.btn-load-more {
    background: var(--white);
    color: var(--primary-indigo);
    border: 2px solid var(--primary-indigo);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 12px 30px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.btn-load-more:hover {
    background: var(--primary-indigo-light);
    transform: translateY(-2px);
}

/* No results state */
.no-results {
    text-align: center;
    padding: 60px 0;
    display: none;
}

.no-results i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.no-results h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

/* ==========================================================================
   DYNAMIC PRODUCT PAGE SPECIFIC STYLES
   ========================================================================== */
.product-details-section {
    padding: 50px 0 80px 0;
}

.product-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

/* Gallery viewer styling */
.gallery-viewer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.main-image-box {
    border: 1.5px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: var(--light-gray);
    box-shadow: var(--shadow-sm);
}

.main-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.main-image-box:hover img {
    transform: scale(1.05);
}

.thumbnail-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
}

.thumb-item {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    border: 1.5px solid var(--border-color);
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    background: var(--light-gray);
    transition: var(--transition-fast);
}

.thumb-item.active {
    border-color: var(--primary-indigo);
    box-shadow: var(--shadow-glow);
}

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

/* Product Info Info */
.product-info-box {
    display: flex;
    flex-direction: column;
}

.prod-code-badge {
    background: var(--primary-indigo-light);
    color: var(--primary-indigo);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 16px;
}

.prod-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 12px;
}

.prod-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent-coral);
    margin-bottom: 24px;
}

.prod-specs-box {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 28px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.prod-specs-title {
    font-weight: 800;
    color: var(--dark-slate);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prod-specs-title i {
    color: var(--primary-indigo);
}

/* Gift wrapping options */
.gift-wrapping-section {
    border: 1.5px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 28px;
    background: var(--white);
}

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

.wrapping-header h3 {
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wrapping-header h3 i {
    color: var(--accent-coral);
}

.wrapping-free-badge {
    background: var(--accent-mint-light);
    color: var(--accent-mint);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 6px;
}

.wrapping-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 12px;
}

.wrapping-item {
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    padding: 6px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.wrapping-item.active {
    border-color: var(--primary-indigo);
    background: var(--primary-indigo-light);
}

.wrap-preview, .card-preview {
    aspect-ratio: 1/1;
    background-color: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
}

.wrap-preview img, .card-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrap-title, .card-title {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
}

.wrapping-item.active .wrap-title {
    color: var(--primary-indigo);
}

/* Purchase action block */
.purchase-action-block {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.qty-control button {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    background: var(--light-gray);
    transition: var(--transition-fast);
}

.qty-control button:hover {
    background: var(--border-color);
}

.qty-control span {
    width: 44px;
    text-align: center;
    font-weight: 800;
    font-size: 1rem;
}

.btn-add-cart-large {
    flex-grow: 1;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px var(--primary-indigo-glow);
    transition: var(--transition-fast);
}

.btn-add-cart-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-indigo-glow);
}

.trust-bullets {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    border-top: 1.5px solid var(--border-color);
    padding-top: 20px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-muted);
}

.bullet-item i {
    color: var(--accent-mint);
    font-size: 0.95rem;
}

/* Carousel products layout */
.similar-products-section {
    padding: 60px 0;
    background: var(--light-gray);
    border-top: 1.5px solid var(--border-color);
}

.carousel-outer-wrapper {
    position: relative;
    margin-top: 30px;
}

.carousel-viewport {
    overflow-x: auto;
    display: flex;
    gap: 20px;
    padding: 10px 0 20px 0;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.carousel-viewport::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome */
}

.carousel-item {
    width: 260px;
    flex-shrink: 0;
}

/* Related static products grid */
.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .related-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.carousel-control-btn {
    width: 44px;
    height: 44px;
    background: var(--white);
    color: var(--primary-indigo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    transition: var(--transition-fast);
}

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

.carousel-prev { right: -22px; }
.carousel-next { left: -22px; }

/* ==========================================================================
   CHECKOUT PAGE SPECIFIC STYLES
   ========================================================================== */
.checkout-section {
    padding: 50px 0 80px 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: flex-start;
}

.checkout-form-card {
    background: var(--white);
    border: 1.5px solid var(--border-color);
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.checkout-summary-card {
    background: var(--light-gray);
    border: 1.5px solid var(--border-color);
    border-radius: 24px;
    padding: 30px;
    position: sticky;
    top: 100px;
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    max-height: 250px;
    overflow-y: auto;
    padding-left: 6px;
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

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

.order-item-thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--white);
    border: 1px solid var(--border-color);
}

.order-item-desc {
    flex-grow: 1;
}

.order-item-title {
    font-size: 0.85rem;
    font-weight: 750;
    line-height: 1.3;
}

.order-item-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.order-item-price {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--dark-slate);
    white-space: nowrap;
}

.checkout-summary-box {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border-color);
}

/* Form inputs styling */
.form-group-row {
    margin-bottom: 20px;
}

.form-group-row.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 750;
    color: var(--dark-slate);
}

.form-group label .required {
    color: var(--accent-coral);
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.input-wrapper input, .input-wrapper select {
    width: 100%;
    padding: 12px 38px 12px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    background-color: var(--white);
    color: var(--dark-slate);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.input-wrapper input:focus, .input-wrapper select:focus {
    border-color: var(--primary-indigo);
    box-shadow: var(--shadow-glow);
}

.input-wrapper input:focus + i, .input-wrapper select:focus + i {
    color: var(--primary-indigo);
}

.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    background-color: var(--white);
    color: var(--dark-slate);
    font-size: 0.9rem;
    font-weight: 600;
    min-height: 80px;
    resize: vertical;
    transition: var(--transition-fast);
}

.form-group textarea:focus {
    border-color: var(--primary-indigo);
    box-shadow: var(--shadow-glow);
}

.btn-checkout-submit {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--primary-indigo-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.btn-checkout-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-indigo-glow);
}

/* ==========================================================================
   SHOPPING CART DRAWER (SIDE SLIDE)
   ========================================================================== */
.cart-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -380px; /* Slide-in from left */
    width: 360px;
    max-width: 100%;
    background: var(--white);
    z-index: 1001;
    box-shadow: 5px 0 25px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: left var(--transition-normal);
}

.cart-drawer.active {
    left: 0;
}

.cart-drawer-header {
    padding: 20px;
    border-bottom: 1.5px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    font-size: 1.15rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-drawer-header h3 i {
    color: var(--primary-indigo);
}

.close-cart-drawer {
    font-size: 1.4rem;
    color: var(--dark-slate);
}

.cart-drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--text-muted);
}

.cart-empty-state i {
    font-size: 3rem;
    color: var(--border-color);
    margin-bottom: 12px;
}

.cart-item-card {
    display: flex;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

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

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--light-gray);
    border: 1px solid var(--border-color);
}

.cart-item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-title {
    font-size: 0.85rem;
    font-weight: 750;
    line-height: 1.3;
    max-height: 34px;
    overflow: hidden;
}

.cart-item-price {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--accent-coral);
}

.cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.cart-qty-btn {
    width: 24px;
    height: 24px;
    background: var(--light-gray);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-qty-num {
    font-size: 0.85rem;
    font-weight: 800;
    min-width: 20px;
    text-align: center;
}

.remove-cart-item {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.remove-cart-item:hover {
    color: var(--accent-coral);
}

.cart-drawer-footer {
    padding: 20px;
    border-top: 1.5px solid var(--border-color);
    background-color: var(--light-gray);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cart-total-price {
    font-size: 1.25rem;
    color: var(--accent-coral);
}

.btn-cart-checkout {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px;
    border-radius: 10px;
    font-weight: 800;
    text-align: center;
    display: block;
    box-shadow: 0 4px 12px var(--primary-indigo-glow);
}

.btn-cart-checkout:hover {
    transform: translateY(-2px);
}

/* Cart Overlay Drawer background */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   WHY US TRUST ROW
   ========================================================================== */
.why-trust-row {
    background: var(--primary-indigo-light);
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.why-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-trust-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.why-trust-card i {
    font-size: 2rem;
    color: var(--primary-indigo);
}

.why-trust-card h3 {
    font-size: 1rem;
    font-weight: 800;
}

.why-trust-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 250px;
}

/* ==========================================================================
   MODALS (ORDER SUCCESS)
   ========================================================================== */
.success-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 480px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 1003;
    padding: 30px;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-modal.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    z-index: 1002;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: block;
    opacity: 1;
}

.modal-card {
    text-align: center;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: hsl(150, 80%, 95%);
    color: hsl(150, 80%, 40%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 16px auto;
}

.modal-card h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.modal-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.modal-order-summary {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 16px;
    text-align: right;
    font-size: 0.85rem;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.modal-order-summary p {
    margin-bottom: 6px;
}
.modal-order-summary p:last-child {
    margin-bottom: 0;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-modal-close {
    background: var(--light-gray);
    color: var(--dark-slate);
    font-weight: 700;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.9rem;
}

.btn-modal-close:hover {
    background: var(--border-color);
}

.btn-modal-whatsapp {
    background-color: #25d366;
    color: var(--white);
    font-weight: 800;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(37,211,102,0.3);
}

.btn-modal-whatsapp:hover {
    background-color: #20ba56;
}

/* ==========================================================================
   FOOTER STYLE
   ========================================================================== */
.main-footer {
    background-color: var(--footer-bg, #1e293b);
    color: #f8fafc !important;
    padding: 60px 0 20px 0;
    border-top: 4px solid var(--primary-indigo);
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-main {
    background: none !important;
    -webkit-text-fill-color: var(--white) !important;
    color: var(--white) !important;
}

.brand-desc {
    color: #cbd5e1;
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: #ffffff !important;
}

.social-links a:hover {
    background: var(--primary-indigo);
    transform: translateY(-2px);
}

.footer-links-col h3, .footer-contact-col h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 8px;
    display: inline-block;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 0.85rem;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    opacity: 1;
    padding-right: 6px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.85rem;
    color: #cbd5e1;
    opacity: 0.85;
}

.contact-info i {
    font-size: 1rem;
    color: var(--primary-indigo-light);
    margin-top: 3px;
}

.footer-contact-link {
    color: #cbd5e1;
    transition: var(--transition-fast);
}

.footer-contact-link:hover {
    color: var(--white);
    text-decoration: underline;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.payment-methods i {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.4);
}

.cod-badge {
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-indigo-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cod-badge i {
    font-size: 0.85rem;
    color: var(--accent-mint);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--primary-indigo-light);
    opacity: 0.7;
}

.developer-link {
    font-weight: 800;
    background: linear-gradient(to right, #ff0055, #00ff66, #00ffff, #ff00ff, #ff0055);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: rgbGradFlow 3s linear infinite;
    display: inline-block;
    transition: var(--transition-fast);
}

.developer-link:hover {
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
    text-decoration: none;
}

@keyframes rgbGradFlow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition-normal);
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
}

/* ==========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px; /* Matching the diameter of floating WhatsApp button */
    height: 60px;
    background: var(--gradient-primary);
    color: #ffffff !important;
    border-radius: 50%; /* Circular shape */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px var(--primary-indigo-glow);
    z-index: 998;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.8);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.scroll-to-top.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px var(--primary-indigo-glow);
}

.scroll-to-top i {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-3px);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    .store-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .store-hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats-row {
        justify-content: center;
    }
    
    .product-gallery-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .main-image-box {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .checkout-summary-card {
        position: static;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-brand .logo, .social-links, .payment-methods {
        justify-content: center;
    }
    
    .bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .announcement-bar {
        font-size: 0.75rem;
    }
    
    .bar-content {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .store-hero h1 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
        gap: 16px;
    }
    
    .product-card {
        border-radius: 16px;
    }
    
    .card-details {
        padding: 12px;
    }
    
    .card-title {
        font-size: 0.85rem;
        height: 38px;
    }
    
    .card-price {
        font-size: 1rem;
    }
    
    .add-to-cart-btn {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        font-size: 0.95rem;
    }
    
    .cart-drawer {
        width: 300px;
        left: -320px;
    }
    
    .checkout-form-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .form-group-row.split {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   DOLLHOUSE LANDING PAGE LUXURY STYLING
   ========================================================================== */
.dollhouse-hero {
    background: linear-gradient(135deg, #fff2f5 0%, #ffe4ec 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.sparkles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(209,77,114,0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.dollhouse-hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 991px) {
    .dollhouse-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
}

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

@media (max-width: 991px) {
    .hero-content {
        align-items: center;
    }
}

.hero-badge {
    background: white;
    border: 1px solid #ffe4ec;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #d14d72;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.35;
    color: #2d2727;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
}

.highlight-pink {
    color: #d14d72;
    background: linear-gradient(120deg, rgba(209, 77, 114, 0.08) 0%, rgba(209, 77, 114, 0.15) 100%);
    padding: 0 8px;
    border-radius: 8px;
}

.hero-desc {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 650px;
}

.hero-price-card {
    background: white;
    border: 1.5px solid #ffe4ec;
    border-radius: 20px;
    padding: 20px 24px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(209, 77, 114, 0.04);
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: #d14d72;
}

.old-price {
    font-size: 1.4rem;
    color: #a0a0a0;
    text-decoration: line-through;
}

.discount-badge {
    background: #ff4a7a;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255, 74, 122, 0.25);
}

.currency-alternative {
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
}

.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    text-align: right;
}

.hero-bullets .bullet-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #444;
}

.hero-bullets .bullet-item i {
    color: #d14d72;
    font-size: 1.1rem;
}

.nav-cta-btn {
    background: linear-gradient(135deg, #ff4a7a 0%, #d14d72 100%);
    color: white !important;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(209, 77, 114, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-order-now {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff4a7a 0%, #d14d72 100%);
    color: white !important;
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 1.15rem;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(209, 77, 114, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Pulse Glow & Slide Shine Animations */
.nav-cta-btn, .btn-order-now {
    animation: btnPulse 2s infinite alternate;
}

.nav-cta-btn::before, .btn-order-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: btnShine 3.5s infinite;
}

.nav-cta-btn:hover, .btn-order-now:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(209, 77, 114, 0.5);
    filter: brightness(1.05);
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 4px 15px rgba(209, 77, 114, 0.3);
    }
    100% {
        box-shadow: 0 8px 28px rgba(209, 77, 114, 0.6);
    }
}

@keyframes btnShine {
    0% { left: -150%; }
    25% { left: 150%; }
    100% { left: 150%; }
}

.gift-badges {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .gift-badges {
        justify-content: center;
    }
}

.gift-badge {
    background: white;
    border: 1.5px dashed #d14d72;
    color: #d14d72;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-main-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(209, 77, 114, 0.15));
    animation: float 6s ease-in-out infinite;
}

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

.floating-badge-car {
    position: absolute;
    bottom: -10px;
    right: 10px;
    background: white;
    border-radius: 20px;
    padding: 10px 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 120px;
    border: 1.5px solid #ffe4ec;
}

.floating-badge-car img {
    width: 60px;
    height: auto;
}

.floating-badge-car span {
    font-size: 0.75rem;
    font-weight: 700;
    color: #d14d72;
}

/* Features */
.features-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #2d2727;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 1rem;
    color: #777;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fffafd;
    border: 1.5px solid #ffe4ec;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(209, 77, 114, 0.06);
    border-color: #d14d72;
}

.feature-icon {
    font-size: 2.6rem;
    color: #d14d72;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #2d2727;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.65;
}

/* Floor Tour */
.floor-tour-section {
    padding: 80px 0;
    background: #fffafd;
}

.floor-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.floor-tab-btn {
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1.5px solid #ffe4ec;
    background: white;
    color: #666;
    transition: all 0.3s ease;
}

.floor-tab-btn:hover {
    border-color: #d14d72;
    color: #d14d72;
}

.floor-tab-btn.active {
    background: linear-gradient(135deg, #ff4a7a 0%, #d14d72 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(209, 77, 114, 0.25);
}

.tour-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 991px) {
    .tour-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.tour-text-side {
    position: relative;
    min-height: 250px;
}

.floor-content {
    display: none;
}

.floor-content.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

.floor-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #2d2727;
    margin-bottom: 16px;
}

.floor-text-desc {
    font-size: 1rem;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.7;
}

.floor-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floor-bullets li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #444;
}

.floor-bullets li i {
    color: #4caf50;
}

.tour-image-side {
    display: flex;
    justify-content: center;
}

.floor-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 450px;
    border-radius: 28px;
    overflow: hidden;
    border: 6px solid white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    background: #fff;
}

.floor-img-focus {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform-origin 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.zoom-top {
    transform: scale(2.0);
    transform-origin: center 10%;
}

.zoom-mid-upper {
    transform: scale(2.0);
    transform-origin: center 36%;
}

.zoom-mid-lower {
    transform: scale(2.0);
    transform-origin: center 64%;
}

.zoom-bottom-all {
    transform: scale(1.0);
    transform-origin: center center;
}

.zoom-indicator {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(4px);
    pointer-events: none;
}

/* Accessories */
.accessories-section {
    padding: 80px 0;
    background: white;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-nav-btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    border: 1.5px solid #ffe4ec;
    background: white;
    color: #666;
    transition: all 0.3s ease;
}

.gallery-nav-btn:hover {
    border-color: #d14d72;
    color: #d14d72;
}

.gallery-nav-btn.active {
    background: #ffe4ec;
    color: #d14d72;
    border-color: #d14d72;
}

.gallery-slides {
    position: relative;
}

.gallery-slide {
    display: none;
}

.gallery-slide.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

.slide-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

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

.slide-image {
    display: flex;
    justify-content: center;
    background: #fffafd;
    border-radius: 24px;
    padding: 20px;
    border: 1px dashed #ffe4ec;
}

.gallery-main-img {
    max-height: 350px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.04));
}

.slide-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2d2727;
    margin-bottom: 16px;
}

.slide-info p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.slide-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.slide-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
}

.slide-list li i {
    margin-top: 4px;
}

/* Reviews */
.reviews-section {
    padding: 80px 0;
    background: #fffafd;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    border: 1.5px solid #ffe4ec;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #ffc107;
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.95rem;
    color: #444;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.reviewer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f6f6f6;
    padding-top: 14px;
    font-size: 0.8rem;
}

.reviewer-name {
    font-weight: 700;
    color: #2d2727;
}

.reviewer-location {
    color: #28a745;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.faq-item.active {
    border-color: #d14d72;
    box-shadow: 0 4px 15px rgba(209, 77, 114, 0.03);
}

.faq-trigger {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: #2d2727;
    text-align: right;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-trigger i {
    font-size: 0.85rem;
    color: #d14d72;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-trigger i {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fffafd;
}

.faq-content p {
    padding: 0 24px 20px 24px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Checkout Form Section */
.checkout-form-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fffafd 0%, #fff2f5 100%);
}

.checkout-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .checkout-layout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.order-summary-card, .client-form-card {
    background: white;
    border-radius: 28px;
    padding: 40px;
    border: 1.5px solid #ffe4ec;
    box-shadow: 0 15px 35px rgba(209, 77, 114, 0.02);
}

@media (max-width: 480px) {
    .order-summary-card, .client-form-card {
        padding: 24px 16px;
    }
}

.order-summary-card h3, .client-form-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #2d2727;
    margin-bottom: 8px;
}

.section-desc-light {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 24px;
}

.offers-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 24px;
}

.offer-pill {
    border: 2px solid #ffe4ec;
    border-radius: 18px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: #fff;
}

.offer-pill:hover {
    border-color: #ff9ebb;
}

.offer-pill.active {
    border-color: #d14d72;
    background: #fef2f4;
    box-shadow: 0 8px 20px rgba(209, 77, 114, 0.06);
}

.pill-radio {
    font-size: 1.2rem;
    color: #d14d72;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pill-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pill-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2d2727;
}

.pill-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: #d14d72;
    display: flex;
    align-items: center;
    gap: 8px;
}

.text-free {
    font-size: 0.75rem;
    font-weight: 700;
    color: #28a745;
    background: #e8f5e9;
    padding: 2px 8px;
    border-radius: 12px;
}

.text-badge-red {
    font-size: 0.75rem;
    font-weight: 700;
    color: #d32f2f;
    background: #ffebee;
    padding: 2px 8px;
    border-radius: 12px;
}

.popular-tag {
    position: absolute;
    top: -10px;
    left: 20px;
    background: #ff4a7a;
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.invoice-summary-box {
    background: #fffafd;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #ffe4ec;
    margin-bottom: 24px;
}

.invoice-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

.invoice-row strong {
    color: #2d2727;
}

.invoice-row.total-row {
    margin-top: 10px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #2d2727;
    border-top: 1.5px dashed #ffe4ec;
    padding-top: 12px;
}

.invoice-row.total-row .text-coral {
    color: #ff4a7a;
    font-size: 1.3rem;
    font-weight: 900;
}

.text-mint {
    color: #28a745;
}

.trust-icons-row {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    margin-top: 20px;
    border-top: 1.5px dashed #ffe4ec;
    padding-top: 20px;
}

.trust-icon-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #666;
}

.trust-icon-item i {
    color: #d14d72;
}

.btn-purchase-submit {
    width: 100%;
    padding: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
    transition: all 0.3s ease;
}

.btn-purchase-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
    color: white;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: block;
}

.success-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: 28px;
    width: 95%;
    max-width: 500px;
    padding: 40px 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-modal.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.modal-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-icon {
    font-size: 4.5rem;
    color: #25d366;
    margin-bottom: 20px;
}

.success-modal h2 {
    font-size: 1.45rem;
    font-weight: 900;
    color: #2d2727;
    margin-bottom: 12px;
}

.success-modal p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.65;
    margin-bottom: 24px;
}

.modal-order-summary {
    width: 100%;
    background: #fffafd;
    border-radius: 16px;
    padding: 20px;
    text-align: right;
    margin-bottom: 24px;
    font-size: 0.85rem;
    border: 1.5px solid #ffe4ec;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-modal-whatsapp {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    background: #25d366;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.2);
    transition: all 0.3s ease;
}

.btn-modal-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    color: white;
}

.btn-modal-close {
    background: #f5f5f5;
    color: #555;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-modal-close:hover {
    background: #e5e5e5;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   ADDED CUSTOM IMPROVEMENTS (Header navigation, Theme Toggle, Mobile Menu Drawer, Specs, Infinite Marquee)
   ========================================================================== */

/* Desktop Navigation Header styling */
.desktop-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-slate);
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-indigo);
    border-radius: 2px;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-indigo);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
    left: 0;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--dark-slate);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
}

.theme-toggle-btn:hover {
    background: var(--primary-indigo-light);
    color: var(--primary-indigo);
}

[data-theme="dark"] .theme-toggle-btn:hover {
    background: hsl(220, 25%, 20%);
    color: var(--accent-gold);
}

/* Mobile Menu Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -320px; /* Slide out to the right */
    width: 300px;
    max-width: 100%;
    background: var(--bg-card);
    z-index: 2000;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right var(--transition-normal);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    padding: 20px;
    border-bottom: 1.5px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-header .logo-text {
    font-size: 1.15rem;
    font-weight: 850;
    color: var(--primary-indigo);
}

.close-drawer {
    font-size: 1.4rem;
    color: var(--dark-slate);
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.close-drawer:hover {
    color: var(--accent-coral);
}

.drawer-body {
    flex-grow: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
}

.drawer-link-item {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-slate);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.drawer-link-item:hover {
    color: var(--primary-indigo);
    padding-right: 6px;
}

.drawer-cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px;
    border-radius: 12px;
    font-weight: 800;
    text-align: center;
    display: block;
    box-shadow: 0 4px 12px var(--primary-indigo-glow);
    margin-top: auto;
}

/* Force Mobile Menu Toggle on Tablets/Mobile */
@media (max-width: 992px) {
    .desktop-nav {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: flex !important;
        background: none;
        border: none;
        font-size: 1.3rem;
        color: var(--dark-slate);
        cursor: pointer;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        transition: background var(--transition-fast);
    }
    .mobile-menu-toggle:hover {
        background: var(--primary-indigo-light);
        color: var(--primary-indigo);
    }
}

/* Mobile search bar header alignment */
@media (max-width: 768px) {
    .main-header {
        padding: 24px 0;
    }
    
    .nav-container {
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        gap: 8px !important;
    }

    .logo-img {
        height: 48px !important;
        max-height: 48px !important;
        width: auto !important;
        object-fit: contain !important;
    }

    .logo-fallback {
        width: 42px !important;
        height: 42px !important;
    }

    .logo-text .logo-main {
        font-size: 1.15rem !important;
    }

    .logo-text .logo-sub {
        font-size: 0.65rem !important;
        display: block !important;
    }

    .nav-actions {
        gap: 6px !important;
    }

    .cart-btn {
        padding: 8px 10px !important;
        font-size: 0.85rem !important;
        border-radius: 8px !important;
        gap: 0 !important;
    }

    .cart-btn .cart-text {
        display: none !important;
    }

    .theme-toggle-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.9rem !important;
        border-radius: 8px !important;
    }

    .mobile-menu-toggle {
        width: 36px !important;
        height: 36px !important;
        border-radius: 8px !important;
    }

    .header-search {
        order: 3;
        flex-basis: 100%;
        max-width: 100%;
        margin-top: 4px;
    }
    
    /* Responsive Filter Alignment */
    .catalog-info-row {
        flex-direction: column;
        align-items: stretch !important;
        gap: 12px;
        text-align: center;
    }
    .filter-controls-group {
        display: flex;
        gap: 10px;
        width: 100%;
    }
    .filter-controls-group > div {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        text-align: right;
    }
    .filter-controls-group label {
        margin-bottom: 4px;
        font-size: 0.8rem;
    }
    .filter-controls-group select {
        width: 100%;
        padding: 10px;
    }
}

/* Mobile Grid adjustments: exactly 2 products side-by-side */
@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 5px !important;
    }
    .product-card {
        border-radius: 12px !important;
    }
    .card-img-box {
        aspect-ratio: 1/1 !important;
    }
    .card-details {
        padding: 10px !important;
    }
    .card-title {
        font-size: 0.8rem !important;
        height: 34px !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
    }
    .card-price {
        font-size: 0.9rem !important;
    }
    .card-action-row {
        flex-direction: column;
        gap: 8px;
        align-items: stretch !important;
    }
    .btn-add-cart {
        padding: 6px 10px !important;
        font-size: 0.75rem !important;
        width: 100%;
        justify-content: center;
    }
}

/* 3 New Dynamic Description/Detail Sections in Product page */
.product-specs-extended {
    margin-top: 40px;
    border-top: 1.5px solid var(--border-color);
    padding-top: 40px;
}

.specs-section-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-indigo);
    display: flex;
    align-items: center;
    gap: 8px;
}

.specs-extended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.spec-extended-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-extended-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-indigo);
}

.spec-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--primary-indigo-light);
    color: var(--primary-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.spec-card-title {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark-slate);
}

.spec-card-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Educational Value Grid */
.benefits-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-card {
    background: var(--bg-section-alt);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.benefit-icon {
    font-size: 1.8rem;
    color: var(--accent-coral);
    margin-bottom: 12px;
}

.benefit-title {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.benefit-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Shipping and Guarantee Section styling */
.guarantee-box {
    background: linear-gradient(135deg, var(--primary-indigo-light) 0%, var(--accent-mint-light) 100%);
    border-radius: 20px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    border: 1.5px solid var(--border-color);
}

[data-theme="dark"] .guarantee-box {
    background: linear-gradient(135deg, hsl(250, 30%, 15%) 0%, hsl(165, 30%, 15%) 100%);
}

.guarantee-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.guarantee-item-icon {
    font-size: 1.6rem;
    color: var(--accent-mint);
}

.guarantee-item-title {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--dark-slate);
}

.guarantee-item-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Infinite Marquee related products marquee */
.carousel-outer-wrapper.infinite-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.carousel-outer-wrapper.infinite-marquee::before,
.carousel-outer-wrapper.infinite-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.carousel-outer-wrapper.infinite-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-page) 0%, rgba(255, 255, 255, 0) 100%);
}

[data-theme="dark"] .carousel-outer-wrapper.infinite-marquee::before {
    background: linear-gradient(to right, var(--bg-page) 0%, rgba(8, 8, 12, 0) 100%);
}

.carousel-outer-wrapper.infinite-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-page) 0%, rgba(255, 255, 255, 0) 100%);
}

[data-theme="dark"] .carousel-outer-wrapper.infinite-marquee::after {
    background: linear-gradient(to left, var(--bg-page) 0%, rgba(8, 8, 12, 0) 100%);
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee-scroll 80s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

/* Float related games in the marquee track cleanly */
.marquee-track .product-card {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.marquee-track .card-img-wrapper {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}
.marquee-track .card-details {
    background: none !important;
    border: none !important;
    text-align: center;
}

/* Floating WhatsApp button adjustment */
.floating-whatsapp {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.6rem !important;
    bottom: 20px !important;
    left: 20px !important;
}

/* Theme switch scale and rotate animation */
.theme-toggle-btn i {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.theme-toggle-btn:active i {
    transform: scale(0.6) rotate(180deg);
}
@keyframes rotate-in {
    0% {
        transform: rotate(-180deg) scale(0.5);
        opacity: 0;
    }
    100% {
        transform: rotate(0) scale(1);
        opacity: 1;
    }
}
.theme-toggle-btn i.fa-sun, .theme-toggle-btn i.fa-moon {
    animation: rotate-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Glassmorphic mobile drawer slide-in */
.mobile-drawer {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15) !important;
    transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.4) !important;
}
[data-theme="dark"] .mobile-drawer {
    background: rgba(20, 20, 30, 0.75) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5) !important;
}
.mobile-drawer.active .drawer-link-item,
.mobile-drawer.active .drawer-cta {
    animation: drawer-fade-in 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.drawer-link-item, .drawer-cta {
    opacity: 0;
    transform: translateX(20px);
}
@keyframes drawer-fade-in {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.drawer-link-item:nth-child(1) { animation-delay: 0.05s; }
.drawer-link-item:nth-child(2) { animation-delay: 0.1s; }
.drawer-link-item:nth-child(3) { animation-delay: 0.15s; }
.drawer-link-item:nth-child(4) { animation-delay: 0.2s; }
.drawer-link-item:nth-child(5) { animation-delay: 0.25s; }
.drawer-link-item:nth-child(6) { animation-delay: 0.3s; }
.drawer-link-item:nth-child(7) { animation-delay: 0.35s; }

/* Custom animated hamburger icon */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    align-items: center;
    justify-content: center;
    z-index: 2001;
}
.hamburger-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--dark-slate);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, background-color 0.3s ease;
}
.mobile-menu-toggle.active .hamburger-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--primary-indigo);
}
.mobile-menu-toggle.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active .hamburger-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--primary-indigo);
}

/* Scroll reveal & slide animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* Organic shapes and custom frames for product showcase */
@keyframes float-slow {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}
.dollhouse-hero .hero-main-img {
    animation: float-slow 6s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}
.main-image-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 40px;
    background: radial-gradient(circle, rgba(250, 100, 180, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    padding: 20px;
}
.main-image-box {
    border: 1.5px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(240, 243, 248, 0.5) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
[data-theme="dark"] .main-image-box {
    background: radial-gradient(circle, rgba(30, 30, 45, 0.9) 0%, rgba(20, 20, 30, 0.5) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.main-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-normal);
}
.main-image-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Dark Mode Override Fixes for Hardcoded Background Sections */
[data-theme="dark"] .features-section,
[data-theme="dark"] .floor-tour-section,
[data-theme="dark"] .accessories-section,
[data-theme="dark"] .reviews-section,
[data-theme="dark"] .faq-section,
[data-theme="dark"] .checkout-form-section,
[data-theme="dark"] .checkout-section,
[data-theme="dark"] .product-details-section,
[data-theme="dark"] .catalog-section {
    background-color: var(--bg-page) !important;
    background: var(--bg-page) !important;
}
[data-theme="dark"] .feature-card,
[data-theme="dark"] .tour-text-side,
[data-theme="dark"] .review-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .order-summary-card,
[data-theme="dark"] .client-form-card,
[data-theme="dark"] .checkout-form-card,
[data-theme="dark"] .checkout-summary-card,
[data-theme="dark"] .product-info-box {
    background-color: var(--bg-card) !important;
    background: var(--bg-card) !important;
    border-color: var(--border-color) !important;
}
[data-theme="dark"] .faq-trigger {
    background-color: var(--bg-card) !important;
}
[data-theme="dark"] .faq-content {
    background-color: var(--bg-card) !important;
}
[data-theme="dark"] .gift-badge {
    background-color: var(--bg-card) !important;
}
[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
    background-color: var(--bg-page) !important;
    color: var(--dark-slate) !important;
    border-color: var(--border-color) !important;
}

/* Shorten Footer on Mobile View */
@media (max-width: 768px) {
    .main-footer .footer-links-col {
        display: none;
    }
}

/* ==========================================================================
   NEW STYLING RULES & FIXES (TALLER HEADER, DARK MODE CONTRAST, CAROUSELS, ETC.)
   ========================================================================== */

/* Top Announcement Bar Right Side & Social Icons */
.bar-right-side {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bar-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bar-social-links a {
    color: #ffffff !important;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    opacity: 0.85;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bar-social-links a:hover {
    opacity: 1;
    transform: scale(1.2);
}

@media (max-width: 576px) {
    .bar-content {
        flex-direction: column !important;
        gap: 6px !important;
    }
    .bar-right-side {
        justify-content: center;
        gap: 12px;
    }
}

/* Scroll-to-Top Button Mobile Override to Match WhatsApp */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.1rem !important;
        bottom: 20px !important;
        right: 20px !important;
        border-radius: 50% !important;
    }
}

/* Cart Drawer Quantity Adjuster Buttons in Dark Mode */
.cart-qty-btn {
    width: 26px;
    height: 26px;
    background: var(--light-gray);
    border: none;
    color: var(--dark-slate) !important;
    border-radius: 6px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cart-qty-btn:hover {
    background: var(--primary-indigo);
    color: #ffffff !important;
}

[data-theme="dark"] .cart-qty-btn {
    background: var(--bg-page) !important;
    color: var(--dark-slate) !important;
    border: 1px solid var(--border-color) !important;
}

/* E-Commerce Product Card Add to Cart Green Pulse Animation */
.add-to-cart-btn.added {
    background: #28a745 !important;
    color: #ffffff !important;
    animation: cartGlowPulse 1.5s infinite alternate !important;
    border-color: transparent !important;
}

@keyframes cartGlowPulse {
    0% {
        box-shadow: 0 0 4px rgba(40, 167, 69, 0.4);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 15px rgba(40, 167, 69, 0.8);
        transform: scale(1.15);
    }
}

/* Wrapping & Gift Cards Grid Styling */
.wrapping-item, .giftcard-item {
    border: 1.5px solid var(--border-color) !important;
    border-radius: 12px !important;
    padding: 10px !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    background: var(--bg-card) !important;
}

.wrapping-item:hover, .giftcard-item:hover {
    border-color: var(--primary-indigo) !important;
}

.wrapping-item.active, .giftcard-item.active {
    border-color: var(--primary-indigo) !important;
    background: var(--primary-indigo-light) !important;
    box-shadow: 0 0 10px rgba(80, 60, 200, 0.1) !important;
}

[data-theme="dark"] .wrapping-item.active, [data-theme="dark"] .giftcard-item.active {
    background: rgba(80, 60, 200, 0.2) !important;
}

.wrapping-item.active .wrap-title, .giftcard-item.active .card-title {
    color: var(--primary-indigo) !important;
}

[data-theme="dark"] .wrapping-item.active .wrap-title, [data-theme="dark"] .giftcard-item.active .card-title {
    color: #a5b4fc !important;
}

/* Dollhouse Page Dark Mode Text Contrast Fixes */
[data-theme="dark"] .dollhouse-hero {
    background: var(--bg-hero-pink) !important;
}

[data-theme="dark"] .hero-badge {
    background: var(--bg-card) !important;
    border-color: var(--border-color) !important;
    color: var(--accent-coral) !important;
}

[data-theme="dark"] .hero-content h1,
[data-theme="dark"] .hero-content h1 span,
[data-theme="dark"] .section-title,
[data-theme="dark"] .feature-card h3,
[data-theme="dark"] .floor-content h3,
[data-theme="dark"] .slide-info h3,
[data-theme="dark"] .reviewer-name,
[data-theme="dark"] .faq-trigger {
    color: var(--dark-slate) !important;
}

[data-theme="dark"] .hero-desc,
[data-theme="dark"] .section-desc,
[data-theme="dark"] .feature-card p,
[data-theme="dark"] .floor-text-desc,
[data-theme="dark"] .floor-bullets li,
[data-theme="dark"] .slide-info p,
[data-theme="dark"] .slide-list li,
[data-theme="dark"] .review-text,
[data-theme="dark"] .faq-content p {
    color: var(--text-muted) !important;
}

[data-theme="dark"] .hero-price-card {
    background: var(--bg-card) !important;
    border-color: var(--border-color) !important;
}

[data-theme="dark"] .price-label,
[data-theme="dark"] .old-price,
[data-theme="dark"] .shipping-notice {
    color: var(--text-muted) !important;
}

[data-theme="dark"] .floor-tab-btn,
[data-theme="dark"] .gallery-nav-btn {
    background: var(--bg-card) !important;
    color: var(--text-muted) !important;
    border-color: var(--border-color) !important;
}

[data-theme="dark"] .floor-tab-btn.active,
[data-theme="dark"] .gallery-nav-btn.active {
    background: var(--gradient-primary) !important;
    color: #ffffff !important;
    border-color: transparent !important;
}

[data-theme="dark"] .slide-image,
[data-theme="dark"] .floor-image-container {
    background: var(--bg-card) !important;
    border-color: var(--border-color) !important;
}

/* Dark Mode Footer Contrast Fix */
[data-theme="dark"] .main-footer {
    background-color: var(--footer-bg, #090d16) !important;
    color: #f8fafc !important;
}

[data-theme="dark"] .main-footer h3 {
    color: #ffffff !important;
    border-bottom-color: rgba(255, 255, 255, 0.15) !important;
}

[data-theme="dark"] .main-footer p, 
[data-theme="dark"] .main-footer span, 
[data-theme="dark"] .main-footer li, 
[data-theme="dark"] .main-footer a, 
[data-theme="dark"] .main-footer .brand-desc,
[data-theme="dark"] .main-footer .footer-contact-link,
[data-theme="dark"] .main-footer .bottom-content p {
    color: #cbd5e1 !important;
}

[data-theme="dark"] .main-footer a:hover,
[data-theme="dark"] .main-footer .footer-contact-link:hover {
    color: #ffffff !important;
}

/* Glowing Green Cart Button */
.added-green {
    background-color: #10b981 !important;
    color: white !important;
    border-color: #10b981 !important;
    animation: greenGlow 2s infinite ease-in-out !important;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.6) !important;
}

@keyframes greenGlow {
    0% {
        box-shadow: 0 0 5px rgba(16, 185, 129, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 15px rgba(16, 185, 129, 0.8);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 5px rgba(16, 185, 129, 0.4);
        transform: scale(1);
    }
}

/* Pagination Row Styling */
.pagination-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    margin-bottom: 20px;
    direction: rtl;
}

.pagination-btn {
    min-width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1.5px solid var(--border-color);
    color: var(--text-color);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-btn:hover {
    border-color: var(--primary-indigo);
    color: var(--primary-indigo);
}

.pagination-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 10px var(--primary-indigo-glow);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==========================================================================
   INVOICE CONTRAST FIXES & NOTIFICATION BELL SHAKE
   ========================================================================== */

/* Force high-contrast dark text inside the success modal invoice box regardless of active dark mode theme */
.invoice-box,
.invoice-box * {
    color: #111111 !important;
    border-color: #dddddd !important;
}

.invoice-box h3 {
    color: #6610f2 !important;
}

.invoice-box span {
    color: #111111 !important;
}

.invoice-box span[style*="color: #666666"],
.invoice-box div[style*="color: #666666"] {
    color: #555555 !important;
}

.invoice-box #modal-order-id,
.invoice-box #admin-modal-order-id,
.invoice-box #modal-cust-name,
.invoice-box #admin-modal-cust-name,
.invoice-box #modal-cust-phone,
.invoice-box #admin-modal-cust-phone,
.invoice-box #modal-cust-addr,
.invoice-box #admin-modal-cust-addr,
.invoice-box #modal-subtotal,
.invoice-box #admin-modal-subtotal,
.invoice-box #modal-cust-total,
.invoice-box #admin-modal-cust-total,
.invoice-box #modal-order-wrapping,
.invoice-box #admin-modal-order-wrapping,
.invoice-box #modal-order-giftcard,
.invoice-box #admin-modal-order-giftcard,
.invoice-box #modal-order-giftmsg,
.invoice-box #admin-modal-order-giftmsg,
.invoice-box #modal-order-notes,
.invoice-box #admin-modal-order-notes {
    color: #111111 !important;
}

.invoice-box #modal-cust-total,
.invoice-box #admin-modal-cust-total {
    color: #ff5a5f !important;
}

/* Bell shake animation keyframes */
.shake-bell {
    animation: bellShake 0.6s ease infinite;
    transform-origin: top center;
    display: inline-block;
}

@keyframes bellShake {
    0% { transform: rotate(0); }
    15% { transform: rotate(15deg); }
    30% { transform: rotate(-15deg); }
    45% { transform: rotate(10deg); }
    60% { transform: rotate(-10deg); }
    75% { transform: rotate(4deg); }
    90% { transform: rotate(-4deg); }
    100% { transform: rotate(0); }
}


