/* ===== CSS VARIABLES & RESET ===== */
:root {
    --gold: #D4A843;
    --gold-light: #F0C75E;
    --gold-dark: #B8922F;
    --black: #0A0A0A;
    --black-light: #1A1A1A;
    --black-card: #111111;
    --gray: #2A2A2A;
    --gray-light: #888888;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ===== PRELOADER ===== */
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--black); display: flex; align-items: center; justify-content: center; z-index: 99999; transition: opacity 0.5s ease; }
#preloader.fade-out { opacity: 0; pointer-events: none; }
.loader { width: 60px; height: 60px; border: 4px solid var(--gray); border-top: 4px solid var(--gold); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; width: 100%; padding: 15px 0; z-index: 1000; transition: var(--transition); background: transparent; }
.navbar.scrolled { background: rgba(10, 10, 10, 0.95); padding: 10px 0; box-shadow: 0 2px 20px rgba(212, 168, 67, 0.1); backdrop-filter: blur(10px); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.nav-logo img { width: 55px; height: 55px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; transition: var(--transition); }
.nav-logo:hover img { box-shadow: 0 0 15px rgba(212, 168, 67, 0.5); }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .brand { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); letter-spacing: 3px; line-height: 1; }
.nav-logo-text .tagline { font-size: 0.6rem; color: var(--gray-light); letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-family: 'Oswald', sans-serif; font-size: 0.9rem; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: var(--white); position: relative; transition: var(--transition); }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition); }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.cart-icon-wrapper { position: relative; cursor: pointer; padding: 10px; transition: var(--transition); }
.cart-icon-wrapper:hover { color: var(--gold); }
.cart-icon-wrapper i { font-size: 1.3rem; color: var(--gold); }
.cart-count { position: absolute; top: -5px; right: -5px; background: var(--gold); color: var(--black); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; font-family: 'Oswald', sans-serif; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 28px; height: 2px; background: var(--gold); transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== CART SIDEBAR & OVERLAY ===== */
.cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); z-index: 9999; opacity: 0; visibility: hidden; transition: var(--transition); }
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-sidebar { position: fixed; top: 0; right: -100%; width: 100%; max-width: 450px; height: 100vh; background: var(--black-card); border-left: 2px solid var(--gold); z-index: 10000; transition: var(--transition); display: flex; flex-direction: column; box-shadow: -5px 0 30px rgba(212, 168, 67, 0.2); }
.cart-sidebar.active { right: 0; }
.cart-header { padding: 25px; border-bottom: 1px solid rgba(212, 168, 67, 0.2); display: flex; justify-content: space-between; align-items: center; }
.cart-header h3 { color: var(--gold); font-size: 1.5rem; letter-spacing: 2px; }
.close-cart { background: none; border: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; transition: var(--transition); }
.close-cart:hover { transform: rotate(90deg); color: var(--gold-light); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px; }

/* Cart Items */
.cart-item { display: flex; gap: 15px; padding: 20px; background: var(--black); border: 1px solid rgba(212, 168, 67, 0.1); margin-bottom: 15px; position: relative; }
.cart-item-image { width: 80px; height: 80px; background: var(--gray); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(212, 168, 67, 0.2); }
.cart-item-image i { font-size: 2rem; color: var(--gold); opacity: 0.5; }
.cart-item-details { flex: 1; }
.cart-item-name { font-family: 'Oswald', sans-serif; font-size: 1rem; color: var(--gold); margin-bottom: 5px; letter-spacing: 1px; }
.cart-item-price { font-size: 0.9rem; color: var(--gray-light); margin-bottom: 10px; }
.cart-item-quantity { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 28px; height: 28px; background: var(--gray); border: 1px solid rgba(212, 168, 67, 0.2); color: var(--gold); cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--gold); color: var(--black); }
.qty-value { font-family: 'Oswald', sans-serif; font-size: 1rem; color: var(--white); min-width: 30px; text-align: center; }
.remove-item { position: absolute; top: 10px; right: 10px; background: none; border: none; color: var(--gray-light); cursor: pointer; transition: var(--transition); }
.remove-item:hover { color: #ff4444; }
.cart-footer { padding: 25px; border-top: 1px solid rgba(212, 168, 67, 0.2); background: var(--black); }
.cart-subtotal { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 1rem; color: var(--gray-light); }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 20px; padding-top: 15px; border-top: 1px solid rgba(212, 168, 67, 0.2); }
.cart-total span:first-child { font-family: 'Oswald', sans-serif; font-size: 1.3rem; color: var(--gold); letter-spacing: 2px; }
.cart-total span:last-child { font-family: 'Oswald', sans-serif; font-size: 1.5rem; color: var(--gold); font-weight: 700; }
.coupon-section { margin-bottom: 20px; }
.coupon-input-wrapper { display: flex; gap: 10px; margin-bottom: 10px; }
.coupon-input { flex: 1; padding: 12px 15px; background: var(--gray); border: 1px solid rgba(212, 168, 67, 0.2); color: var(--white); font-size: 0.9rem; outline: none; transition: var(--transition); }
.coupon-input:focus { border-color: var(--gold); }
.apply-coupon-btn { padding: 12px 20px; background: var(--gold); color: var(--black); border: none; font-family: 'Oswald', sans-serif; font-weight: 600; letter-spacing: 1px; cursor: pointer; transition: var(--transition); }
.apply-coupon-btn:hover { background: var(--gold-light); }
.coupon-message { font-size: 0.85rem; padding: 8px; border-radius: 3px; display: none; }
.coupon-message.success { background: rgba(76, 175, 80, 0.2); color: #4CAF50; border: 1px solid #4CAF50; display: block; }
.coupon-message.error { background: rgba(244, 67, 54, 0.2); color: #f44336; border: 1px solid #f44336; display: block; }
.discount-applied { display: flex; justify-content: space-between; margin-bottom: 10px; color: #4CAF50; font-size: 0.9rem; }
.checkout-btn { width: 100%; padding: 15px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--black); border: none; font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: var(--transition); clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%); }
.checkout-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(212, 168, 67, 0.4); }
.checkout-btn:disabled { background: var(--gray); cursor: not-allowed; transform: none; }
.empty-cart { text-align: center; padding: 40px 20px; color: var(--gray-light); }
.empty-cart i { font-size: 4rem; color: var(--gold); opacity: 0.3; margin-bottom: 20px; }
.empty-cart p { font-size: 1.1rem; margin-bottom: 20px; }
.continue-shopping { display: inline-block; padding: 10px 25px; border: 2px solid var(--gold); color: var(--gold); font-family: 'Oswald', sans-serif; letter-spacing: 1px; transition: var(--transition); }
.continue-shopping:hover { background: var(--gold); color: var(--black); }

