/* --- 1. FONT & ROOT VARIABLES --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
  /* Brand Colors */
  --bg-black: #000000;
  --bg-dark-gray: #222222; /* For cards */
  --text-primary: #e0e0e0; /* Light gray text */
  --text-secondary: #aaaaaa;

  /* Accent Colors */
  --neon-red: #ff3366;
  --purple: #9b59b6;
  --green: #2ecc71;
  --blue: #3498db;
  
  /* Gradients */
  --gradient-purple: linear-gradient(90deg, #9b59b6, #8e44ad);
  --gradient-shine: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 75%
  );
  --gradient-border: linear-gradient(
    90deg,
    var(--neon-red),
    var(--purple),
    var(--blue),
    var(--neon-red)
  );

  /* Font */
  --font-primary: 'Poppins', sans-serif;
}

/* --- 2. GLOBAL RESET & DARK MODE --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-black);
  color: var(--text-primary);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--purple);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--neon-red);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #ffffff; /* Pure white for titles */
  margin-bottom: 1rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* --- 3. REUSABLE COMPONENTS & UTILITIES --- */

/* Main content container for all pages */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Header & Footer will be defined in their own sections */
/* We'll add them to index.html first */

/* Basic Button (for "Buy Now") */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  background: var(--gradient-purple);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(155, 89, 182, 0.4);
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 89, 182, 0.6);
}

/* Price styling */
.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green); /* Green for 'buy' */
}

.price-old {
  font-size: 1rem;
  color: var(--text-secondary);
  text-decoration: line-through;
  margin-left: 8px;
}

