/* Surprise! Store - Imperial Luxury Design System 2026 */
/* Fonts: Playfair Display for headings, Poppins for body */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&family=Cairo:wght@400;500;600;700;800&display=swap');

:root {
    /* ═══════════════════════════════════════
       IMPERIAL LUXURY COLOR PALETTE
       ═══════════════════════════════════════ */

    /* Primary - Royal Gold */
    --primary: #C9A449;
    --primary-light: #E5C76B;
    --primary-dark: #A88B3D;
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --champagne: #F7E7CE;

    /* Dark Backgrounds */
    --bg-dark: #000000;
    --bg-darker: #000000;
    --bg-charcoal: #111111;
    --bg-navy: #0A0E17;
    --bg-card-dark: #0a0a0a;
    --bg-glass-dark: rgba(0, 0, 0, 0.95);

    /* Light Elements */
    --white: #FFFFFF;
    --white-soft: #F5F5F5;
    --cream: #FFFEF7;

    /* Gradients */
    --bg-hero: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #0D0D0D 100%);
    --bg-gold-gradient: linear-gradient(135deg, #C9A449 0%, #E5C76B 50%, #C9A449 100%);
    --bg-premium: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
    --bg-shimmer: linear-gradient(90deg, transparent, rgba(201, 164, 73, 0.3), transparent);
    --bg-card-gradient: linear-gradient(180deg, #1A1A1A 0%, #141414 100%);

    /* Text */
    --text-light: #FFFFFF;
    --text-muted: #A0A0A0;
    --text-gold: #C9A449;
    --text-dark: #0D0D0D;

    /* Premium Shadows */
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 15px 60px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 10px 40px rgba(201, 164, 73, 0.25);
    --shadow-glow: 0 0 60px rgba(201, 164, 73, 0.3);

    /* Borders */
    --border-gold: 1px solid rgba(201, 164, 73, 0.3);
    --border-subtle: 1px solid rgba(255, 255, 255, 0.08);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-arabic: 'Cairo', sans-serif;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-arabic);
    background: var(--bg-dark);
    color: var(--text-light);
    direction: rtl;
    line-height: 1.8;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(201, 164, 73, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 164, 73, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ════════════════════════════════════════
   HEADER - Imperial Dark Design
   ════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-glass-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: var(--border-gold);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(13, 13, 13, 0.98);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 45px;
    width: auto;
    filter: brightness(1.1);
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 5px;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(201, 164, 73, 0.1);
}

.nav-links a.active {
    background: var(--bg-gold-gradient);
    color: var(--bg-dark);
}

/* Cart Icon */
.cart-icon {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gold-gradient);
    border-radius: 50%;
    color: var(--bg-dark);
    font-size: 1.2rem;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-gold);
}

.cart-icon:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.cart-count {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 22px;
    height: 22px;
    background: var(--white);
    color: var(--bg-dark);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(201, 164, 73, 0.1);
    padding: 12px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    z-index: 1002;
    position: relative;
    pointer-events: auto;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ════════════════════════════════════════
   HERO SECTION - Imperial Design
   ════════════════════════════════════════ */
.hero {
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
    min-width: 100%;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(0.85);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 40px 60px;
    background: linear-gradient(transparent, rgba(13, 13, 13, 0.95));
    color: var(--white);
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
    color: var(--champagne);
    letter-spacing: 0.5px;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(201, 164, 73, 0.3);
}

.hero-dot:hover {
    background: rgba(201, 164, 73, 0.5);
}

.hero-dot.active {
    background: var(--primary);
    transform: scale(1.2);
    box-shadow: var(--shadow-gold);
}

/* ════════════════════════════════════════
   SECTIONS - Imperial Layout
   ════════════════════════════════════════ */
.section {
    padding: 80px 0;
    position: relative;
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--bg-gold-gradient);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* ════════════════════════════════════════
   PRODUCT GRID - Imperial Cards
   ════════════════════════════════════════ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Imperial Product Card */
.product-card {
    background: var(--bg-card-gradient);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: var(--border-subtle);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--bg-gold-gradient);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(201, 164, 73, 0.3);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--bg-charcoal);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

.badge-available {
    background: rgba(76, 175, 80, 0.9);
    color: white;
}