/* ===== CHECKOUT MODAL ===== */
.checkout-modal-wrapper { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.95); z-index: 10001; opacity: 0; visibility: hidden; transition: var(--transition); overflow-y: auto; padding: 20px 0; display: flex; align-items: center; justify-content: center; }
.checkout-modal-wrapper.active { opacity: 1; visibility: visible; }
.checkout-modal { position: relative; background: var(--black-card); border: 2px solid var(--gold); max-width: 700px; width: 90%; margin: 0 auto; padding: 40px 30px; transform: translateY(-50px); transition: transform 0.3s ease; max-height: 90vh; overflow-y: auto; }
.checkout-modal-wrapper.active .checkout-modal { transform: translateY(0); }
.close-checkout { position: absolute; top: 15px; right: 15px; background: none; border: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; transition: var(--transition); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.close-checkout:hover { transform: rotate(90deg); background: rgba(212, 168, 67, 0.1); }
.checkout-modal h3 { color: var(--gold); font-size: 1.8rem; margin-bottom: 10px; letter-spacing: 2px; text-align: center; }
.checkout-modal > p { color: var(--gray-light); text-align: center; margin-bottom: 30px; }
.checkout-form { display: flex; flex-direction: column; gap: 20px; }
.checkout-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.checkout-form .form-group { display: flex; flex-direction: column; gap: 8px; }
.checkout-form .form-group label { font-size: 0.85rem; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; font-weight: 500; }
.checkout-form .form-group .required { color: #ff4444; }
.checkout-form .form-group .optional { color: var(--gray-light); font-size: 0.75rem; text-transform: none; letter-spacing: 0; }
.checkout-form .form-group input,
.checkout-form .form-group select,
.checkout-form .form-group textarea { padding: 12px 15px; background: var(--black); border: 1px solid rgba(212, 168, 67, 0.2); color: var(--white); font-family: 'Roboto', sans-serif; font-size: 0.95rem; outline: none; transition: var(--transition); }
.checkout-form .form-group input:focus,
.checkout-form .form-group select:focus,
.checkout-form .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 10px rgba(212, 168, 67, 0.1); }
.checkout-form .form-group input.error,
.checkout-form .form-group select.error,
.checkout-form .form-group textarea.error { border-color: #ff4444; }
.error-message { font-size: 0.75rem; color: #ff4444; min-height: 18px; display: none; }
.error-message.show { display: block; }
.checkout-form .form-group textarea { resize: vertical; font-family: 'Roboto', sans-serif; }
.order-summary-mini { background: var(--black); border: 1px solid rgba(212, 168, 67, 0.2); padding: 20px; margin-top: 10px; }
.order-summary-mini h4 { color: var(--gold); font-size: 1.1rem; margin-bottom: 15px; letter-spacing: 1px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.95rem; }
.summary-row:last-child { border-top: 1px solid rgba(212, 168, 67, 0.2); padding-top: 10px; margin-bottom: 0; font-size: 1.1rem; font-weight: 600; }
.gold-text { color: var(--gold); }
.payment-btn { width: 100%; padding: 16px 30px; background: var(--gray); color: var(--gray-light); border: 2px solid var(--gray); font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: not-allowed; transition: var(--transition); margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.payment-btn.active { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--black); border-color: var(--gold); cursor: pointer; }
.payment-btn.active:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212, 168, 67, 0.4); }

/* ===== SPLIT PAYMENT MODAL ===== */
.split-payment-wrapper { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.95); z-index: 10002; opacity: 0; visibility: hidden; transition: var(--transition); overflow-y: auto; display: flex; align-items: center; justify-content: center; padding: 20px; }
.split-payment-wrapper.active { opacity: 1; visibility: visible; }
.split-payment-modal { position: relative; background: var(--black-card); border: 2px solid var(--gold); max-width: 600px; width: 100%; transform: scale(0.9); transition: transform 0.4s ease; overflow: hidden; }
.split-payment-wrapper.active .split-payment-modal { transform: scale(1); }
.close-split-payment { position: absolute; top: 15px; right: 15px; background: var(--gold); border: none; color: var(--black); font-size: 1.2rem; cursor: pointer; transition: var(--transition); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; z-index: 10; }
.close-split-payment:hover { transform: rotate(90deg) scale(1.1); }
.payment-header { padding: 20px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); text-align: center; }
.payment-header h3 { color: var(--black); font-size: 1.3rem; letter-spacing: 3px; margin-bottom: 5px; }
.payment-header .amount { font-family: 'Oswald', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--black); }
.payment-content { padding: 40px 30px; display: flex; flex-direction: column; align-items: center; }
.payment-content h4 { color: var(--gold); font-size: 1.2rem; margin-bottom: 25px; letter-spacing: 2px; text-align: center; }
.qr-container { background: var(--white); padding: 25px; border-radius: 10px; margin-bottom: 20px; box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5); position: relative; overflow: hidden; }
.qr-code-box { width: 220px; height: 220px; display: flex; align-items: center; justify-content: center; position: relative; background: var(--white); }
.qr-pattern { width: 100%; height: 100%; background: repeating-linear-gradient(0deg, #000 0px, #000 12px, transparent 12px, transparent 24px), repeating-linear-gradient(90deg, #000 0px, #000 12px, transparent 12px, transparent 24px); opacity: 0.9; position: relative; }
.qr-pattern::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background: var(--gold); clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }
.qr-scan-line { position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); box-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold); animation: scanLine 2.5s ease-in-out infinite; z-index: 5; }
.qr-corner-markers { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.corner { position: absolute; width: 30px; height: 30px; border: 3px solid var(--gold); }
.corner.top-left { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.corner.top-right { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.corner.bottom-left { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.corner.bottom-right { bottom: 10px; right: 10px; border-left: none; border-top: none; }
@keyframes scanLine { 0%, 100% { top: 0; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 100%; opacity: 0; } }
.scan-instruction { color: var(--gray-light); font-size: 0.9rem; text-align: center; margin-bottom: 20px; }
.upi-section { background: var(--black); border: 1px solid rgba(212, 168, 67, 0.3); padding: 15px 20px; width: 100%; max-width: 320px; margin-bottom: 20px; }
.upi-label { color: var(--gray-light); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.upi-id-box { display: flex; align-items: center; gap: 10px; }
.upi-id-box span { flex: 1; color: var(--gold); font-family: 'Roboto', sans-serif; font-size: 0.9rem; word-break: break-all; }
.copy-btn { background: var(--gold); color: var(--black); border: none; padding: 8px 15px; font-family: 'Oswald', sans-serif; font-size: 0.75rem; letter-spacing: 1px; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.copy-btn:hover { background: var(--gold-light); }
.error-message-box { background: rgba(244, 67, 54, 0.1); border: 1px solid #f44336; padding: 12px 15px; border-radius: 5px; margin-bottom: 20px; display: none; width: 100%; max-width: 320px; }
.error-message-box.show { display: block; animation: shake 0.5s ease-in-out; }
.error-message-box i { color: #f44336; margin-right: 8px; }
.error-message-box span { color: #f44336; font-size: 0.85rem; }
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-10px); } 75% { transform: translateX(10px); } }
.payment-confirmed-btn { width: 100%; max-width: 320px; padding: 16px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--black); border: none; font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: var(--transition); margin-top: 10px; }
.payment-confirmed-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(212, 168, 67, 0.4); }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative;  background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%); }
.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;              /* keep behind */
  pointer-events: none;    /* 🔥 important */
}
.hero-particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%;  }
.particle { position: absolute; width: 2px; height: 2px; background: var(--gold); border-radius: 50%; opacity: 0.3; animation: float-particle linear infinite; }
@keyframes float-particle { 0% { transform: translateY(100vh) rotate(0deg); opacity: 0; } 10% { opacity: 0.3; } 90% { opacity: 0.3; } 100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; } }
.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* 🔥 give more space to text */
  gap: 40px;
  align-items: center;
}
.hero-content {
  margin-top: -40px;   /* move up */
  max-width: 600px;
}
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(212, 168, 67, 0.1); border: 1px solid rgba(212, 168, 67, 0.3); padding: 8px 20px; margin-bottom: 25px; font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); animation: fadeInUp 0.8s ease; }
.hero-badge i { font-size: 0.7rem; }
.hero h1 { font-size: 4rem; font-weight: 700; line-height: 1.1; margin-bottom: 20px; animation: fadeInUp 0.8s ease 0.2s both; }
.hero h1 .highlight { color: var(--gold); }
.hero h1 .outline-text { -webkit-text-stroke: 2px var(--gold); color: transparent; }
.hero-description { font-size: 1.05rem; color: var(--gray-light); line-height: 1.8; margin-bottom: 35px; max-width: 500px; animation: fadeInUp 0.8s ease 0.4s both; }
.hero-buttons { display: flex; gap: 20px; margin-bottom: 50px; animation: fadeInUp 0.8s ease 0.6s both; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--black); padding: 15px 35px; font-family: 'Oswald', sans-serif; font-size: 0.95rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; border: none; cursor: pointer; transition: var(--transition); clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212, 168, 67, 0.3); }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--gold); padding: 15px 35px; font-family: 'Oswald', sans-serif; font-size: 0.95rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; border: 2px solid var(--gold); cursor: pointer; transition: var(--transition); clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%); }
.btn-secondary:hover { background: rgba(212, 168, 67, 0.1); transform: translateY(-3px); }
.hero-stats { display: flex; gap: 40px; animation: fadeInUp 0.8s ease 0.8s both; }
.stat-item { text-align: center; }
.stat-number { font-family: 'Oswald', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.75rem; color: var(--gray-light); letter-spacing: 2px; text-transform: uppercase; margin-top: 5px; }
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: auto;
  aspect-ratio: 1;
  margin: 0 auto;
  isolation: isolate;
}
.hero-circle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 400px; height: 400px; border: 2px solid rgba(212, 168, 67, 0.2); border-radius: 50%; animation: rotate-slow 20s linear infinite; }
.hero-circle::before { content: ''; position: absolute; top: -5px; left: 50%; width: 10px; height: 10px; background: var(--gold); border-radius: 50%; }
.hero-circle-2 { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 350px; height: 350px; border: 1px dashed rgba(212, 168, 67, 0.15); border-radius: 50%; animation: rotate-slow 15s linear infinite reverse; }
@keyframes rotate-slow { to { transform: translate(-50%, -50%) rotate(360deg); } }
.hero-center-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 200px; height: 200px; display: flex; align-items: center; justify-content: center; }
.hero-center-icon i { font-size: 5rem; color: var(--gold); opacity: 0.15; }
.floating-card { position: absolute; background: rgba(17, 17, 17, 0.9); border: 1px solid rgba(212, 168, 67, 0.2); padding: 15px 20px; backdrop-filter: blur(10px); animation: float 3s ease-in-out infinite; }
.floating-card-1 { top: 30px; right: -10px; animation-delay: 0s; }
.floating-card-2 { bottom: 50px; left: -20px; animation-delay: 1.5s; }
.floating-card i { color: var(--gold); margin-right: 8px; }
.floating-card span { font-family: 'Oswald', sans-serif; font-size: 0.85rem; letter-spacing: 1px; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }

