@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --primary-light: #eef2ff;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --accent-emerald: #10b981;
    --danger: #ef4444;
    --bg-body: #f8fafc;
    --bg-card: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border-color: #e2e8f0;
    --border-hover: #cbd5e1;
    
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-sans: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 16px -2px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 32px -4px rgba(15, 23, 42, 0.12);
    --shadow-glow: 0 0 20px rgba(79, 70, 229, 0.25);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Announcement Bar */
.announcement-bar {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.announcement-bar .bar-links a {
    color: #e2e8f0;
    margin-left: 20px;
    font-size: 12px;
    transition: var(--transition);
}

.announcement-bar .bar-links a:hover {
    color: #818cf8;
}

/* ==========================================================================
   WORLD-CLASS E-COMMERCE HEADER & NAVBAR STYLES
   ========================================================================== */
.main-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 28px;
}

.brand-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0 4px;
}

.header-logo-img {
    height: 72px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.25s ease;
    transform: scale(1.15);
    margin: 0 8px;
}

.brand-logo-link:hover .header-logo-img {
    transform: scale(1.22);
}

/* Header Search Wrapper */
.header-search-wrapper {
    flex: 1;
    max-width: 680px;
    position: relative;
}

.header-search-form {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-full);
    overflow: hidden;
    transition: all 0.25s ease;
}

.header-search-form:focus-within {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.search-category-select {
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-right: 1px solid #e2e8f0;
    background: #f1f5f9;
    height: 44px;
    flex-shrink: 0;
}

.search-category-select select {
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    outline: none;
    max-width: 140px;
}

.search-input-wrap {
    display: flex;
    align-items: center;
    flex: 1;
    height: 44px;
}

.search-input-wrap input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 0 16px;
    font-size: 14px;
    color: var(--text-main);
}

.search-submit-btn {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: #ffffff;
    border: none;
    height: 38px;
    padding: 0 20px;
    margin-right: 3px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

.search-submit-btn:hover {
    background: linear-gradient(135deg, #4338ca 0%, #4f46e5 100%);
    transform: scale(1.03);
}

.search-autocomplete-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    overflow: hidden;
    max-height: 420px;
    overflow-y: auto;
}

/* Header Actions Group */
.header-actions-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    transition: all 0.2s ease;
    position: relative;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-decoration: none;
}

.header-action-btn:hover {
    background: #ffffff;
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.header-action-btn i {
    font-size: 16px;
}

.icon-emerald { color: #10b981; }
.icon-danger { color: #ef4444; }
.icon-primary { color: #4f46e5; }

.action-badge-pill {
    background: var(--danger);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    position: absolute;
    top: -4px;
    right: -4px;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
}

/* Account Dropdown Menu */
.account-menu-wrapper {
    position: relative;
}

.account-menu-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 6px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.2s ease;
}

.account-menu-trigger:hover, .account-menu-wrapper:hover .account-menu-trigger {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.user-avatar-circle {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.user-name-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
}

.dropdown-arrow {
    font-size: 10px;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.account-menu-wrapper:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.account-dropdown-box {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 230px;
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.account-menu-wrapper:hover .account-dropdown-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-dropdown-userinfo {
    padding: 12px 16px;
    background: #f8fafc;
}

.account-dropdown-userinfo strong {
    display: block;
    font-size: 14px;
    color: var(--secondary);
}

.account-dropdown-userinfo small {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
}

.account-dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 6px 0;
}

.account-dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    transition: var(--transition);
}

.account-dropdown-link:hover {
    background: var(--primary-light);
    color: var(--primary);
    padding-left: 20px;
}

.account-dropdown-link.logout-link:hover {
    background: #fef2f2;
    color: var(--danger);
}

/* Primary Cart Button */
.header-cart-btn-primary {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: #ffffff;
    border: none;
    padding: 8px 18px 8px 14px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
    transition: all 0.25s ease;
}

.header-cart-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.5);
    background: linear-gradient(135deg, #4338ca 0%, #4f46e5 100%);
}

.cart-icon-box {
    position: relative;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.cart-count-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #ef4444;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    border: 2px solid #ffffff;
}

.cart-btn-title {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
}

/* Main Category Bar */
.main-category-bar {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
}

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

/* Mega Menu Button */
.mega-menu-wrapper {
    position: relative;
}

.mega-menu-btn {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    color: #ffffff;
    border: none;
    padding: 9px 22px;
    margin: 5px 0;
    border-radius: var(--radius-full);
    font-size: 13.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.mega-menu-btn:hover, .mega-menu-wrapper:hover .mega-menu-btn {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.35);
}

.mega-menu-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 260px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.mega-menu-wrapper:hover .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-cat-item {
    position: relative;
}

.mega-cat-main-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--secondary);
    transition: var(--transition);
}

.mega-cat-main-link:hover {
    background: var(--primary-light);
    color: var(--primary);
    padding-left: 22px;
}

.mega-subcat-group {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    width: 220px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 8px 0;
}

.mega-cat-item:hover .mega-subcat-group {
    display: block;
}

.mega-subcat-link {
    display: block;
    padding: 8px 16px;
    font-size: 13px;
    color: var(--text-main);
    transition: var(--transition);
}

.mega-subcat-link:hover {
    color: var(--primary);
    background: #f8fafc;
}

/* Category Nav Links Horizontal */
.category-nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-nav-links::-webkit-scrollbar {
    display: none;
}

.cat-nav-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    position: relative;
    white-space: nowrap;
    transition: var(--transition);
}

