/* ============================= */
/* 🔥 MODERN STARTUP UI THEME */
/* ============================= */

:root {
  --bg: #0f172a;              /* Dark navy */
  --card: rgba(255,255,255,0.05);
  --glass: rgba(255,255,255,0.08);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --accent: #6366f1;          /* Indigo */
  --accent2: #22c55e;         /* Green */
}

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

body {
  background: radial-gradient(circle at top, #1e293b, #0f172a);
  font-family: 'Inter', sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

/* 🔹 SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

/* ============================= */
/* 🔹 HEADER */
/* ============================= */
header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(15, 23, 42, 0.7);
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  z-index: 1000;
}

nav a {
  color: var(--text);
  margin: 0 15px;
  text-decoration: none;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* ============================= */
/* 🔹 HERO */
/* ============================= */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(15,23,42,1)),
              url("images/hero/banner.jpg") center/cover;
}

.hero h1 {
  font-size: 3rem;
  animation: fadeUp 1s ease;
}

/* ============================= */
/* 🔹 FILTER BUTTONS */
/* ============================= */
.filters button {
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  background: var(--glass);
  color: var(--text);
  cursor: pointer;
  transition: 0.3s;
}

.filters button:hover,
.filters .active {
  background: var(--accent);
}

/* ============================= */
/* 🔹 GALLERY */
/* ============================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
  padding: 40px;
}

/* ============================= */
/* 🔹 ART CARD */
/* ============================= */
.art-card {
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(15px);
  transition: 0.4s;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.05);
}

.art-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.art-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.art-card h3 {
  padding: 10px;
}

.art-card p {
  padding: 0 10px;
  color: var(--muted);
}

.art-card button {
  margin: 10px;
  padding: 10px;
  width: calc(100% - 20px);
  border: none;
  background: var(--accent);
  color: white;
  border-radius: 10px;
  cursor: pointer;
}

.art-card button:hover {
  background: var(--accent2);
}

/* ============================= */
/* 🔹 PRODUCT PAGE */
/* ============================= */
.product-detail {
  padding: 50px;
  text-align: center;
}

.detail-img {
  width: 350px;
  border-radius: 15px;
}

.product-desc {
  max-width: 600px;
  margin: 20px auto;
  color: var(--muted);
}

/* ============================= */
/* 🔹 CART */
/* ============================= */
.cart-container {
  width: 80%;
  margin: auto;
  padding: 40px 0;
}

.cart-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 15px;
  background: var(--card);
  backdrop-filter: blur(10px);
}

.cart-item img {
  width: 90px;
  border-radius: 10px;
}

.qty-box button {
  background: var(--accent);
  border: none;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
}

.remove-btn {
  background: crimson;
  border: none;
  color: white;
  padding: 8px;
  border-radius: 6px;
}

.checkout-btn {
  background: var(--accent);
  padding: 12px 25px;
  border-radius: 10px;
  color: white;
  border: none;
}

/* ============================= */
/* 🔹 CHECKOUT */
/* ============================= */
.checkout-container {
  display: flex;
  gap: 30px;
  padding: 40px;
}

.checkout-form,
.checkout-summary {
  flex: 1;
  background: var(--card);
  padding: 20px;
  border-radius: 15px;
}

.checkout-form input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: none;
}

.checkout-summary button {
  width: 100%;
  padding: 12px;
  background: var(--accent);
  border: none;
  color: white;
  border-radius: 10px;
}

/* ============================= */
/* 🔹 LOGIN / REGISTER */
/* ============================= */
.container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  background: var(--card);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(15px);
  text-align: center;
  width: 300px;
}

.card input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
}

.card button {
  width: 100%;
  padding: 10px;
  background: var(--accent);
  border: none;
  color: white;
  border-radius: 8px;
}

/* ============================= */
/* 🔹 SUCCESS PAGE */
/* ============================= */
.success-box {
  text-align: center;
  margin-top: 120px;
}

.success-box a {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: var(--accent);
  color: white;
  border-radius: 10px;
  text-decoration: none;
}

/* ============================= */
/* 🔹 ANIMATIONS */
/* ============================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ============================= */
/* 🔹 RESET TO SIMPLE UI (CART, CHECKOUT, SUCCESS) */
/* ============================= */

/* 🔹 CART PAGE (Simple Clean Look) */
.cart-container {
  width: 80%;
  margin: auto;
  padding: 40px 0;
}

.cart-item {
  display: flex;
  align-items: center;
  background: #ffffff; /* removed glass effect */
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  gap: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cart-item img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
}

.cart-details h3 {
  margin: 0;
}

.cart-details p {
  color: #555;
  margin: 5px 0;
}