/* ===== MARQUEE ===== */
.marquee-section { background: var(--gold); padding: 12px 0; overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 60px;              /* spacing between items */
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  align-items: center;
}

.marquee-track span {
  font-size: 16px;
  color: #fff;
  letter-spacing: 1px;
  white-space: nowrap;
  position: relative;
}

/* 🔥 add separator dot */
.marquee-track span::after {
  content: "•";
  margin-left: 40px;
  color: #d4af37;
}
.marquee-item { display: flex; align-items: center; gap: 15px; padding: 0 40px; white-space: nowrap; }
.marquee-item span { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 700; color: var(--black); letter-spacing: 3px; text-transform: uppercase; }
.marquee-item i { color: var(--black); font-size: 0.6rem; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-subtitle { display: inline-flex; align-items: center; gap: 10px; font-size: 0.8rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 15px; }
.section-subtitle::before, .section-subtitle::after { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-title { font-size: 2.8rem; font-weight: 700; margin-bottom: 15px; }
.section-title .highlight { color: var(--gold); }
.section-description { font-size: 1rem; color: var(--gray-light); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ===== SCROLLABLE PRODUCTS ===== */
.scrollable-products { overflow-x: auto; overflow-y: hidden; padding: 20px 10px 50px 10px; position: relative; -webkit-overflow-scrolling: touch; }
.scrollable-products::-webkit-scrollbar { height: 15px !important; }
.scrollable-products::-webkit-scrollbar-track { background: var(--black-card) !important; border-radius: 10px !important; border: 2px solid var(--black-card) !important; }
.scrollable-products::-webkit-scrollbar-thumb { background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important; border-radius: 10px !important; border: 3px solid var(--black-card) !important; box-shadow: 0 0 15px rgba(212, 168, 67, 0.6) !important; }
.scrollable-products::-webkit-scrollbar-thumb:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important; box-shadow: 0 0 25px rgba(212, 168, 67, 0.9) !important; }
.scrollable-products { scrollbar-width: thick; scrollbar-color: var(--gold) var(--black-card); }
.products-grid {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

/* Product Cards */
.product-card { flex: 0 0 300px !important; min-width: 280px !important; background: var(--black-card); border: 1px solid rgba(212, 168, 67, 0.1); border-radius: 8px; overflow: hidden; transition: var(--transition); cursor: pointer; position: relative; }
.product-card:hover { border-color: var(--gold); transform: translateY(-8px); box-shadow: 0 15px 40px rgba(212, 168, 67, 0.2); }
.product-badge { position: absolute; top: 15px; left: 15px; background: var(--gold); color: var(--black); padding: 5px 12px; font-family: 'Oswald', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; z-index: 2; }
.product-image { height: 220px; background: var(--gray); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-image i { font-size: 4rem; color: var(--gold); opacity: 0.3; transition: var(--transition); }
.product-card:hover .product-image i { opacity: 0.5; transform: scale(1.1); }
.product-card {
  min-width: 280px;
  max-width: 280px;
  flex: 0 0 auto;
}
/* Add to Cart Button */
.add-to-cart-hover {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--black);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 3;
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.add-to-cart-hover::after {
    content: "Add to Cart";
    position: absolute;
    top: 50px;
    right: 0;
    background: var(--white);
    color: var(--black);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-family: 'Oswald', sans-serif;
    white-space: nowrap;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
    pointer-events: none;
}
.product-card:hover .add-to-cart-hover::after { opacity: 1; transform: translateY(0); }
.add-to-cart-hover:hover { background: var(--gold-light); transform: scale(1.1); }
.add-to-cart-hover i { font-size: 1.2rem; }

.product-info { padding: 20px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.product-category { font-size: 0.75rem; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.product-name { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 15px; }
.product-price { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.current-price { font-family: 'Oswald', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.original-price { font-size: 0.9rem; color: var(--gray-light); text-decoration: line-through; }
.discount { font-size: 0.8rem; color: var(--gold); font-weight: 600; }
.scroll-indicator { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--gold); font-size: 0.9rem; margin-top: 20px; animation: pulse 2s infinite; }
.scroll-indicator i { font-size: 1.2rem; animation: bounceRight 1.5s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes bounceRight { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(10px); } }

/* ===== FEATURES ===== */
.features { background: var(--black-light); position: relative; }
.features::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature-card { text-align: center; padding: 40px 20px; background: var(--black-card); border: 1px solid rgba(212, 168, 67, 0.1); transition: var(--transition); }
.feature-card:hover { border-color: rgba(212, 168, 67, 0.3); transform: translateY(-5px); }
.feature-icon { width: 70px; height: 70px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; background: rgba(212, 168, 67, 0.1); border-radius: 50%; }
.feature-icon i { font-size: 1.8rem; color: var(--gold); }
.feature-card h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--gold); }
.feature-card p { font-size: 0.9rem; color: var(--gray-light); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--black-light); position: relative; }
.testimonials::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.testimonials-slider { max-width: 800px; margin: 0 auto; position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card { min-width: 100%; padding: 40px; text-align: center; }
.testimonial-card .quote-icon { font-size: 3rem; color: var(--gold); opacity: 0.3; margin-bottom: 20px; }
.testimonial-card p { font-size: 1.1rem; color: var(--gray-light); line-height: 1.8; font-style: italic; margin-bottom: 25px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 15px; }
.testimonial-avatar { width: 55px; height: 55px; border-radius: 50%; background: var(--gray); display: flex; align-items: center; justify-content: center; border: 2px solid var(--gold); }
.testimonial-avatar i { font-size: 1.2rem; color: var(--gold); }
.testimonial-author-info h5 { font-size: 0.95rem; letter-spacing: 1px; }
.testimonial-author-info span { font-size: 0.75rem; color: var(--gold); }
.testimonial-stars { margin-bottom: 15px; }
.testimonial-stars i { color: var(--gold); font-size: 0.9rem; }
.slider-controls { display: flex; justify-content: center; gap: 15px; margin-top: 30px; }
.slider-btn { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; background: transparent; border: 1px solid rgba(212, 168, 67, 0.3); color: var(--gold); cursor: pointer; transition: var(--transition); }
.slider-btn:hover { background: var(--gold); color: var(--black); }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(212, 168, 67, 0.2); cursor: pointer; transition: var(--transition); }
.slider-dot.active { background: var(--gold); }

/* ===== CONTACT ===== */
.contact { background: var(--black-light); position: relative; }
.contact::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { font-size: 2.5rem; margin-bottom: 20px; color: var(--white); }
.contact-info h3 span { color: var(--gold); }
.contact-info > p { color: var(--gray-light); line-height: 1.8; margin-bottom: 40px; font-size: 1rem; }
.contact-details { display: flex; flex-direction: column; gap: 25px; margin-bottom: 30px; }
.contact-detail { display: flex; align-items: flex-start; gap: 20px; }
.contact-detail-icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: var(--black-card); border: 1px solid rgba(212, 168, 67, 0.2); flex-shrink: 0; }
.contact-detail-icon i { color: var(--gold); font-size: 1.2rem; }
.contact-detail-text h5 { font-size: 1rem; letter-spacing: 1px; margin-bottom: 5px; color: var(--white); text-transform: uppercase; }
.contact-detail-text p { font-size: 0.95rem; color: var(--gray-light); line-height: 1.6; }
.social-links { display: flex; gap: 15px; margin-top: 30px; }
.social-link { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: var(--black-card); border: 1px solid rgba(212, 168, 67, 0.2); color: var(--gold); font-size: 1.2rem; transition: var(--transition); }
.social-link:hover { background: var(--gold); color: var(--black); transform: translateY(-3px); border-color: var(--gold); }
.contact-form-wrapper { background: var(--black-card); border: 2px solid rgba(212, 168, 67, 0.2); padding: 50px 40px; position: relative; }
.contact-form-wrapper::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); }
.contact-form-wrapper h4 { font-size: 1.8rem; margin-bottom: 30px; color: var(--white); letter-spacing: 2px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form .form-group label { display: block; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-weight: 500; }
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea { width: 100%; padding: 14px 18px; background: var(--black); border: 1px solid rgba(212, 168, 67, 0.2); color: var(--white); font-family: 'Roboto', sans-serif; font-size: 0.95rem; outline: none; transition: var(--transition); }
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 10px rgba(212, 168, 67, 0.1); }
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder { color: var(--gray-light); }
.contact-form .form-group select { cursor: pointer; }
.contact-form .form-group select option { background: var(--black); color: var(--white); }
.contact-form .form-group textarea { resize: vertical; min-height: 140px; }
.contact-form .submit-btn { width: 100%; padding: 16px 30px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--black); border: none; font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px; clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%); }
.contact-form .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212, 168, 67, 0.4); }