.cat-nav-item i {
    color: var(--primary);
    font-size: 14px;
}

.cat-nav-item:hover, .cat-nav-item.active {
    color: var(--primary);
}

.cat-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px 3px 0 0;
}

.header-deal-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #d97706;
    background: #fffbe6;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid #fef3c7;
    white-space: nowrap;
}

.header-deal-tag:hover {
    background: #fef3c7;
}

.dropdown-item-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition);
}

.dropdown-item-link:hover {
    background: var(--primary-light);
    color: var(--primary);
    padding-left: 20px;
}

/* Offcanvas Side Cart Drawer */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cart-drawer-header h3 {
    font-size: 18px;
    color: var(--secondary);
    margin: 0;
}

.cart-drawer-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
}

.cart-drawer-body {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-drawer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid var(--border-color);
}

.cart-drawer-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background: #ffffff;
}

/* Hero Section & Dynamic Slider */
.hero-section {
    position: relative;
    padding: 60px 0 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    color: #ffffff;
    overflow: hidden;
    border-radius: 0 0 32px 32px;
}

.hero-slider-section {
    position: relative;
    padding: 24px 0 40px 0;
}

.hero-slider-container {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    min-height: 420px;
}

.hero-slide {
    display: none;
    padding: 50px 48px;
    min-height: 420px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: relative;
    color: #ffffff;
}

.hero-slide.active {
    display: block;
    opacity: 1;
}

.hero-full-banner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-banner-link {
    display: block;
    width: 100%;
}

.hero-banner-img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

.hero-product-img {
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    animation: float 6s ease-in-out infinite;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: rgba(79, 70, 229, 0.9);
    border-color: #6366f1;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    width: 32px;
    border-radius: 12px;
    background: #6366f1;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.8);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.hero-content .badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fbbf24;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: #ffffff;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

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

.hero-image-box img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    animation: float 6s ease-in-out infinite;
}

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

/* Feature Badges Bar */
.features-bar {
    margin-top: -30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

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

.feature-card {
    background: #ffffff;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #c7d2fe;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 15px;
    color: var(--secondary);
}

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

/* Section Header */
.section-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
}

.section-title-wrap h2 {
    font-size: 28px;
    color: var(--secondary);
}

.section-title-wrap p {
    font-size: 14px;
    color: var(--text-muted);
}

.view-all-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.view-all-link:hover {
    color: var(--primary-hover);
    gap: 10px;
}