.badge-sold {
    background: rgba(80, 80, 80, 0.9);
    color: #ccc;
}

.badge-featured {
    background: var(--bg-gold-gradient);
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
}

.badge-bestseller {
    background: linear-gradient(135deg, #C9A449, #E5C76B);
    color: var(--bg-dark);
    font-weight: 700;
}

.badge-trending {
    background: linear-gradient(135deg, #C9A449, #A88B3D);
    color: var(--bg-dark);
    font-weight: 700;
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
    }

    50% {
        box-shadow: 0 2px 20px rgba(255, 215, 0, 0.7);
    }
}

@keyframes pulse-fire {

    0%,
    100% {
        box-shadow: 0 2px 10px rgba(255, 69, 0, 0.4);
    }

    50% {
        box-shadow: 0 2px 20px rgba(255, 69, 0, 0.7);
    }
}

.product-info {
    padding: 20px;
    background: var(--bg-card-dark);
}

.product-name {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: var(--border-subtle);
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

/* ═══════════════════════════════════════════════════════════════
   PRICE DISPLAY - Elegant Inline Pricing
   ═══════════════════════════════════════════════════════════════ */
.price-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.price-current {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.3px;
}

.price-old {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.65;
}

.discount-badge {
    background: linear-gradient(135deg, #ff5722, #ff9800);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
}

/* Product footer price adjustments */
.product-footer .price-wrapper {
    flex-direction: row;
    align-items: center;
}

.product-footer .price-current {
    font-size: 1.1rem;
}

.product-footer .price-old {
    font-size: 0.75rem;
}

.product-footer .discount-badge {
    font-size: 0.6rem;
    padding: 2px 6px;
}

/* Best sellers slider prices - Inline layout */
.bestseller-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
    margin-bottom: 10px;
}

.bestseller-price .price-wrapper {
    justify-content: center;
}

.bestseller-price .price-current {
    font-size: 1rem;
}

.bestseller-price .price-old {
    font-size: 0.75rem;
}

.bestseller-price .discount-badge {
    font-size: 0.6rem;
    padding: 2px 6px;
}

/* Admin panel price adjustments */
.product-card-price .price-wrapper,
.admin-table .price-wrapper,
.mobile-product-price .price-wrapper {
    gap: 6px;
}

.product-card-price .price-current,
.admin-table .price-current,
.mobile-product-price .price-current {
    font-size: 1rem;
}

.product-card-price .price-old,
.admin-table .price-old,
.mobile-product-price .price-old {
    font-size: 0.7rem;
}

.product-card-price .discount-badge,
.admin-table .discount-badge,
.mobile-product-price .discount-badge {
    font-size: 0.55rem;
    padding: 2px 5px;
}

/* ════════════════════════════════════════
   BUTTONS - Imperial Design
   ════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--bg-shimmer);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--bg-gold-gradient);
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(188, 24, 136, 0.35);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(188, 24, 136, 0.5);
}

.btn-telegram {
    background: linear-gradient(135deg, #0088cc 0%, #00b2ff 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.35);
}

.btn-telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 136, 204, 0.5);
}

.btn-sm {
    padding: 10px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 35px;
    font-size: 1rem;
}

/* ════════════════════════════════════════
   CATEGORIES - Imperial Cards
   ════════════════════════════════════════ */
.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0;
    justify-content: center;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    background: var(--bg-card-dark);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: var(--border-subtle);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    letter-spacing: 0.3px;
    z-index: 1;
}

.category-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-gold-gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.category-btn:hover,
.category-btn.active {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    color: var(--bg-dark);
}

.category-btn:hover::before,
.category-btn.active::before {
    opacity: 1;
}

/* ════════════════════════════════════════
   FEATURES SECTION - Imperial Design
   ════════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-card-dark);
    padding: 30px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: var(--border-subtle);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(201, 164, 73, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: var(--bg-gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-gold);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ════════════════════════════════════════
   INSTAGRAM CTA - Imperial Design
   ════════════════════════════════════════ */
.cta-instagram {
    background: var(--bg-charcoal);
    color: var(--white);
    text-align: center;
    padding: 70px 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(201, 164, 73, 0.1);
    border-bottom: 1px solid rgba(201, 164, 73, 0.1);
}

.cta-instagram::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(201, 164, 73, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(201, 164, 73, 0.05) 0%, transparent 50%);
    animation: float 20s linear infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-5%, -5%);
    }
}