/* ===== NEWSLETTER ===== */
.newsletter-footer { background: var(--black); padding: 60px 0; border-top: 1px solid rgba(212, 168, 67, 0.2); }
.newsletter-container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.newsletter-content { flex: 1; }
.newsletter-content h3 { font-size: 2rem; color: var(--gold); margin-bottom: 10px; letter-spacing: 3px; }
.newsletter-content p { color: var(--gray-light); font-size: 0.95rem; line-height: 1.6; max-width: 500px; }
.newsletter-form-horizontal { flex: 1; max-width: 500px; display: flex; gap: 0; }
.newsletter-form-horizontal input { flex: 1; padding: 15px 25px; background: var(--gray); border: 2px solid rgba(212, 168, 67, 0.2); color: var(--white); font-size: 0.95rem; outline: none; transition: var(--transition); }
.newsletter-form-horizontal input:focus { border-color: var(--gold); }
.newsletter-form-horizontal button { padding: 15px 40px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--black); border: none; font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: var(--transition); }
.newsletter-form-horizontal button:hover { transform: translateX(5px); box-shadow: 0 5px 20px rgba(212, 168, 67, 0.4); }
.footer-bottom { text-align: center; padding: 25px 0; border-top: 1px solid rgba(212, 168, 67, 0.1); margin-top: 40px; }
.footer-bottom p { font-size: 0.85rem; color: var(--gray-light); }
.footer-bottom p span { color: var(--gold); }