/* Product Cards Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

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

.product-badge-wrap {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge-tag {
    background: var(--primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.badge-discount {
    background: var(--danger);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.product-img-box {
    width: 100%;
    height: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    margin-bottom: 16px;
    position: relative;
}

.product-img-box img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-img-box img {
    transform: scale(1.08);
}

.product-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.product-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.35;
    margin-bottom: 10px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #f59e0b;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}

.product-bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-current {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
}

.price-original {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
}

.btn-add-cart {
    background: var(--primary-light);
    color: var(--primary);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-cart:hover {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* Cart & Checkout Styling */
.cart-table-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 30px;
}

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

.cart-table th {
    background-color: #f8fafc;
    padding: 16px 24px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-color);
}

.cart-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.cart-summary-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 28px;
    box-shadow: var(--shadow-md);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-muted);
}

.summary-row.total {
    border-top: 2px dashed var(--border-color);
    padding-top: 16px;
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
}

/* Free Shipping Progress */
.free-shipping-notice {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Admin Sidebar & Layout */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: var(--secondary);
    color: #ffffff;
    padding: 24px 0;
    flex-shrink: 0;
}

.admin-sidebar .sidebar-logo {
    padding: 0 24px 24px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
}

.sidebar-menu {
    margin-top: 20px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: #94a3b8;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.sidebar-menu a:hover, .sidebar-menu a.active {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-left: 4px solid var(--primary);
}

.admin-content {
    flex-grow: 1;
    background: #f8fafc;
    padding: 32px;
}

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

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.stat-card .val {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary);
    margin-top: 8px;
}

/* Form controls */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 14px;
    background: #ffffff;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

/* Footer */
.site-footer {
    background: var(--secondary);
    color: #94a3b8;
    padding: 70px 0 30px 0;
    margin-top: 0;
    border-top: none;
}

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

.footer-col h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: #94a3b8;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ffffff;
}

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

/* FAQ Accordion */
.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: #c7d2fe;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: #ffffff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question.active {
    color: var(--primary);
    background: #f8fafc;
}

.faq-icon {
    font-size: 14px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

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

.faq-answer p {
    padding: 0 24px 20px 24px;
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   ENHANCED PRODUCT CARD STYLES
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.product-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.16);
    border-color: #a5b4fc;
}

.product-badge-wrap {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}

.badge-tag {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
    letter-spacing: 0.3px;
}

.badge-discount {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.35);
}

/* Glassmorphic Wishlist Button */
.wishlist-form-card {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.btn-wishlist-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
}

.btn-wishlist-card:hover {
    background: #ffffff;
    color: var(--danger);
    transform: scale(1.12);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.25);
}

.btn-wishlist-card.active {
    color: var(--danger);
    background: #fef2f2;
    border-color: #fca5a5;
}

.product-img-box {
    width: 100%;
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    margin-bottom: 16px;
    position: relative;
}

.product-img-link {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.product-img-box img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.06));
}

.product-card:hover .product-img-box img {
    transform: scale(1.08);
}

.product-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.product-category {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.stock-pill {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.stock-pill.in-stock {
    background: #dcfce7;
    color: #15803d;
}

.stock-pill.low-stock {
    background: #fef2f2;
    color: #b91c1c;
}

.product-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
    transition: color 0.2s ease;
}

.product-card:hover .product-title {
    color: var(--primary);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.stars-wrap {
    color: #f59e0b;
    font-size: 12px;
    display: flex;
    gap: 2px;
}

.star-empty {
    color: #cbd5e1;
}

.rating-num {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
}

.product-bottom {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-current {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.price-discount-line {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.price-original {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 500;
}

.btn-add-cart-primary {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.btn-add-cart-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.4);
    background: linear-gradient(135deg, #4338ca 0%, #4f46e5 100%);
}

.btn-add-cart-primary.disabled {
    background: #e2e8f0;
    color: #94a3b8;
    box-shadow: none;
    cursor: not-allowed;
}

/* ==========================================================================
   PHOTO CATEGORY GRID & PROMO BANNER SHOWCASE
   ========================================================================== */
.category-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cat-photo-card {
    position: relative;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    text-decoration: none;
}

.cat-photo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.88) 100%);
    transition: background 0.3s ease;
}

.cat-photo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.2);
}