.cta-instagram .container {
    position: relative;
    z-index: 1;
}

.cta-instagram h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-instagram p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-muted);
}

.cta-instagram .btn {
    background: var(--bg-gold-gradient);
    color: var(--bg-dark);
    font-size: 1rem;
    padding: 14px 35px;
}

/* ════════════════════════════════════════
   FOOTER - Imperial Design
   ════════════════════════════════════════ */
.footer {
    background: var(--bg-darker);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 0;
    position: relative;
    z-index: 10;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--bg-gold-gradient);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    filter: brightness(1.1);
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
}

.footer-about p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.9rem;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-right: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 164, 73, 0.1);
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid rgba(201, 164, 73, 0.2);
}

.social-link:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
    border-color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ════════════════════════════════════════
   CART PAGE - Imperial Design
   ════════════════════════════════════════ */
.cart-container {
    background: var(--bg-card-dark);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: var(--border-subtle);
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: var(--border-subtle);
    align-items: flex-start;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
    /* Prevent text overflow */
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-name {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.cart-item-custom-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    width: fit-content;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.qty-btn:hover {
    background: var(--primary);
    color: white;
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-value {
    font-weight: 700;
    min-width: 30px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #f44336;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
    flex-shrink: 0;
}

.cart-item-remove:hover {
    background: #ffebee;
}

/* Cart Summary */
.cart-summary {
    margin-top: 30px;
    padding: 25px;
    background: #fafafa;
    border-radius: var(--radius-lg);
    border-top: 3px solid var(--primary);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px dashed #ddd;
}

/* Cart Mobile Responsive */
@media (max-width: 768px) {
    .cart-container {
        padding: 20px 15px;
        border-radius: var(--radius-md);
    }

    .cart-item {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }

    .cart-item-image {
        width: 100%;
        min-width: unset;
        height: 180px;
        border-radius: var(--radius-md);
    }

    .cart-item-info {
        width: 100%;
        text-align: center;
    }

    .cart-item-custom-badge {
        margin: 0 auto;
    }

    .cart-item-quantity {
        justify-content: center;
    }

    .cart-item-actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px dashed #eee;
    }

    .cart-summary {
        padding: 20px 15px;
        margin-top: 20px;
    }

    .cart-total {
        font-size: 1.2rem;
    }

    /* Coupon Section Mobile */
    #couponSection {
        padding: 12px !important;
    }

    #couponSection>div {
        flex-direction: column !important;
    }

    #couponSection .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cart-container {
        padding: 15px 12px;
    }

    .cart-item-image {
        height: 150px;
    }

    .cart-item-name {
        font-size: 0.95rem;
    }

    .cart-item-price {
        font-size: 1rem;
    }

    .qty-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .cart-total {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .cart-total span:last-child {
        font-size: 1.4rem;
        color: var(--primary);
    }

    /* Checkout form mobile */
    #checkoutForm {
        padding: 20px 0 0 !important;
    }

    #checkoutForm h3 {
        font-size: 1.1rem !important;
        text-align: center;
    }

    #checkoutForm>div:first-of-type {
        grid-template-columns: 1fr !important;
    }

    /* Buttons stacking */
    #cartActions .cart-summary>div:last-of-type {
        flex-direction: column !important;
    }

    #cartActions .cart-summary .btn {
        width: 100%;
    }
}

/* ════════════════════════════════════════
   FORMS - Premium Design
   ════════════════════════════════════════ */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #fafafa;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.1);
    background: white;
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

/* Upload Area */
.upload-area {
    border: 2px dashed var(--primary);
    border-radius: var(--radius-lg);
    padding: 45px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(233, 30, 140, 0.02);
}

.upload-area:hover {
    background: rgba(233, 30, 140, 0.06);
    border-color: var(--primary-dark);
}

.upload-area.dragover {
    background: rgba(233, 30, 140, 0.12);
    border-color: var(--primary-dark);
    transform: scale(1.02);
}

.upload-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 18px;
}