/* ===== BACK TO TOP ===== */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: var(--gold); color: var(--black); font-size: 1.2rem; cursor: pointer; z-index: 999; opacity: 0; visibility: hidden; transition: var(--transition); clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%); }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(212, 168, 67, 0.4); }

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-page { display: none; min-height: 100vh; padding: 100px 0 60px; background: var(--black); }
.product-detail-page.active { display: block; }
.main-page.hidden { display: none; }
.product-detail-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.product-detail-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid rgba(212, 168, 67, 0.2); }
.back-btn { display: flex; align-items: center; gap: 10px; color: var(--gold); font-family: 'Oswald', sans-serif; font-size: 1rem; letter-spacing: 1px; cursor: pointer; transition: var(--transition); background: none; border: 1px solid rgba(212, 168, 67, 0.3); padding: 10px 20px; }
.back-btn:hover { background: var(--gold); color: var(--black); }
.product-detail-cart-btn { position: relative; cursor: pointer; padding: 10px; transition: var(--transition); }
.product-detail-cart-btn:hover { color: var(--gold); }
.product-detail-cart-btn i { font-size: 1.3rem; color: var(--gold); }
.product-detail-cart-btn .cart-count { position: absolute; top: 0; right: 0; background: var(--gold); color: var(--black); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; font-family: 'Oswald', sans-serif; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

/* Product Gallery */
.product-gallery { position: static; margin-bottom: 20px; }
.main-image-display {
    width: 100%; aspect-ratio: 1; background: var(--gray); border: 3px solid var(--gold);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 15px; overflow: hidden; box-shadow: 0 0 20px rgba(212, 168, 67, 0.2);
}
.main-image-display img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform 0.3s ease; }
.main-image-display img:hover { transform: scale(1.05); }
.thumbnail-gallery { display: flex; gap: 10px; justify-content: center; }
.thumbnail {
    width: 100px; height: 100px; background: var(--gray); border: 2px solid rgba(212, 168, 67, 0.1);
    border-radius: 8px; cursor: pointer; transition: var(--transition); display: flex; align-items: center;
    justify-content: center; overflow: hidden;
}
.thumbnail:hover, .thumbnail.active { border-color: var(--gold); box-shadow: 0 0 15px rgba(212, 168, 67, 0.3); transform: translateY(-3px); }
.thumbnail img { width: 100%; height: 100%; object-fit: contain; padding: 5px; }