.cat-photo-card:hover .cat-photo-bg {
    transform: scale(1.1);
}

.cat-photo-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.cat-badge-pill {
    background: var(--primary);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 8px;
}

.cat-photo-content h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
    color: #ffffff;
}

.cat-photo-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.cat-link-text {
    font-size: 12px;
    font-weight: 700;
    color: #fbbf24;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.cat-photo-card:hover .cat-link-text {
    gap: 10px;
}

/* 2-Column Duo Promo Cards */
.promo-banner-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.promo-card {
    border-radius: 24px;
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 180px;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.promo-card-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    color: #ffffff;
}

.promo-card-gradient {
    background: linear-gradient(135deg, #312e81 0%, #4338ca 100%);
    color: #ffffff;
}

.promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.promo-card-content h3 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 8px;
    color: #ffffff;
}

.promo-card-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 18px;
    line-height: 1.5;
}

.promo-card-img img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
    transition: transform 0.4s ease;
}

.promo-card:hover .promo-card-img img {
    transform: scale(1.08) rotate(-2deg);
}

/* ==========================================================================
   MOBILE NAVIGATION & DRAWER STYLES
   ========================================================================== */
.mobile-toggle-btn {
    display: none;
    background: #f1f5f9;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition);
}

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

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: -340px;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    z-index: 10001;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-drawer.active {
    left: 0;
}

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

.mobile-drawer-close {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-muted);
    cursor: pointer;
}

.mobile-drawer-body {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
}

.mobile-user-card {
    background: #f8fafc;
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.btn-mobile-sub {
    padding: 8px 12px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--text-main);
}