/* Loading Skeleton Animation (for product cards) */
.skeleton {
  background: #333;
  background-image: linear-gradient(90deg, #333, #444, #333);
  background-size: 200% 100%;
  animation: skeleton-load 1.5s infinite linear;
  border-radius: 8px;
}

@keyframes skeleton-load {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.cart-icon-link {
    position: relative;
    color: white;
    font-size: 1.5rem;
    margin-left: 1rem;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #00ff88;
    color: #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}
.cart-notification {
    position: fixed;
    bottom: 20px;
    right: -300px;
    background: #00ff88;
    color: #000;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,255,136,0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    transition: right 0.3s ease;
    z-index: 9999;
}

.cart-notification.show {
    right: 20px;
}

.add-to-cart-btn {
    background: #00ff88;
    color: #000;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    background: #00cc6d;
    transform: translateY(-2px);
}
/* Simple Minimalist Popup Notification */
.simple-popup {
    position: fixed;
    bottom: 20px;
    right: -400px;
    background: #1a1a1a;
    color: white;
    padding: 15px 25px;
    border-radius: 4px;
    border-left: 3px solid #00ff88;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: right 0.3s ease;
    z-index: 9999;
    max-width: 300px;
}

.simple-popup.show {
    right: 20px;
}

/* Add to Cart Button - Simple Style */
.add-to-cart-btn {
    background: #00ff88;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-btn:hover {
    background: #00cc6d;
    transform: translateY(-1px);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

/* Cart Badge - Simple Style */
.cart-icon-link {
    position: relative;
    color: white;
    font-size: 1.4rem;
    margin-left: 1.5rem;
    transition: color 0.2s;
}

.cart-icon-link:hover {
    color: #00ff88;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #00ff88;
    color: #000;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    display: none;
}

/* Clickable elements */
.clickable {
    cursor: pointer;
}

.product-title.clickable:hover {
    color: #00ff88;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .simple-popup {
        right: -350px;
        max-width: 250px;
        font-size: 13px;
        padding: 12px 20px;
    }

    .simple-popup.show {
        right: 10px;
    }

    .cart-icon-link {
        font-size: 1.2rem;
        margin-left: 1rem;
    }
}
/* Add this to your existing CART_DRAWER_STYLES.css */

/* Cart Summary Styling */
.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

.summary-row.discount-row {
    color: #00cc6d;
    font-weight: 500;
}

.summary-row.discount-row .discount-amount {
    color: #00cc6d;
    font-weight: 600;
}

.summary-row.total-row {
    padding-top: 10px;
    border-top: 2px solid #e5e5e5;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.summary-row.total-row span:last-child {
    color: #00ff88;
}
/* ========================================
   PRODUCT BADGES SYSTEM
   ======================================== */

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Sale Badge - Red Theme */
.badge.sale-badge {
    background: linear-gradient(135deg, #ff3366, #ff0044);
    color: white;
    border: 2px solid #fff;
    animation: sale-glow 2s ease-in-out infinite;
}

@keyframes sale-glow {
    0%, 100% { 
        box-shadow: 0 0 15px rgba(255, 51, 102, 0.6), 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% { 
        box-shadow: 0 0 25px rgba(255, 51, 102, 0.9), 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

/* New Arrival Badge - Green Theme */
.badge.new-badge {
    background: linear-gradient(135deg, #00ff88, #00cc6d);
    color: #000;
    border: 2px solid #fff;
    animation: new-shimmer 3s ease-in-out infinite;
}

@keyframes new-shimmer {
    0%, 100% { 
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.6), 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% { 
        box-shadow: 0 0 25px rgba(0, 255, 136, 0.9), 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

/* Best Seller Badge - Gold Theme */
.badge.bestseller-badge {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #000;
    border: 2px solid #fff;
    animation: bestseller-sparkle 2.5s ease-in-out infinite;
}

@keyframes bestseller-sparkle {
    0%, 100% { 
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.6), 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 215, 0, 1), 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

.badge i {
    font-size: 14px;
}

/* Badge hover effects */
.badge:hover {
    transform: scale(1.1) rotate(-5deg);
    animation: none;
}

/* Responsive Badge Sizes */
@media (max-width: 768px) {
    .product-badges {
        gap: 6px;
    }
    
    .badge {
        padding: 4px 10px;
        font-size: 10px;
        gap: 4px;
    }
    
    .badge i {
        font-size: 11px;
    }
}

/* ========================================
   SOCIAL SHARE BUTTONS
   ======================================== */

.share-container {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 2px solid rgba(255, 51, 102, 0.2);
}

.share-title {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-title i {
    color: var(--neon-red);
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    border: 2px solid;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    animation: share-float 3s ease-in-out infinite;
}

@keyframes share-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.share-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: none;
}

.share-btn i {
    font-size: 16px;
}

/* Facebook */
.share-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #0d5dbf);
    color: white;
    border-color: #1877f2;
}

.share-btn.facebook:hover {
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.5);
}

/* Twitter */
.share-btn.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
    border-color: #1da1f2;
}

.share-btn.twitter:hover {
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.5);
}

/* WhatsApp */
.share-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #1ea952);
    color: white;
    border-color: #25d366;
}

.share-btn.whatsapp:hover {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* Copy Link */
.share-btn.copy {
    background: linear-gradient(135deg, var(--purple), #6b1fb2);
    color: white;
    border-color: var(--purple);
}

.share-btn.copy:hover {
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.5);
}

.share-btn.copy.copied {
    background: linear-gradient(135deg, var(--green), #00994d);
    border-color: var(--green);
}

@media (max-width: 768px) {
    .share-buttons {
        gap: 8px;
    }
    
    .share-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .share-btn i {
        font-size: 14px;
    }
}

/* ========================================
   TRUST BADGES
   ======================================== */

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 8px 0;
    margin: 8px 0;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 51, 102, 0.15);
    transition: all 0.3s ease;
    min-width: 90px;
}

.trust-badge:hover {
    transform: translateY(-2px);
    border-color: var(--neon-red);
    background: rgba(255, 51, 102, 0.05);
}

.trust-badge-icon {
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--neon-red), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-badge-text {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.2;
}

.trust-badge:hover .trust-badge-text {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .trust-badges {
        gap: 10px;
        padding: 6px 0;
    }
    
    .trust-badge {
        padding: 6px 10px;
        min-width: 75px;
    }
    
    .trust-badge-icon {
        font-size: 1.1rem;
    }
    
    .trust-badge-text {
        font-size: 0.6rem;
    }
}

/* Bundle Styles for Zone Pages and Bundle Details Page */

/* Bundle Card in Zone Pages */
.bundle-card {
    position: relative;
    border: 2px solid #00ff88;
}

.bundle-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #00ff88;
    color: #000;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bundle-savings {
    color: #00ff88;
    font-size: 13px;
    font-weight: 600;
    margin: 8px 0 0 0;
}

.bundle-btn {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6d 100%);
}

/* Split Image Grid for Bundles */
.split-image-grid {
    width: 100%;
    height: 100%;
    display: grid;
    gap: 2px;
    background: #000;
}

.split-grid-1 {
    grid-template-columns: 1fr;
}

.split-grid-2 {
    grid-template-columns: 1fr 1fr;
}

.split-grid-3 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.split-grid-3 .split-image:first-child {
    grid-column: 1 / 3;
}

.split-grid-4 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.split-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.split-image img:hover {
    transform: scale(1.1);
}

/* Bundle Details Page */
.bundle-container {
    padding: 40px 20px;
    min-height: 60vh;
}

.back-btn {
    background: none;
    border: 1px solid #666;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 30px;
    transition: all 0.2s;
}

.back-btn:hover {
    border-color: #00ff88;
    color: #00ff88;
}

.bundle-details {
    max-width: 900px;
    margin: 0 auto;
}

.bundle-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(0,255,136,0.1) 0%, rgba(0,0,0,0.3) 100%);
    border-radius: 8px;
    margin-bottom: 40px;
}

.bundle-badge-large {
    display: inline-block;
    background: #00ff88;
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.bundle-header h1 {
    font-size: 2.5rem;
    color: white;
    margin: 20px 0;
}

.bundle-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.bundle-original-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
}

.bundle-price {
    font-size: 2.5rem;
    color: #00ff88;
    font-weight: 700;
}

.bundle-savings-badge {
    background: #ff4444;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.add-bundle-btn {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6d 100%);
    color: #000;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.add-bundle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,255,136,0.4);
}

/* Bundle Games Section */
.bundle-games-section {
    margin-top: 40px;
}

.bundle-games-section h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.bundle-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.bundle-game-item {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.bundle-game-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: #00ff88;
    transform: translateY(-2px);
}

.bundle-game-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.bundle-game-info h4 {
    color: white;
    font-size: 16px;
    margin: 0 0 8px 0;
}

.game-price {
    color: #00ff88;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bundle-header h1 {
        font-size: 1.8rem;
    }

    .bundle-price {
        font-size: 2rem;
    }

    .bundle-original-price {
        font-size: 1.2rem;
    }

    .bundle-games-grid {
        grid-template-columns: 1fr;
    }

    .split-grid-3,
    .split-grid-4 {
        grid-template-columns: 1fr 1fr;
    }
}
/* Coupon Section Styling - Minimalist Design */

