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

:root {
  --bg-dark: #050505;
  --bg-card: #121212;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --accent: #d4af37; /* Luxury Gold */
  --accent-hover: #b5952f;
  --success: #10b981;
  --danger: #ef4444;
  --border-light: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(18, 18, 18, 0.7);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.3s ease;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utilities */
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

/* Notification Popup */
.purchase-notification {
  position: fixed;
  top: 20px;
  left: 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 100;
  transform: translateY(-100px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.purchase-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.purchase-notification img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.purchase-notification p {
  font-size: 0.875rem;
  margin: 0;
}

.purchase-notification span {
  font-weight: 600;
  color: var(--accent);
}

/* Header */
header {
  padding: 1.5rem 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

.logo span {
  color: var(--accent);
}

/* Hero Section */
.hero {
  padding: 120px 0 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at center, #1a1a2e 0%, var(--bg-dark) 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  animation: float 6s ease-in-out infinite;
}

.floating-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--accent);
  color: #000;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
  transform: rotate(15deg);
  animation: pulse-badge 2s infinite;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, #a1a1aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ratings {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.stars {
  color: var(--accent);
  letter-spacing: 2px;
}

.reviews-count {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.price-container {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.current-price {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #fff;
}

.original-price {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* Color Selector */
.color-selector {
  margin-bottom: 1.5rem;
}

.color-selector h4 {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.color-options {
  display: flex;
  gap: 12px;
}

.color-option {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.color-option:hover {
  transform: scale(1.1);
}

.color-option.active {
  outline-color: var(--accent);
}

.color-red { background-color: #ef4444; }
.color-black { background-color: #171717; border: 1px solid #333; }
.color-white { background-color: #f8fafc; border: 1px solid #ddd; }

.discount-tag {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.875rem;
}

.hero-description {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.6s, opacity 0.6s;
}

.btn-primary:active::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: 0s;
}

.urgency-text {
  color: var(--danger);
  font-weight: 600;
  margin-top: 1rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.urgency-text .pulse {
  width: 8px;
  height: 8px;
  background-color: var(--danger);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.trust-signals {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

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

/* Sections Common */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Features */
.features {
  background-color: #f8fafc;
  color: #0f172a;
}

.features .section-subtitle {
  color: #475569;
}

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

.feature-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.feature-card p {
  color: #64748b;
  font-size: 0.95rem;
}

/* Shorts Videos */
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.shorts-item {
  width: 100%;
  max-width: 315px; /* Typical width for shorts iframe */
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.shorts-item iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Delivery Checker */
.delivery-checker {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.delivery-checker h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.pincode-form {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pincode-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  padding: 12px 20px;
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}

.pincode-input:focus {
  border-color: var(--accent);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid var(--border-light);
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-heading);
  font-weight: 600;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

.pincode-msg {
  font-size: 0.9rem;
  min-height: 20px;
}

.msg-success {
  color: var(--success);
}

.msg-error {
  color: var(--danger);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-light);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.user-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.user-details h4 {
  margin-bottom: 2px;
}

.user-details p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.testimonial-text {
  font-style: italic;
  color: #d1d5db;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
}

.faq-icon {
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  margin-top: 1rem;
  max-height: 200px; /* Adjust as needed */
}

/* Trust Badges Full Width */
.trust-badges-full {
  background: #111;
  padding: 40px 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.trust-badges-flex {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

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

.trust-badge-item i {
  font-size: 2rem;
  color: var(--accent);
}

/* Footer */
footer {
  background: #000;
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent);
  color: #000;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Sticky Mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-top: 1px solid var(--border-light);
  z-index: 99;
  box-shadow: 0 -10px 20px rgba(0,0,0,0.5);
}

.sticky-cta .price {
  font-weight: 700;
  font-size: 1.2rem;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

@keyframes pulse-badge {
  0% { transform: rotate(15deg) scale(1); }
  50% { transform: rotate(15deg) scale(1.1); }
  100% { transform: rotate(15deg) scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Checkout Page Styles */
.checkout-wrapper {
  min-height: 100vh;
  padding: 80px 0;
  background: var(--bg-dark);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.checkout-form {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-light);
}

.checkout-form h2 {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-group input, .form-group select {
  width: 100%;
  padding: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group select option {
  background-color: var(--bg-card);
  color: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.order-summary {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.summary-item.total {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  margin-top: 1rem;
}

/* Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .trust-signals {
    justify-content: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .price-container {
    justify-content: center;
  }

  .color-selector h4 {
    text-align: center;
  }

  .color-options {
    justify-content: center;
  }

  .urgency-text {
    justify-content: center;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Add padding to body to prevent sticky cta from covering content */
  body {
    padding-bottom: 80px;
  }

  .btn-primary {
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .purchase-notification {
    bottom: 90px;
    top: auto;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: 90%;
    justify-content: center;
    padding: 10px 15px;
  }
  
  .purchase-notification.show {
    transform: translateX(-50%) translateY(0);
  }

  .pincode-form {
    flex-direction: column;
  }
  
  .pincode-form .btn-secondary {
    width: 100%;
  }
}