.mobile-quick-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.mobile-quick-btn {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.mobile-category-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

/* Admin Filter Pills & Mobile Admin Bar */
.admin-filter-pill {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    background: #f1f5f9;
    color: #334155 !important;
    border: 1px solid #cbd5e1;
}

.admin-filter-pill:hover {
    background: #e2e8f0;
    color: #0f172a !important;
}

.admin-filter-pill.active {
    background: var(--primary) !important;
    color: #ffffff !important;
    border-color: var(--primary) !important;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.mobile-admin-bar {
    display: none;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    background: #0f172a;
    z-index: 9995;
    padding: 0 16px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.mobile-category-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-cat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    transition: var(--transition);
}

.mobile-cat-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* Mobile Bottom Dock */
.mobile-bottom-dock {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    z-index: 9990;
    padding: 0;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
}

.dock-item {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    padding: 0;
    margin: 0;
}

.dock-item i {
    font-size: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    width: 22px;
    margin: 0 auto;
}

.dock-item span {
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    display: block;
    text-align: center;
    margin: 0 auto;
}

.dock-item.active {
    color: var(--primary);
    font-weight: 800;
}

.dock-badge {
    position: absolute;
    top: 4px;
    right: 50%;
    transform: translateX(12px);
    background: var(--danger);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   PERFECT MOBILE-FIRST RESPONSIVE OPTIMIZATIONS
   ========================================================================== */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
}

/* Reviews Grid Desktop & Mobile */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.review-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

@media (max-width: 992px) {
    .mobile-admin-bar {
        display: flex !important;
    }

    .admin-wrapper {
        display: block !important;
    }

    .admin-sidebar {
        position: fixed !important;
        top: 56px !important;
        left: -280px !important;
        width: 270px !important;
        height: calc(100vh - 56px) !important;
        z-index: 9999 !important;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: 4px 0 20px rgba(0,0,0,0.3) !important;
    }

    .admin-sidebar.active {
        left: 0 !important;
    }

    .admin-content {
        padding: 16px !important;
        margin-left: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .admin-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

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

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 64px; /* Space for bottom app dock */
    }

    /* Floating Chatbot Position Above Dock */
    .chatbot-container {
        bottom: 84px !important;
        right: 16px !important;
    }

    /* Announcement Bar Mobile */
    .announcement-bar .bar-links {
        display: none !important;
    }
    .announcement-bar .container {
        justify-content: center;
        text-align: center;
        font-size: 11.5px;
        padding: 4px 12px;
    }

    /* Perfectly Centered Mobile Header Layout (44px 1fr 44px) */
    .header-container {
        display: grid;
        grid-template-columns: 44px 1fr 44px !important;
        align-items: center;
        padding: 10px 14px;
        gap: 8px;
    }

    .mobile-toggle-btn {
        display: flex !important;
        grid-column: 1;
        grid-row: 1;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
    }

    .brand-logo-link {
        grid-column: 2;
        grid-row: 1;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        text-align: center;
    }

    .header-logo-img {
        height: 44px !important;
        max-width: 180px !important;
        transform: scale(1) !important;
        margin: 0 auto !important;
        display: block !important;
    }

    .header-cart-btn-primary {
        grid-column: 3;
        grid-row: 1;
        width: 44px !important;
        height: 44px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
    }

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

    .header-search-wrapper {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 4px;
    }

    .header-search-form {
        width: 100%;
        background: #f1f5f9;
        border-radius: var(--radius-full);
    }

    .search-input-wrap input {
        font-size: 13px;
        padding: 0 12px;
    }

    .search-submit-btn {
        padding: 0 14px;
        height: 36px;
    }

    .search-submit-btn span {
        display: none;
    }

    /* Hide redundant desktop action buttons in header on mobile */
    .header-actions-group .header-action-btn,
    .header-actions-group .account-menu-wrapper {
        display: none !important;
    }

    .header-actions-group {
        gap: 0;
    }

    .main-category-bar {
        display: none !important;
    }

    /* Hero Banner Mobile */
    .hero-section {
        padding: 24px 0 36px 0;
        border-radius: 0 0 20px 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 24px !important;
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 13px !important;
    }

    .hero-buttons {
        justify-content: center;
        gap: 10px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 10px 18px;
        font-size: 13px;
    }

    .hero-image img {
        max-width: 220px !important;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .features-bar {
        padding: 20px 0;
        background: #f8fafc;
    }

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

    .feature-card {
        padding: 12px 10px !important;
        border-radius: 14px !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        background: #ffffff !important;
        border: 1px solid var(--border-color) !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .feature-icon {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        font-size: 16px !important;
        border-radius: 10px !important;
    }

    .feature-info h4 {
        font-size: 11.5px !important;
        line-height: 1.25;
        margin-bottom: 2px;
    }

    .feature-info p {
        font-size: 9.5px !important;
        line-height: 1.2;
    }
}

/* ==========================================================================
   HERO SLIDER & POSTER BANNER CSS (DESKTOP & GLOBAL)
   ========================================================================== */
.hero-slider-section {
    padding: 24px 0 30px 0;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    background: #0f172a;
    min-height: 380px;
}

.hero-slide {
    display: none;
    width: 100%;
    height: 100%;
    min-height: 380px;
    padding: 40px;
    align-items: center;
    position: relative;
    transition: opacity 0.5s ease-in-out;
}

.hero-slide.active {
    display: flex;
}

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

.hero-content {
    color: #ffffff;
    z-index: 2;
}

.hero-content .badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fbbf24;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: 38px;
    line-height: 1.2;
    margin: 12px 0 16px 0;
    color: #ffffff !important;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 15px;
    color: #cbd5e1;
    margin-bottom: 24px;
    max-width: 500px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-product-img {
    max-height: 300px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4));
    animation: float 6s ease-in-out infinite;
}

.hero-full-banner {
    width: 100%;
    height: 100%;
    display: block;
}

.full-banner-link {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
}

/* Slider Nav Arrows & Dots */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 16px; }
.slider-next { right: 16px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    width: 32px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   HIGH-CONTRAST FLASH DEALS BANNER HEADER
   ========================================================================== */
.deal-section-wrap {
    margin-bottom: 50px;
}

.deal-banner-header {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 60%, #312e81 100%);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    margin-bottom: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 12px 28px -6px rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    gap: 16px;
    box-sizing: border-box;
}

.deal-banner-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 27, 75, 0.72) 50%, rgba(49, 46, 129, 0.55) 100%);
    pointer-events: none;
    z-index: 1;
}