.cart-coupon-section {
    padding: 15px 20px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    background: #f9f9f9;
}

.coupon-input-group {
    display: flex;
    gap: 10px;
}

#coupon-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    text-transform: uppercase;
    transition: border-color 0.2s;
}

#coupon-input:focus {
    outline: none;
    border-color: #00ff88;
}

#coupon-input:disabled {
    background: #f5f5f5;
    color: #999;
}

#apply-coupon-btn {
    padding: 12px 25px;
    background: #000;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

#apply-coupon-btn:hover:not(:disabled) {
    background: #333;
}

#apply-coupon-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.coupon-message {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    display: none;
}

.coupon-message.success {
    display: block;
    background: rgba(0,255,136,0.1);
    color: #00cc6d;
    border: 1px solid #00ff88;
}

.coupon-message.error {
    display: block;
    background: rgba(255,68,68,0.1);
    color: #ff4444;
    border: 1px solid #ff4444;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .coupon-input-group {
        flex-direction: column;
    }

    #apply-coupon-btn {
        width: 100%;
    }
}
/* Promotion Badge & Countdown Timer - Minimalist Style */

.promo-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(255,68,68,0.4);
}

.promo-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-countdown {
    font-size: 10px;
    font-weight: 600;
    background: rgba(0,0,0,0.3);
    padding: 3px 6px;
    border-radius: 2px;
    text-align: center;
}