.product-info-section { padding-top: 10px; }
.product-category-label { display: inline-block; background: rgba(212, 168, 67, 0.1); border: 1px solid rgba(212, 168, 67, 0.3); color: var(--gold); padding: 5px 15px; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; }
.product-detail-title { font-size: 2.5rem; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.2; }
.product-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.product-rating .stars { color: var(--gold); }
.product-rating .stars i { font-size: 0.9rem; }
.product-rating .rating-text { color: var(--gray-light); font-size: 0.9rem; }
.product-detail-price { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px solid rgba(212, 168, 67, 0.1); }
.product-detail-price .current { font-family: 'Oswald', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--gold); }
.product-detail-price .original { font-size: 1.2rem; color: var(--gray-light); text-decoration: line-through; }
.product-detail-price .save-badge { background: rgba(76, 175, 80, 0.2); color: #4CAF50; padding: 5px 12px; font-size: 0.85rem; font-weight: 600; border-radius: 3px; }
.product-description { color: var(--gray-light); line-height: 1.8; margin-bottom: 30px; font-size: 0.95rem; }
.product-options { margin-bottom: 30px; }
.option-label { font-size: 0.85rem; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; font-weight: 500; }
.option-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.option-btn { padding: 10px 20px; background: var(--black); border: 1px solid rgba(212, 168, 67, 0.3); color: var(--white); font-family: 'Roboto', sans-serif; font-size: 0.9rem; cursor: pointer; transition: var(--transition); }
.option-btn:hover, .option-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }
.quantity-selector { display: flex; align-items: center; gap: 0; margin-bottom: 30px; }
.qty-label { font-size: 0.85rem; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-right: 15px; font-weight: 500; }
.qty-controls { display: flex; align-items: center; border: 1px solid rgba(212, 168, 67, 0.3); }
.qty-controls button { width: 45px; height: 45px; background: var(--black); border: none; color: var(--gold); font-size: 1.2rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.qty-controls button:hover { background: var(--gold); color: var(--black); }
.qty-controls .qty-display { width: 60px; height: 45px; display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-size: 1.2rem; color: var(--white); background: var(--black-light); }
.add-to-cart-section { display: flex; gap: 15px; margin-bottom: 30px; }
.add-cart-btn { flex: 1; padding: 16px 30px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--black); border: none; font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px; }
.add-cart-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212, 168, 67, 0.4); }
.wishlist-btn { width: 55px; height: 55px; background: var(--black); border: 1px solid rgba(212, 168, 67, 0.3); color: var(--gold); font-size: 1.2rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.wishlist-btn:hover { background: var(--gold); color: var(--black); }
.product-features { margin-bottom: 30px; }
.product-features h4 { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 15px; }
.features-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.feature-item { display: flex; align-items: center; gap: 10px; padding: 10px 15px; background: var(--black-light); border: 1px solid rgba(212, 168, 67, 0.1); }
.feature-item i { color: var(--gold); font-size: 0.9rem; }
.feature-item span { font-size: 0.9rem; color: var(--gray-light); }
.delivery-info { background: var(--black-light); border: 1px solid rgba(212, 168, 67, 0.2); padding: 20px; margin-bottom: 30px; }
.delivery-info h4 { color: var(--gold); font-size: 1rem; letter-spacing: 1px; margin-bottom: 15px; }
.delivery-item { display: flex; align-items: center; gap: 12px; padding: 8px 0; }
.delivery-item i { color: var(--gold); font-size: 1rem; width: 20px; }
.delivery-item span { font-size: 0.9rem; color: var(--gray-light); }

/* ===== SUCCESS MESSAGE & OVERLAY ===== */
.success-message { display: none;   /* 👈 IMPORTANT */position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0); background: var(--black-card); border: 2px solid var(--gold); padding: 40px; text-align: center; z-index: 10000; transition: transform 0.3s ease; max-width: 90%; width: 400px; }
.success-message.show { transform: translate(-50%, -50%) scale(1); }
.success-message i { font-size: 4rem; color: var(--gold); margin-bottom: 20px; }
.success-message h3 { color: var(--gold); margin-bottom: 10px; }
.success-message p { color: var(--gray-light); margin-bottom: 20px; }
.overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); z-index: 9999; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.overlay.show { opacity: 1; visibility: visible; }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* =========================
   RESPONSIVE FIXED VERSION
   ========================= */

/* Global mobile overflow protection */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

section,
.hero,
.navbar,
.container,
.hero .container,
.hero-content,
.hero-visual,
.hero-image-wrapper,
.products-grid,
.scrollable-products,
.features-grid,
.contact-grid,
.newsletter-container,
.product-detail-container,
.product-detail-grid,
.checkout-modal,
.split-payment-modal {
    max-width: 100%;
}

/* Prevent common elements from causing horizontal scroll */
.hero,
.hero .container,
.hero-content,
.hero-visual,
.hero-image-wrapper,
.main-page,
.product-detail-page,
.nav-links,
.cart-sidebar,
.checkout-modal,
.split-payment-modal {
    overflow-x: hidden;
}