.deal-banner-content {
    position: relative;
    z-index: 2;
}

.deal-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fde047 !important;
    background: rgba(254, 240, 138, 0.15) !important;
    border: 1px solid rgba(253, 224, 71, 0.4) !important;
    font-weight: 800 !important;
    font-size: 12.5px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 6px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.deal-title {
    color: #ffffff !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    margin: 0 !important;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.25;
}

.deal-subtitle {
    color: #cbd5e1 !important;
    font-size: 13.5px !important;
    margin: 4px 0 0 0 !important;
    line-height: 1.4;
}

.deal-action-btn {
    position: relative;
    z-index: 2;
    background: #ffffff !important;
    color: #1e1b4b !important;
    font-weight: 800 !important;
    font-size: 13.5px !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-full) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
    border: none !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

.deal-action-btn:hover {
    background: #f8fafc !important;
    color: #4338ca !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35) !important;
}

/* ==========================================================================
   VISUAL CATEGORY SHOWCASE & 4-COLUMN CARDS
   ========================================================================== */
.visual-showcase-section {
    margin-bottom: 50px;
}

.section-header-simple {
    margin-bottom: 24px;
}

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

.cat-photo-card {
    position: relative;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #0f172a;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-photo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.cat-photo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 1;
}

.cat-photo-card:hover .cat-photo-bg {
    transform: scale(1.08);
}

.cat-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.65) 55%, rgba(15, 23, 42, 0.95) 100%);
    z-index: 2;
}

.cat-photo-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
}

.cat-badge-pill {
    display: inline-block;
    background: rgba(99, 102, 241, 0.9);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cat-photo-content h3 {
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 4px 0;
    line-height: 1.25;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.cat-photo-content p {
    color: #cbd5e1 !important;
    font-size: 12.5px;
    margin: 0 0 10px 0;
    line-height: 1.35;
}

.cat-link-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #818cf8;
    font-size: 13px;
    font-weight: 800;
    transition: gap 0.2s ease;
}

.cat-photo-card:hover .cat-link-text {
    gap: 10px;
    color: #a5b4fc;
}

/* ==========================================================================
   2-COLUMN HIGH QUALITY FEATURE PROMO BANNERS
   ========================================================================== */
.promo-banner-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.promo-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 32px 36px;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #0f172a;
    transition: all 0.35s ease;
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.promo-card-content {
    position: relative;
    z-index: 2;
    max-width: 60%;
    color: #ffffff;
}

.promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fbbf24;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.promo-card h3 {
    color: #ffffff !important;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 8px 0;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.promo-card p {
    color: #cbd5e1 !important;
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.promo-card-img {
    position: relative;
    z-index: 1;
    max-width: 38%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-card-img img {
    max-height: 160px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
    transition: transform 0.4s ease;
}

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

/* ==========================================================================
   MOBILE DRAWER OFF-CANVAS STYLING
   ========================================================================== */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
}

.mobile-nav-overlay.active {
    display: block;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-nav-drawer.active {
    transform: translateX(320px);
}

.mobile-drawer-header {
    padding: 16px 20px;
    background: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}

.mobile-drawer-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.mobile-user-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 20px;
}

.btn-mobile-sub {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: #ffffff;
    border: 1px solid var(--border-color);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
}

.mobile-quick-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.mobile-quick-btn {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
}

.mobile-category-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.mobile-category-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-cat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-cat-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* ==========================================================================
   MOBILE BOTTOM DOCK (IOS / ANDROID REPLACEMENT NAVBAR)
   ========================================================================== */
.mobile-bottom-dock {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9990;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    flex: 1;
    height: 100%;
}

.dock-item i {
    font-size: 18px;
    transition: var(--transition);
}

.dock-item.active,
.dock-item:hover {
    color: #ffffff;
}

.dock-item.active i {
    color: #818cf8;
    transform: translateY(-2px);
}

.dock-badge {
    position: absolute;
    top: 6px;
    right: 18px;
    background: var(--danger);
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.5);
}

/* ==========================================================================
   REVIEWS & FAQ STYLES
   ========================================================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.review-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #c7d2fe;
}

.faq-accordion .faq-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    text-align: left;
    cursor: pointer;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px 24px;
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

/* ==========================================================================
   RESPONSIVE LAYOUT GRIDS
   ========================================================================== */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 60px;
}