.qty-box button {
  background: black;
  color: white;
  border-radius: 5px;
}

.remove-btn {
  background: red;
  color: white;
  border-radius: 5px;
}

.cart-summary {
  text-align: right;
  margin-top: 20px;
  background: transparent; /* removed blur */
  padding: 0;
}

.checkout-btn {
  background: black;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
}

/* 🔹 CHECKOUT PAGE (Simple Form Layout) */
.checkout-container {
  display: flex;
  gap: 30px;
  padding: 40px;
}

.checkout-form,
.checkout-summary {
  background: #ffffff; /* removed glass */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.checkout-form input,
.checkout-form select {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.checkout-summary button {
  width: 100%;
  padding: 12px;
  background: black;
  color: white;
  border-radius: 6px;
}

/* 🔹 SUCCESS PAGE (Minimal Clean) */
.success-box {
  text-align: center;
  margin-top: 120px;
}

.success-box h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.success-box p {
  color: #555;
}

.success-box a {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: black;
  color: white;
  border-radius: 6px;
  text-decoration: none;
}

.success-box a:hover {
  background: #333;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #111;
  color: white;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
  background: #e6dccf;
  color: black;
}

.navbar a {
  margin-left: 20px;
  text-decoration: none;
  color: black;
}

/* CONTACT HERO */
.contact-hero {
  padding: 80px 20px;
  text-align: center;
  background: #111;
}

.contact-hero .tag {
  color: gold;
  letter-spacing: 2px;
}

.contact-hero h1 {
  font-size: 48px;
}

.subtitle {
  max-width: 600px;
  margin: auto;
  color: #ccc;
}

.contact-form {
  max-width: 600px;
  margin: 40px auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  background: transparent;
  border: 1px solid #555;
  color: white;
}

.row {
  display: flex;
  gap: 10px;
}

textarea {
  height: 120px;
}

.gold-btn {
  background: #e6dccf;
  color: black;
  padding: 15px;
  border: none;
  cursor: pointer;
  width: 100%;
  font-weight: bold;
}

/* FAQ */
.faq-section {
  padding: 80px 20px;
  text-align: center;
}

.faq-section h1 {
  color: gold;
}

.faq {
  max-width: 600px;
  margin: auto;
}

.faq-item {
  background: #e6dccf;
  color: black;
  padding: 20px;
  margin: 10px 0;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

/* CTA */
.cta {
  background: #eee;
  padding: 80px 20px;
}

.cta-box {
  background: #111;
  padding: 40px;
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.cta-box h1 {
  font-size: 40px;
}

.cta-box p {
  color: #ccc;
}
.cart-icon {
  position: relative;
  font-size: 22px;
  color: black;
  text-decoration: none;
}

#cartCount {
  position: absolute;
  top: -8px;
  right: -10px;
  background: red;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
}
.faq-answer {
  display: none;
  padding: 10px 0;
  color: #555;
}

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

.faq-question {
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}
#upiSection {
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

#timer {
  color: red;
  margin: 10px 0;
}
#upiSection {
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

#upiSection img {
  margin: 10px 0;
}
.price-box {
  background: #111;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  text-align: left;
}

.price-box p {
  margin: 5px 0;
  font-size: 16px;
}

/* INFO SECTION FIX */
.info-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  gap: 40px;
  background: #fff;
}

/* Alternate layout (image left, text right) */
.info-section.reverse {
  flex-direction: row-reverse;
}

/* TEXT */
.info-text {
  flex: 1;
}

.info-text h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.info-text p {
  font-size: 16px;
  color: #555;
}

/* IMAGE */
.info-image {
  flex: 1;
}

.info-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .info-section {
    flex-direction: column;
    text-align: center;
  }

  .info-section.reverse {
    flex-direction: column;
  }
}
/* NAVBAR FIX */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #111;
  color: white;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px; /* reduce side spacing */
  background: #111;
  color: white;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

/* LEFT SIDE LOGO + TEXT */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* RIGHT SIDE NAV */
.navbar nav {
  display: flex;
  gap: 20px;
}

.navbar {
  background: #000; /* black */
  color: #d4af37; /* gold text */
  border-bottom: 2px solid #d4af37;
}

/* Logo + Title */
.navbar h2 {
  color: #d4af37;
}

/* Links */
.navbar a {
  color: #d4af37;
  text-decoration: none;
  margin-left: 20px;
  transition: 0.3s;
}

/* Hover effect */
.navbar a:hover {
  color: white;
}

/* Cart badge */
#cartCount {
  background: red;
  color: white;
  padding: 2px 6px;
  border-radius: 50%;
  font-size: 12px;
}