/* Cart Promo Tag */
.cart-promo-tag {
    display: inline-block;
    background: #ff4444;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Coupon Note */
.coupon-note {
    margin-top: 10px;
    font-size: 12px;
    color: #ff6600;
    display: none;
    padding: 8px;
    background: rgba(255,102,0,0.1);
    border-radius: 4px;
    border-left: 3px solid #ff6600;
}

/* Product Card Adjustments for Promo */
.product-card {
    position: relative;
}

/* Original Price Styling */
.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
    margin-right: 8px;
}

.discount-price {
    color: #ff4444;
    font-weight: 700;
    font-size: 1.1em;
}

/* Responsive */
@media (max-width: 768px) {
    .promo-badge {
        padding: 6px 10px;
    }

    .promo-label {
        font-size: 10px;
    }

    .promo-countdown {
        font-size: 9px;
    }
}
/* === PROMOTION STYLES - FORCE OVERRIDE === */

/* Promo Badge */
.promo-badge {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    z-index: 10 !important;
    background: linear-gradient(135deg, #ff3366 0%, #cc0000 100%) !important;
    color: white !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    box-shadow: 0 4px 12px rgba(255,68,68,0.5) !important;
}

.promo-label {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: white !important;
}

.promo-countdown {
    font-size: 10px !important;
    font-weight: 600 !important;
    background: rgba(0,0,0,0.3) !important;
    padding: 3px 6px !important;
    border-radius: 3px !important;
    text-align: center !important;
    color: white !important;
}

/* Price Display - WITH PROMO */
.product-price .original-price {
    display: inline-block !important;
    text-decoration: line-through !important;
    color: #999 !important;
    font-size: 0.9em !important;
    margin-right: 8px !important;
    opacity: 0.7 !important;
}

.product-price .discount-price {
    display: inline-block !important;
    color: #ff3366 !important;
    font-weight: 700 !important;
    font-size: 1.1em !important;
}

/* Cart Promo Tag */
.cart-promo-tag {
    display: inline-block !important;
    background: #ff3366 !important;
    color: white !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    padding: 3px 8px !important;
    border-radius: 3px !important;
    text-transform: uppercase !important;
    margin-top: 4px !important;
}

/* Coupon Warning Note */
.coupon-note {
    margin-top: 10px !important;
    font-size: 12px !important;
    color: #ff6600 !important;
    display: none !important;
    padding: 8px !important;
    background: rgba(255,102,0,0.1) !important;
    border-radius: 4px !important;
    border-left: 3px solid #ff6600 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .promo-badge {
        padding: 6px 10px !important;
    }

    .promo-label {
        font-size: 10px !important;
    }

    .promo-countdown {
        font-size: 9px !important;
    }
}
.testimonial-game {
    display: block;
    font-style: italic;
    color: #FF1744;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 600;
}












/* ✅ COMPACT FOOTER */
.footer {
    padding: 15px 0;  /* Reduced from default */
    margin-top: 20px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;  /* Minimal spacing between elements */
}

.footer-socials {
    display: flex;
    gap: 15px;  /* Tight spacing between icons */
    margin: 0;
}

.social-link {
    font-size: 20px;  /* Slightly smaller icons */
    padding: 8px;
}

.footer-links {
    display: flex;
    gap: 15px;  /* Tight spacing between links */
    margin: 0;
}

.footer-link {
    font-size: 13px;  /* Smaller text */
    padding: 0;
}

.footer-credit {
    font-size: 12px;  /* Smaller credit text */
    margin: 0;
    padding: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 12px 0;
    }
    
    .footer-container {
        gap: 6px;
    }
}