@media (max-width: 1024px) {
    .container,
    .product-detail-container {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero {
        min-height: auto;
    }
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 120px 0 30px;
        text-align: center;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 4px;
        padding-right: 4px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        width: 100%;
        max-width: 100%;
    }

    .stat-item {
        min-width: 110px;
        flex: 0 1 auto;
    }

    .hero-visual {
        display: block;
        width: 100%;
        max-width: 100%;
        min-height: auto;
        margin-top: 20px;
        overflow: hidden;
    }

    .hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        margin: 0 auto;
        overflow: hidden;
        border-left: none;
        border-top: 1px solid rgba(212, 168, 67, 0.15);
        border-radius: 12px;
    }

    .hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  object-fit: cover;

  z-index: 0;        /* 🔥 behind content */
  opacity: 0.6;      /* adjust if needed */
}
.hero {
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;   /* 🔥 above video */
}
.hero h1 {
  word-break: break-word;
  overflow-wrap: break-word;
}

    .hero-circle,
    .hero-circle-2,
    .hero-center-icon {
        left: 50%;
    }

    .floating-card {
        max-width: calc(100% - 24px);
        word-break: break-word;
    }

    .floating-card-1 {
        top: 20px;
        right: 12px;
    }

    .floating-card-2 {
        bottom: 20px;
        left: 12px;
    }

    .contact-grid,
    .product-detail-grid,
    .checkout-form .form-row,
    .contact-form .form-row,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-container {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-form-horizontal {
        flex-direction: column;
    }

    .newsletter-form-horizontal button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar .container {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
        overflow: hidden;
    }

    .nav-logo {
        min-width: 0;
        flex: 1;
        overflow: hidden;
    }

    .nav-logo-text {
        min-width: 0;
        overflow: hidden;
    }

    .nav-logo-text .brand,
    .nav-logo-text .tagline {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(80vw, 320px);
        max-width: 320px;
        height: 100vh;
        background: var(--black-light);
        flex-direction: column;
        justify-content: center;
        padding: 40px 24px;
        transition: var(--transition);
        border-left: 1px solid rgba(212, 168, 67, 0.1);
        overflow-y: auto;
        overflow-x: hidden;
    }

    .nav-links.active {
        right: 0;
    }

    .hero {
        padding-top: 85px;
    }

    .hero h1 {
        font-size: 2.5rem;
        word-break: break-word;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 12px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .stat-item {
        min-width: 0;
        width: 100%;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.68rem;
        letter-spacing: 1px;
    }

    .hero-image-wrapper {
        height: 300px;
        width: 100%;
        max-width: 100%;
        border-radius: 12px;
    }

    .hero-bg-video {
        opacity: 0.55;
        object-position: center;
    }

    .hero-circle {
        width: 220px;
        height: 220px;
    }

    .hero-circle-2 {
        width: 170px;
        height: 170px;
    }

    .hero-center-icon {
        width: 110px;
        height: 110px;
    }

    .hero-center-icon i {
        font-size: 2.8rem;
    }

    .floating-card {
        padding: 8px 10px;
        max-width: calc(100% - 20px);
    }

    .floating-card span {
        font-size: 0.68rem;
        letter-spacing: 0.5px;
    }

    .floating-card-1 {
        top: 10px;
        right: 10px;
    }

    .floating-card-2 {
        bottom: 10px;
        left: 10px;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cart-sidebar {
        width: 100%;
        max-width: 100%;
        right: -100%;
    }

    .cart-sidebar.active {
        right: 0;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .checkout-modal {
        width: calc(100% - 24px);
        max-width: 100%;
        margin: 0 auto;
        padding: 28px 18px;
    }

    .checkout-modal h3 {
        font-size: 1.4rem;
    }

    .checkout-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .checkout-form .form-group input,
    .checkout-form .form-group select,
    .checkout-form .form-group textarea {
        padding: 11px 13px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 100%;
    }

    .payment-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }

    .coupon-input-wrapper {
        flex-direction: column;
    }

    .apply-coupon-btn {
        width: 100%;
    }

    .cart-footer {
        padding: 20px 15px;
    }

    .checkout-btn {
        padding: 14px 20px;
        font-size: 1rem;
        white-space: nowrap;
    }

    .split-payment-modal {
        width: calc(100% - 20px);
        max-width: 100%;
    }

    .payment-content {
        padding: 30px 20px;
    }

    .qr-code-box {
        width: 180px;
        height: 180px;
    }

    .product-detail-title {
        font-size: 1.8rem;
    }

    .product-detail-price .current {
        font-size: 2rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .product-detail-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .product-detail-cart-btn {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .container,
    .product-detail-container,
    .navbar .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero {
        padding-top: 82px;
    }

    .hero-content {
        padding-top: 110px;
        padding-left: 0;
        padding-right: 0;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.08;
    }

    .hero-badge {
        width: 100%;
        justify-content: center;
        padding-left: 10px;
        padding-right: 10px;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 0.98rem;
        padding-left: 2px;
        padding-right: 2px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 100%;
        font-size: 0.9rem;
        padding: 14px 18px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 10px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.62rem;
        letter-spacing: 0.8px;
    }

    .hero-image-wrapper {
        height: 260px;
        width: 100%;
        max-width: 100%;
    }

    .hero-circle {
        width: 180px;
        height: 180px;
    }

    .hero-circle-2 {
        width: 140px;
        height: 140px;
    }

    .hero-center-icon {
        width: 90px;
        height: 90px;
    }

    .hero-center-icon i {
        font-size: 2.2rem;
    }

    .floating-card {
        padding: 7px 9px;
        max-width: calc(100% - 16px);
    }

    .floating-card span {
        font-size: 0.62rem;
        letter-spacing: 0.3px;
    }

    .floating-card-1 {
        top: 8px;
        right: 8px;
    }

    .floating-card-2 {
        bottom: 8px;
        left: 8px;
    }

    .newsletter-content h3 {
        font-size: 1.5rem;
    }

    .contact-info h3 {
        font-size: 2rem;
    }

    .cart-header h3 {
        font-size: 1.2rem;
    }

    .cart-total span:last-child {
        font-size: 1.3rem;
    }

    .checkout-modal {
        padding: 24px 14px;
    }

    .order-summary-mini {
        padding: 15px;
    }

    .summary-row {
        font-size: 0.9rem;
    }

    .split-payment-wrapper {
        padding: 10px;
    }

    .payment-header {
        padding: 15px;
    }

    .payment-header h3 {
        font-size: 1rem;
    }

    .payment-header .amount {
        font-size: 1.6rem;
    }

    .product-card {
  width: 100% !important;
  min-width: auto !important;
}

    .cart-img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 8px;
    }

    .cart-item {
        display: flex;
        gap: 10px;
        align-items: center;
    }
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-toggle {
    min-width: 52px;
    height: 42px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.35);
    color: var(--gold);
    font-family: Oswald, sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.lang-toggle:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 15px rgba(212, 168, 67, 0.25);
}

.lang-toggle:active {
    transform: scale(0.96);
}

@media (max-width: 768px) {
    .nav-actions {
        gap: 10px;
    }

    .lang-toggle {
        min-width: 48px;
        height: 38px;
        padding: 0 12px;
        font-size: 0.75rem;
    }
}
/* ===== HERO FINAL FIX (OVERRIDE) ===== */

.hero .container {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  align-items: center !important;
  gap: 80px !important;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-buttons {
  margin-bottom: 30px !important;
}

/* FIX STATS POSITION */
.hero-stats {
  display: flex !important;
  flex-direction: row !important;
  gap: 50px !important;
  margin-top: 20px !important;
}

/* ALIGN TEXT LIKE PREMIUM */
.stat-item {
  text-align: left !important;
}

.hero-visual {
  display: flex;
  justify-content: center;   /* 🔥 center it */
  align-items: center;
}

@media (max-width: 768px) {

  .hero-visual {
    justify-content: center !important;  /* 🔥 FIX */
    margin-top: 20px;
  }

  .hero-image-wrapper {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }

}

/* IMAGE SIZE */
.hero-image-wrapper {
  max-width: 420px !important;
  margin-left: auto !important;
}

/* REMOVE EXTRA SPACE */
.hero {
  padding-top: 100px !important;
}

@media (max-width: 768px) {

  .hero .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .hero-content {
    text-align: left;
    margin-top: 0;
  }

  .hero-title {
  margin-top: 40px; /* adjust this value */
}

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .hero-visual {
    order: 2;
    display: flex;
    justify-content: center;
  }

  .hero-image-wrapper {
    width: 80%;
  }
}

.lang-switch {
  display: flex;
  gap: 8px;
}

.lang-btn {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 4px 10px;
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.lang-btn:hover {
  background: #d4af37;
  color: #000;
}
.lang-btn.active {
  background: #d4af37;
  color: #000;
}

@media (max-width: 768px) {

  /* 🔥 Layout fix */
  .hero .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }

  /* 🔥 Text block */
  .hero-content {
    width: 100%;
    text-align: left;
  }

  /* 🔥 MAIN HEADING FIX (MOST IMPORTANT) */
  .hero-content h1 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: 1px;

    word-break: keep-all;       /* 🔥 stop ugly breaks */
    overflow-wrap: normal;
    hyphens: auto;

    max-width: 100%;
  }

  /* 🔥 paragraph */
  .hero-content p {
    font-size: 15px;
    line-height: 1.5;
    max-width: 90%;
  }

  /* 🔥 buttons */
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  /* 🔥 stats */
  .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }

  .stat-item {
    text-align: left;
  }

  /* 🔥 image */
  .hero-visual {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .hero-image-wrapper {
    width: 80%;
    max-width: 300px;
  }

  /* 🔥 fix badge */
  .hero-badge {
    font-size: 12px;
    padding: 6px 10px;
  }
}

.hero-content h1 {
  word-break: keep-all;
  hyphens: auto;
}

.send-btn,
.contact-form button,
button[type="submit"] {

  background: linear-gradient(135deg, #d4a843, #b8902f);
  color: #000;
  border: none;

  padding: 14px 20px;
  width: 100%;

  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;

  cursor: pointer;
  border-radius: 4px;

  transition: all 0.3s ease;
}
.send-btn:hover,
.contact-form button:hover,
button[type="submit"]:hover {

  background: linear-gradient(135deg, #e5c15a, #c89b35);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212,168,67,0.3);
}
.send-btn i {
  margin-right: 8px;
}
/* 🔥 STATS CONTAINER */
.hero-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;   /* 🔥 keep in one line */
}

/* 🔥 EACH ITEM */
.stat-item {
  flex: 1;
  text-align: left;
}

@media (max-width: 768px) {
  .hero-stats {
    flex-direction: row;     /* 🔥 horizontal even on mobile */
    justify-content: space-between;
    gap: 10px;
  }

  .stat-item {
    text-align: left;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }
}
.hero-content {
  width: 100%;
  max-width: 100%;
  overflow: visible;   /* 🔥 IMPORTANT */
}
.hero-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  width: 100%;
  max-width: 100%;

  overflow: visible;   /* 🔥 FIX CUTTING */
}
.stat-item {
  flex: 1;
  min-width: 0;   /* 🔥 VERY IMPORTANT */
}
@media (max-width: 768px) {

  .hero-visual {
    display: flex !important;
    justify-content: center;
    margin-top: 20px;
  }

  .hero-image-wrapper {
    display: block !important;
    width: 80%;
    max-width: 300px;
  }

}
@media (max-width: 768px) {

  /* 🔥 FORCE VIDEO SECTION BACK */
  .hero-visual {
    display: block !important;
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }

  .hero-image-wrapper {
    display: block !important;
    width: 85%;
    max-width: 320px;
    margin: 0 auto;
    height: auto !important;
  }

  /* 🔥 VIDEO FIX */
  .hero-image-wrapper video,
  .hero-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

}

/* FORCE VIDEO BACK */
.hero-visual {
  display: block !important;
}

.hero-image-wrapper {
  display: block !important;
}

/* MOBILE FIX */
@media (max-width: 768px) {

  .hero-content {
    display: flex;
    flex-direction: column;
  }

  .hero-visual {
    order: 2;
    margin-top: 20px;
    text-align: center;
  }

  .hero-image-wrapper {
    width: 90%;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-image-wrapper video {
    width: 100%;
    height: auto;
    display: block;
  }

}
/* FIX HERO LAYOUT */
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT TEXT */
.hero-content {
  width: 100%;
}

/* RIGHT VIDEO */
.hero-visual {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* VIDEO BOX */
.hero-image-wrapper {
  width: 100%;
  max-width: 420px;
}
/* ================= HERO FINAL FIX ================= */

/* MAIN HERO GRID */
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

/* LEFT SIDE (TEXT) */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
}

/* RIGHT SIDE (VIDEO / IMAGE) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

/* VIDEO WRAPPER */
.hero-image-wrapper {
  width: 100%;
  max-width: 420px;
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* VIDEO FIX */
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 1;
}

/* KEEP CONTENT ABOVE VIDEO */
.hero-content,
.hero-visual {
  z-index: 2;
}

/* ================= MOBILE FIX ================= */

@media (max-width: 768px) {

  /* KEEP SIDE BY SIDE (IMPORTANT 🔥) */
  .hero .container {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  /* TEXT SIDE */
  .hero-content {
    text-align: left;
    padding: 0;
  }

  /* VIDEO SIDE */
  .hero-visual {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }

  /* VIDEO SIZE */
  .hero-image-wrapper {
    width: 100%;
    height: 200px;
  }

  /* TEXT SIZE FIX */
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

}

/* ================= IMPORTANT CLEANUP ================= */

/* REMOVE THESE IF EXIST ❌ */

/*
.hero-visual {
  display: block;
}
/* ================= END ================= */
/* ================= MOBILE VIDEO BELOW BUTTON ================= */

@media (max-width: 768px) {

  /* STACK LAYOUT */
  .hero .container {
    display: flex;
    flex-direction: column;
  }

  /* ORDER CONTROL */
  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
    margin-top: 20px;
  }

  /* VIDEO SIZE */
  .hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    height: 220px;
  }

}

/* MOBILE VIDEO BELOW BUTTON */
@media (max-width: 768px) {

  .hero .container {
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
    margin-top: 20px;
  }

  .hero-image-wrapper {
    height: 220px;
    width: 100%;
  }

}
#successPopup,
.popup,
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999; /* 🔥 important */
}
.popup-content {
  position: relative;
  z-index: 10000;
}
.popup {
  background: rgba(0, 0, 0, 0.8);
}

.add-to-cart {
  background: linear-gradient(135deg, #c9a646, #e0b84f);
  color: #000;
  border: none;
  padding: 14px 28px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s ease;
  border-radius: 4px;
}

.add-to-cart:hover {
  background: linear-gradient(135deg, #e0b84f, #c9a646);
  transform: translateY(-2px);
}
.success-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0c0c0c;
  border: 2px solid #c9a646;
  padding: 40px 30px;
  width: 350px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 0 30px rgba(201, 166, 70, 0.3);
}

.success-message h3 {
  color: #c9a646;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.success-message p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.success-message .btn-primary {
  background: linear-gradient(135deg, #c9a646, #e0b84f);
  color: #000;
  border: none;
  padding: 14px 20px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  width: 100%;
  transition: 0.3s;
}

.success-message .btn-primary:hover {
  background: linear-gradient(135deg, #e0b84f, #c9a646);
  transform: translateY(-2px);
}
.shake {
  animation: shakeAnim 0.4s;
}

@keyframes shakeAnim {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}
#errorMessageBox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.85);

  justify-content: center;
  align-items: center;

  z-index: 999999; /* 🔥 VERY IMPORTANT */
}