.cart-layout-grid,
.checkout-layout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

/* ==========================================================================
   PERFECT RESPONSIVE MOBILE STYLES (iOS & Android)
   ========================================================================== */
@media (max-width: 992px) {
    .product-detail-layout {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        padding: 20px !important;
    }

    .cart-layout-grid,
    .checkout-layout-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

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

    .promo-banner-duo {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 68px !important; /* Space for bottom dock */
        overflow-x: hidden !important;
    }

    .container {
        padding: 0 10px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 1. Sleek & Minimalist Horizontal Hero Slider for Mobile */
    .hero-slider-section {
        padding: 10px 0 18px 0 !important;
    }

    .hero-slider-container {
        min-height: 210px !important;
        max-height: 280px !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 16px rgba(0,0,0,0.15) !important;
    }

    .hero-slide {
        min-height: 210px !important;
        max-height: 280px !important;
        padding: 16px !important;
        align-items: center !important;
    }

    .hero-grid {
        display: grid !important;
        grid-template-columns: 1.25fr 0.75fr !important;
        gap: 10px !important;
        text-align: left !important;
        align-items: center !important;
        width: 100% !important;
    }

    .hero-content {
        z-index: 2;
    }

    .hero-content .badge-pill {
        font-size: 10px !important;
        padding: 3px 8px !important;
        margin-bottom: 6px !important;
        display: inline-flex !important;
    }

    .hero-content h1 {
        font-size: 16px !important;
        line-height: 1.2 !important;
        margin: 4px 0 !important;
        font-weight: 800 !important;
        color: #ffffff !important;
    }

    .hero-content p {
        font-size: 11px !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
        color: #cbd5e1 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .hero-actions {
        justify-content: flex-start !important;
        gap: 6px !important;
    }

    .hero-actions .btn-primary {
        padding: 7px 14px !important;
        font-size: 11.5px !important;
        border-radius: 20px !important;
        box-shadow: 0 2px 8px rgba(79, 70, 229, 0.4) !important;
    }

    .hero-actions .btn-secondary {
        display: none !important;
    }

    .hero-image-box {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .hero-image-box img,
    .hero-product-img {
        max-height: 130px !important;
        max-width: 100% !important;
        object-fit: contain !important;
    }

    .hero-full-banner,
    .hero-banner-img {
        min-height: 200px !important;
        max-height: 250px !important;
        object-fit: cover !important;
    }

    .slider-nav {
        display: none !important;
    }

    .slider-dots {
        bottom: 8px !important;
        gap: 6px !important;
    }

    .slider-dots .dot {
        width: 6px !important;
        height: 6px !important;
    }

    .slider-dots .dot.active {
        width: 18px !important;
        border-radius: 8px !important;
    }

    /* 2. Günün Süper İndirimleri Header Mobile */
    .deal-banner-header {
        padding: 14px 16px !important;
        border-radius: 14px !important;
        margin-bottom: 14px !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .deal-title {
        font-size: 15px !important;
        margin: 0 !important;
        line-height: 1.2 !important;
    }

    .deal-badge-pill {
        font-size: 9.5px !important;
        padding: 2px 8px !important;
        margin-bottom: 2px !important;
    }

    .deal-subtitle {
        display: none !important;
    }

    .deal-action-btn {
        font-size: 11px !important;
        padding: 6px 12px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        border-radius: 20px !important;
    }

    /* 3. Category Photo Cards Mobile */
    .category-photo-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }

    .cat-photo-card {
        height: 140px !important;
        padding: 12px !important;
        border-radius: 14px !important;
    }

    .cat-badge-pill {
        font-size: 9px !important;
        padding: 2px 6px !important;
        margin-bottom: 4px !important;
    }

    .cat-photo-content h3 {
        font-size: 14px !important;
        line-height: 1.2 !important;
    }

    .cat-photo-content p {
        display: none !important;
    }

    .cat-link-text {
        font-size: 11px !important;
    }

    /* 4. Promo Cards Mobile */
    .promo-banner-duo {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 16px !important;
    }

    .promo-card {
        padding: 18px !important;
        border-radius: 16px !important;
        min-height: 150px !important;
    }

    .promo-card-content {
        max-width: 65% !important;
    }

    .promo-tag {
        font-size: 9.5px !important;
        padding: 2px 8px !important;
        margin-bottom: 6px !important;
    }

    .promo-card h3 {
        font-size: 15px !important;
        margin-bottom: 4px !important;
    }

    .promo-card p {
        font-size: 11px !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .promo-card .btn-primary,
    .promo-card .btn-secondary {
        padding: 6px 14px !important;
        font-size: 11px !important;
    }

    .promo-card-img {
        max-width: 35% !important;
    }

    .promo-card-img img {
        max-height: 110px !important;
    }

    /* 5. Products Grid Fits 100% Within Mobile Screen Without Overflow */
    .products-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        margin-bottom: 32px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .product-card {
        padding: 10px !important;
        border-radius: 14px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .product-badge-wrap {
        top: 8px !important;
        left: 8px !important;
        gap: 3px !important;
    }

    .product-badge-wrap .badge-tag,
    .product-badge-wrap .badge-discount {
        font-size: 9px !important;
        padding: 2px 5px !important;
    }

    .wishlist-form-card {
        top: 8px !important;
        right: 8px !important;
    }

    .btn-wishlist-card {
        width: 28px !important;
        height: 28px !important;
        font-size: 12px !important;
    }

    .product-img-box {
        height: 115px !important;
        margin-bottom: 6px !important;
    }

    .product-details {
        padding: 0 !important;
    }

    .product-title {
        font-size: 11.5px !important;
        min-height: 30px !important;
        line-height: 1.3 !important;
        margin-bottom: 4px !important;
        font-weight: 600 !important;
    }

    .product-category {
        font-size: 9.5px !important;
    }

    .stock-pill {
        font-size: 8.5px !important;
        padding: 1px 5px !important;
    }

    .product-rating {
        margin-bottom: 4px !important;
    }

    .stars-wrap i {
        font-size: 9px !important;
    }

    .rating-num {
        font-size: 9px !important;
    }

    .price-current {
        font-size: 13.5px !important;
        font-weight: 800 !important;
    }

    .price-original {
        font-size: 10px !important;
    }

    .btn-add-cart-primary {
        padding: 6px 8px !important;
        font-size: 11px !important;
        border-radius: 8px !important;
    }

    .btn-add-cart-primary span {
        display: none !important;
    }

    /* 6. Reviews Mobile */
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .review-card {
        padding: 16px !important;
        border-radius: 14px !important;
    }

    /* 7. Chatbot Widget Mobile Floating Adjustment */
    .chatbot-container,
    .chat-toggle-btn,
    .chatbot-toggle-btn,
    div[class*="chat-"] {
        bottom: 74px !important;
        right: 10px !important;
    }

    .mobile-bottom-dock {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 8px !important;
    }

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

    .hero-content h1 {
        font-size: 15px !important;
    }
}