.upload-text {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.upload-hint {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ════════════════════════════════════════
   ALERTS
   ════════════════════════════════════════ */
.alert {
    padding: 18px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}

.alert-error {
    background: linear-gradient(135deg, #FFEBEE, #FFCDD2);
    color: #C62828;
    border: 1px solid #EF9A9A;
}

.alert-info {
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    color: #1565C0;
    border: 1px solid #90CAF9;
}

/* ════════════════════════════════════════
   EMPTY STATE
   ════════════════════════════════════════ */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    font-size: 5rem;
    margin-bottom: 25px;
    opacity: 0.8;
}

.empty-title {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.empty-text {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* ════════════════════════════════════════
   RESPONSIVE DESIGN - ENHANCED FOR MOBILE
   ════════════════════════════════════════ */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        gap: 20px;
    }
}

/* Tablet Portrait & Small Laptops */
@media (max-width: 768px) {

    /* Mobile Navigation - Imperial Dark Slide */
    .nav-links {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
        flex-direction: column;
        padding: 100px 25px 40px;
        box-shadow: -5px 0 40px rgba(0, 0, 0, 0.5);
        z-index: 998;
        overflow-y: auto;
        gap: 10px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        visibility: hidden;
        border-left: 1px solid rgba(201, 164, 73, 0.2);
    }

    .nav-links.active {
        right: 0;
        visibility: visible;
    }

    /* Overlay when menu is open */
    .nav-links::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
        z-index: -1;
    }

    .nav-links.active::before {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 14px 18px;
        border-radius: var(--radius-sm);
        font-size: 1rem;
        font-weight: 500;
        text-align: right;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(201, 164, 73, 0.1);
        color: var(--white);
        transition: all 0.3s ease;
    }

    .nav-links a:hover,
    .nav-links a:active {
        background: var(--bg-gold-gradient);
        color: var(--bg-dark);
        transform: translateX(-5px);
        box-shadow: var(--shadow-gold);
    }

    .nav-links a.active {
        background: var(--bg-gold-gradient);
        color: var(--bg-dark);
    }

    /* Menu Toggle Button */
    .menu-toggle {
        display: flex;
        padding: 12px;
        z-index: 1001;
        background: rgba(255, 255, 255, 0.9);
        border-radius: var(--radius-md);
        transition: all 0.3s ease;
    }

    .menu-toggle:hover {
        background: rgba(233, 30, 140, 0.1);
    }

    .menu-toggle.active {
        background: var(--primary);
    }

    .menu-toggle.active span {
        background: white;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Menu Header inside nav */
    .nav-links::after {
        content: 'القائمة';
        position: absolute;
        top: 30px;
        right: 25px;
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--primary);
    }

    /* Hero Section */
    .hero {
        margin-top: 72px;
    }

    .hero-slide img {
        height: 280px;
        object-position: center;
    }

    .hero-overlay {
        padding: 25px 15px 35px;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-dots {
        bottom: 15px;
    }

    .hero-dot {
        width: 12px;
        height: 12px;
    }

    /* Sections */
    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-image {
        height: 160px;
    }

    .product-info {
        padding: 14px;
    }

    .product-name {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .product-desc {
        font-size: 0.82rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        margin-bottom: 10px;
    }

    .product-price {
        font-size: 1rem;
    }

    .product-badge {
        padding: 4px 10px;
        font-size: 0.7rem;
        top: 10px;
        right: 10px;
    }

    /* Categories */
    .categories {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 10px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .categories::-webkit-scrollbar {
        display: none;
    }

    .category-btn {
        padding: 12px 18px;
        font-size: 0.85rem;
        flex-shrink: 0;
        gap: 6px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }

    .social-links {
        justify-content: center;
    }

    /* Cart Page */
    .cart-item {
        flex-direction: column;
        gap: 15px;
    }

    .cart-item-image {
        width: 100%;
        height: 200px;
    }

    .cart-item-info {
        text-align: center;
    }

    .cart-item-quantity {
        justify-content: center;
    }

    /* CTA */
    .cta-instagram h2 {
        font-size: 1.6rem;
    }

    .cta-instagram p {
        font-size: 1rem;
    }

    .cta-instagram {
        padding: 50px 15px;
    }

    /* Forms */
    .form-control {
        font-size: 16px;
        /* Prevent zoom on iOS */
        padding: 14px 16px;
    }

    select.form-control {
        font-size: 16px;
    }

    /* Buttons - Touch Friendly */
    .btn {
        min-height: 48px;
        padding: 14px 24px;
    }

    .btn-lg {
        padding: 16px 28px;
        font-size: 1rem;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .header-inner {
        padding: 12px 0;
    }

    .logo img {
        height: 40px;
    }

    .hero-slide img {
        height: 220px;
    }

    .hero-overlay {
        padding: 20px 12px 30px;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-lg {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 10px;
    }

    .product-name {
        font-size: 0.85rem;
    }

    .product-desc {
        display: none;
        /* Hide on very small screens */
    }

    .product-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .product-footer .btn {
        width: 100%;
        padding: 10px;
        font-size: 0.8rem;
    }

    .product-price {
        font-size: 0.95rem;
        text-align: center;
    }

    /* Categories */
    .categories {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .category-btn {
        padding: 14px 10px;
        font-size: 0.8rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.4rem;
    }

    .section-header {
        margin-bottom: 30px;
    }

    /* Cart Summary */
    .cart-summary {
        padding: 20px 15px;
    }

    .cart-total span:last-child {
        font-size: 1.3rem;
    }

    /* Forms - Full Width */
    #checkoutForm>div {
        grid-template-columns: 1fr !important;
    }

    /* Empty State */
    .empty-state {
        padding: 50px 15px;
    }

    .empty-icon {
        font-size: 3.5rem;
    }

    .empty-title {
        font-size: 1.3rem;
    }

    .empty-text {
        font-size: 1rem;
    }

    /* Alerts */
    .alert {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* Extra Small Phones */
@media (max-width: 360px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-image {
        height: 180px;
    }

    .product-desc {
        display: block;
    }

    .categories {
        grid-template-columns: 1fr;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {

    /* Increase tap targets */
    .btn {
        min-height: 48px;
    }

    .nav-links a {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .category-btn {
        min-height: 60px;
    }

    /* Remove hover effects on touch */
    .product-card:hover {
        transform: none;
    }

    .btn:hover::before {
        left: -100%;
    }

    /* Active states for touch */
    .btn:active {
        transform: scale(0.97);
    }

    .product-card:active {
        transform: scale(0.98);
    }

    .category-btn:active {
        transform: scale(0.97);
    }
}

/* Landscape Mode on Phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slide img {
        height: 200px;
    }

    .nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding: 15px;
    }

    .nav-links li {
        width: auto;
    }

    .nav-links a {
        padding: 12px 20px;
    }
}

/* Safe Area for Notched Phones */
@supports (padding: max(0px)) {
    .header {
        padding-top: max(0px, env(safe-area-inset-top));
    }

    .footer {
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }

    .container {
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
    }
}

/* ════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(233, 30, 140, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(233, 30, 140, 0.5);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.fade-in-up {
    animation: fadeInUp 0.7s ease forwards;
}

.pulse {
    animation: pulse 2s infinite;
}

.glow {
    animation: glow 2s infinite;
}

/* Staggered Animation */
.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.product-card:nth-child(5) {
    animation-delay: 0.5s;
}

.product-card:nth-child(6) {
    animation-delay: 0.6s;
}

.product-card:nth-child(7) {
    animation-delay: 0.7s;
}

.product-card:nth-child(8) {
    animation-delay: 0.8s;
}

/* ════════════════════════════════════════
   LOADING STATES
   ════════════════════════════════════════ */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(233, 30, 140, 0.15);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ════════════════════════════════════════
   PRODUCT IMAGE SLIDER
   ════════════════════════════════════════ */
.product-slider {
    position: relative;
}

.slider-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-images img.active {
    opacity: 1;
}

.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.85);
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.4);
    box-shadow: 0 0 8px rgba(233, 30, 140, 0.6);
    border-color: white;
}

/* ════════════════════════════════════════
   SCROLLBAR STYLING
   ════════════════════════════════════════ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ════════════════════════════════════════
   SELECTION STYLING
   ════════════════════════════════════════ */
::selection {
    background: var(--primary);
    color: white;
}

::-moz-selection {
    background: var(--primary);
    color: white;
}

/* ════════════════════════════════════════
   PAYMENT METHODS STYLING
   ════════════════════════════════════════ */

/* Payment Icons Row */
.payment-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-icons .payment-icon {
    font-size: 1.5rem;
    opacity: 0.9;
    transition: var(--transition);
    cursor: help;
}

.payment-icons .payment-icon:hover {
    transform: scale(1.2);
    opacity: 1;
}

/* Payment Methods Grid (Full Display) */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.payment-method-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(201, 164, 73, 0.05);
    border: 1px solid rgba(201, 164, 73, 0.15);
    border-radius: var(--radius-md);
    padding: 15px;
    transition: var(--transition);
}

.payment-method-card:hover {
    border-color: var(--primary);
    background: rgba(201, 164, 73, 0.1);
    transform: translateY(-2px);
}

.payment-method-card .payment-method-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.payment-method-card .payment-method-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.payment-method-card .payment-method-info strong {
    font-size: 0.95rem;
    color: var(--white);
}

.payment-method-card .payment-method-info small {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Payment Methods Select (Checkout Form) */
.payment-methods-select {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.payment-option {
    position: relative;
    cursor: pointer;
    display: block;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-option-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(201, 164, 73, 0.2);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.payment-option:hover .payment-option-content {
    border-color: rgba(201, 164, 73, 0.5);
    background: rgba(201, 164, 73, 0.05);
}

.payment-option input[type="radio"]:checked+.payment-option-content {
    border-color: var(--primary);
    background: rgba(201, 164, 73, 0.1);
    box-shadow: 0 0 15px rgba(201, 164, 73, 0.2);
}

.payment-option input[type="radio"]:checked+.payment-option-content::before {
    content: '✓';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 18px;
    height: 18px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.payment-option .payment-icon {
    font-size: 1.5rem;
}

.payment-option .payment-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

/* Payment Info in Footer */
.footer-links .payment-info-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    line-height: 1.6;
}

/* Compact Payment Display (Cart Summary) */
.payment-summary-compact {
    background: linear-gradient(135deg, rgba(201, 164, 73, 0.1), rgba(201, 164, 73, 0.05));
    border: 1px solid rgba(201, 164, 73, 0.2);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .payment-methods-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .payment-method-card {
        padding: 12px;
    }

    .payment-method-card .payment-method-icon {
        font-size: 1.5rem;
    }

    .payment-method-card .payment-method-info strong {
        font-size: 0.85rem;
    }

    .payment-methods-select {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .payment-option-content {
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }

    .payment-option .payment-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }

    .payment-methods-select {
        grid-template-columns: 1fr 1fr;
    }
}

/* ════════════════════════════════════════
   MOBILE RESPONSIVE - Products Grid 2 Columns
   ════════════════════════════════════════ */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-image {
        height: 180px;
    }

    .product-info {
        padding: 12px;
    }

    .product-name {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .product-desc {
        font-size: 0.75rem;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        margin-bottom: 10px;
    }

    .product-footer {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .product-footer .price-wrapper {
        justify-content: center;
    }

    .product-footer .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-image {
        height: 150px;
    }

    .product-info {
        padding: 10px;
    }

    .product-name {
        font-size: 0.8rem;
    }

    .product-desc {
        display: none;
    }

    .product-footer .price-current {
        font-size: 0.9rem;
    }

    .product-footer .price-old {
        font-size: 0.65rem;
    }

    .product-footer .btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

/* ════════════════════════════════════════
   MOBILE MENU STYLES - SIMPLE & RELIABLE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
    .menu-toggle {
        display: flex !important;
        cursor: pointer;
        position: relative;
        z-index: 1002;
        min-width: 48px;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        background: rgba(201, 164, 73, 0.15) !important;
        border: 2px solid var(--primary) !important;
        pointer-events: auto !important;
    }

    .menu-toggle span {
        width: 22px;
        height: 3px;
        background: var(--primary) !important;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.3s ease-in-out;
        z-index: 999;
        visibility: hidden;
    }

    .nav-links.active {
        right: 0;
        visibility: visible;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links a {
        font-size: 1.5rem !important;
        color: #fff !important;
    }

    /* Hamburger Animation */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}