/* Converting entire site to luxurious black theme with gold accents */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Removed all gold/yellow colors, using only black and white */
  --primary-color: #ffffff; /* Pure white */
  --secondary-color: #000000; /* Pure black */
  --accent-color: #ffffff; /* White accent */
  --text-dark: #ffffff; /* White text for dark backgrounds */
  --text-light: #cccccc; /* Light gray for secondary text */
  --bg-dark: #000000; /* Pure black background */
  --bg-card: #1a1a1a; /* Card background */
  --border-color: #333333; /* Dark borders */
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--bg-dark);
}

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

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

/* Navigation */
.header {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.brand-text {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  /* Removed gold gradient, using white text */
  color: var(--primary-color);
  letter-spacing: 3px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
}

.nav-item {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-link {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 70px;
  line-height: 1;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link.active {
  color: var(--primary-color);
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.dropdown::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
}

.dropdown-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: -10px;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  padding-top: 0.75rem;
  border-radius: 8px;
  min-width: 200px;
  list-style: none;
  border: 1px solid var(--border-color);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.35s ease 0.75s, visibility 0.35s ease 0.75s, transform 0.35s ease 0.75s;
}

/* Large invisible bridge to keep hover alive between link and menu */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -20px;
  width: calc(100% + 40px);
  height: 30px;
  background: transparent;
}

.dropdown:hover .dropdown-menu {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.dropdown-menu li {
  padding: 0.5rem 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  color: var(--text-light);
}

.dropdown-menu a:hover {
  background: var(--bg-dark);
  color: var(--primary-color);
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cart-icon-container {
  position: relative;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.cart-icon-container:hover {
  opacity: 0.7;
  transform: scale(1.08);
}

.cart-icon {
  width: 24px;
  height: 24px;
  fill: none !important;
  stroke: #ffffff !important;
  stroke-width: 2;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ffffff !important;
  color: #000000 !important;
  border-radius: 50% !important;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  border: 2px solid #000000 !important;
  outline: none !important;
  box-shadow: none !important;
  line-height: 1;
  min-width: 20px;
  min-height: 20px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
  transition: 0.3s;
}

/* Hero Section - Full Screen */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
  max-width: 100%;
  width: 100%;
  margin: 0;
  min-height: 100vh;
  position: relative;
}

/* Hide the separate hero image - background covers full screen */
.hero-image {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  text-align: center;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.club-text {
  /* Removed gold gradient, using white text */
  color: var(--primary-color);
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.cta-button {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-align: center;
  display: inline-block;
}

.cta-button.primary {
  /* Updated primary button to white background */
  background: var(--primary-color);
  color: var(--bg-dark);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

.cta-button.secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
  background: var(--primary-color);
  color: var(--bg-dark);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
}

/* Featured Collections */
.featured-collections {
  padding: 6rem 0;
  background: var(--bg-dark);
}

.featured-collections h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.collection-item {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.collection-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
  border-color: var(--primary-color);
}

.collection-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.collection-content {
  padding: 1.5rem;
}

.collection-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.collection-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.view-collection {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.view-collection:hover {
  background: rgba(212, 175, 55, 0.1);
}

/* Product Actions Container */
.product-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Wishlist Button */
.wishlist-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}

.wishlist-btn:hover {
  background: var(--primary-color);
  color: var(--bg-dark);
  transform: scale(1.1);
}

.view-all-container {
  text-align: center;
}

.view-all-products-btn {
  display: inline-block;
  padding: 1rem 3rem;
  /* Updated button to white background */
  background: var(--primary-color);
  color: var(--bg-dark);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-dark);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  animation: fadeInPage 0.8s ease-out;
}

@keyframes fadeInPage {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.view-all-products-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

/* Stats Section */
.luxury-stats {
  padding: 6rem 0;
  text-align: center;
  background: var(--bg-card);
}

.luxury-stats h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.luxury-stats > p {
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.stat h3 {
  font-size: 3rem;
  /* Removed gold gradient, using white text */
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}

.stat p {
  color: var(--text-light);
}

/* Craftsmanship */
.craftsmanship {
  padding: 6rem 0;
  background: var(--bg-dark);
}

.craftsmanship h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.craftsmanship > .container > p {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.craftsmanship-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.craft-item {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.craft-item:hover {
  border-color: var(--primary-color);
}

.craft-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.craft-item h3 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.craft-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.craftsmanship-cta {
  text-align: center;
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 30px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  margin-left: -40px;
  margin-right: -40px;
  margin-bottom: 0;
  padding-left: calc(40px + 20px);
  padding-right: calc(40px + 20px);
}

.join-club-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
  color: #000000;
  padding: 16px 50px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
  cursor: pointer;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.join-club-btn:hover {
  background: linear-gradient(135deg, #cccccc 0%, #ffffff 100%);
  border-color: #cccccc;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

/* About Section on Homepage */
.about-section {
  padding: 6rem 0;
  background: var(--bg-card);
}

.about-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.about-intro {
  text-align: center;
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.about-item {
  background: var(--bg-dark);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.about-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.about-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.about-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.about-cta {
  text-align: center;
}

/* Member Stats */
.member-stats {
  padding: 6rem 0;
  background: var(--bg-card);
}

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

.stats-left h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.stats-left h3 {
  color: var(--text-light);
  font-weight: 400;
}

.stats-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.member-stat h3 {
  font-size: 2.5rem;
  /* Removed gold gradient, using white text */
  color: var(--primary-color);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}

.member-stat p {
  color: var(--text-light);
}

/* Earn Section */
.earn-section {
  padding: 6rem 0;
  background: var(--bg-dark);
  text-align: center;
}

.earn-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.earn-section > .container > p {
  color: var(--text-light);
  margin-bottom: 3rem;
}

.earn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.earn-item {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.earn-item:hover {
  border-color: var(--primary-color);
}

.earn-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.earn-item h3 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.earn-item p {
  color: var(--text-light);
}

/* VIP Section */
.vip-section {
  padding: 6rem 0;
  text-align: center;
  background: var(--bg-card);
}

.vip-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.vip-section > .container > p {
  color: var(--text-light);
  margin-bottom: 3rem;
}

.vip-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.vip-benefit {
  background: var(--bg-dark);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.vip-benefit:hover {
  border-color: var(--primary-color);
}

.vip-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.vip-benefit h3 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.vip-benefit p {
  color: var(--text-light);
}

.vip-button {
  padding: 1rem 3rem;
  /* Updated button to white background */
  background: var(--primary-color);
  color: var(--bg-dark);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.vip-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

/* Reality Check Section */
.reality-check {
  padding: 6rem 0;
  background: var(--bg-dark);
  text-align: center;
}

.reality-check h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.reality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.reality-item {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.reality-item h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.big-number {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--primary-color);
  font-weight: 700;
  margin: 1rem 0;
}

.reality-item p:last-child {
  color: var(--text-light);
  font-size: 0.95rem;
}

.reality-message {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border-color);
}

.reality-message h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.reality-message p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Testimonials */
.testimonials {
  padding: 6rem 0;
  background: var(--bg-dark);
}

.testimonials h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.stars {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.testimonial p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Invitation Section */
.invitation-section {
  padding: 6rem 0;
  background: var(--bg-card);
}

.invitation-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.invitation-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.invitation-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-row input {
  width: 100%;
}

.invitation-form input[type="text"],
.invitation-form input[type="tel"],
.invitation-form input[type="email"],
.invitation-form select,
.invitation-form textarea {
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  background: var(--bg-dark);
  color: var(--text-dark);
}

.invitation-form input:focus,
.invitation-form select:focus,
.invitation-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

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

.form-hint {
  display: block;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--text-light);
}

.checkbox-label input {
  margin-top: 0.25rem;
}

.submit-button {
  width: 100%;
  padding: 1rem;
  /* Updated submit button to white background */
  background: var(--primary-color);
  color: var(--bg-dark);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.form-privacy {
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* Footer */
.footer {
  background: #000000;
  color: white;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.4rem;
}

.footer-section h4 {
  font-family: "Playfair Display", serif;
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

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

.footer-section ul li {
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease;
}

.footer-section ul li:hover {
  transform: translateX(5px);
}

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-section a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.footer-section a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-section a:hover::after {
  width: 100%;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border: 1px solid var(--border-color);
}

.social-icon:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

/* Cart Styles */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background: var(--bg-card);
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border-color);
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin: 0;
  color: var(--text-dark);
}

.cart-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.cart-close:hover {
  color: var(--primary-color);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.cart-empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.cart-empty p {
  color: var(--text-light);
}

.cart-content {
  display: none;
}

.cart-content.active {
  display: block;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cart-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: var(--bg-dark);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-item-name {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.cart-item-price {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 10px;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  width: 24px;
  height: 24px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
}

.quantity-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--bg-dark);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 1.2rem;
}

.cart-item-remove:hover {
  color: var(--primary-color);
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.25rem;
  font-weight: 600;
}

.cart-total-amount {
  color: var(--primary-color);
}

.cart-checkout-btn {
  width: 100%;
  padding: 15px;
  /* Updated checkout button to white background */
  background: var(--primary-color);
  color: var(--bg-dark);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background 0.3s ease;
}

.cart-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.cart-continue {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
}

.cart-continue:hover {
  background: var(--bg-dark);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Notification */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: var(--bg-card);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--primary-color);
  z-index: 1001;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s ease;
}

.notification.show {
  opacity: 1;
  transform: translateX(0);
}

.notification.success {
  border-left: 4px solid var(--primary-color);
}

.notification.error {
  /* Added to fix parse error */
}

/* About Page Styles */
.about-hero {
  padding: 8rem 0 4rem;
  text-align: center;
  background: var(--bg-dark);
}

.about-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-light);
}

.our-story {
  padding: 6rem 0;
  background: var(--bg-card);
}

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

.story-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.story-text p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.story-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
}

.why-better {
  padding: 6rem 0;
  background: var(--bg-dark);
}

.why-better h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.section-intro {
  text-align: center;
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.comparison-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.comparison-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.comparison-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.comparison-card > p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.price-comparison {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: var(--bg-dark);
  border-radius: 8px;
}

.price-item {
  text-align: center;
}

.price-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.price-amount {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.price-item.original .price-amount {
  color: #ef4444;
  text-decoration: line-through;
}

.price-item.replica .price-amount {
  color: var(--primary-color);
}

.price-divider {
  font-size: 1.5rem;
  color: var(--text-light);
  font-weight: 600;
}

.benefit-list {
  list-style: none;
  padding: 0;
}

.benefit-list li {
  padding: 0.5rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.benefit-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.our-promise {
  padding: 6rem 0;
  background: var(--bg-card);
}

.our-promise h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.promise-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-dark);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.promise-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.promise-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.promise-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.join-cta {
  padding: 6rem 0;
  text-align: center;
  background: var(--bg-dark);
}

.join-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.join-cta p {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Private Club Popup Styles */
.club-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 999;
}

.club-popup-overlay.show {
  display: block;
}

.club-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border: 2px solid #000000;
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  width: 85%;
  z-index: 1000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.club-popup.show {
  display: block;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 32px;
  color: #000000;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.popup-close:hover {
  color: #333333;
  transform: rotate(90deg);
}

.popup-content {
  text-align: center;
}

.popup-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #000000;
  margin: 0 0 15px 0;
  padding-top: 10px;
}

.popup-subtitle {
  color: #333333;
  margin: 0 0 30px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.popup-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  text-align: left;
}

.benefit-item {
  background: #f5f5f5;
  padding: 12px 15px;
  border-radius: 6px;
  color: #000000;
  font-weight: 500;
  border-left: 3px solid #000000;
  font-size: 0.95rem;
}

.popup-cta {
  display: block;
  background-color: #000000;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

.popup-cta:hover {
  background-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.popup-footer {
  color: #666666;
  font-size: 0.8rem;
  margin: 0;
}

/* Sticky Banner Styles */
.sticky-club-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  padding: 10px 20px;
  z-index: 100;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.5);
  border-top: 2px solid #ffffff;
}

.sticky-club-banner.show {
  display: flex;
}

.banner-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  flex-wrap: nowrap;
  padding: 0 20px;
}

.banner-text {
  color: #ffffff;
  font-weight: 500;
  flex: 1;
  font-size: 0.9rem;
  margin: 0;
  letter-spacing: 0.3px;
}

.banner-cta {
  background-color: #ffffff;
  color: #000000;
  padding: 8px 22px;
  border-radius: 4px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

.banner-cta:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.banner-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.banner-close:hover {
  color: #cccccc;
  transform: scale(1.15);
}

/* Responsive for Banner */
@media (max-width: 1024px) {
  .banner-text {
    font-size: 0.85rem;
  }

  .banner-cta {
    padding: 7px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .sticky-club-banner {
    padding: 8px 15px;
  }

  .banner-content {
    gap: 8px;
    padding: 0 10px;
  }

  .banner-text {
    font-size: 0.75rem;
    white-space: normal;
  }

  .banner-cta {
    padding: 6px 14px;
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  .banner-close {
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
}

/* Responsive for Popup and Banner */
@media (max-width: 768px) {
  .club-popup {
    max-width: 90%;
    padding: 25px 20px;
    width: 90%;
  }

  .popup-content h2 {
    font-size: 1.6rem;
  }

  .popup-subtitle {
    font-size: 0.9rem;
  }

  .banner-content {
    flex-wrap: wrap;
  }

  .banner-text {
    font-size: 0.8rem;
    width: 100%;
    order: 1;
  }

  .banner-cta {
    order: 2;
    flex: 1;
  }

  .banner-close {
    order: 3;
  }
}

/* Responsive for About Page */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .story-content {
    grid-template-columns: 1fr;
  }

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

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

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

  .about-hero h1 {
    font-size: 2.5rem;
  }

  .price-comparison {
    flex-direction: column;
    gap: 1rem;
  }

  .price-divider {
    transform: rotate(90deg);
  }
}


/* Value Proposition – Product Pages */
.value-proposition-product {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.value-content-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.value-content-centered h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.value-content-centered .value-subline {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 40px;
}

.value-badges-horizontal {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0 30px;
    flex-wrap: wrap;
}

.value-badge-compact {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 20px;
    border-radius: 8px;
    border-top: 3px solid #ffffff;
    transition: all 0.3s ease;
}

.value-badge-compact:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.value-badge-compact .badge-icon-large {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.value-badge-compact h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.value-badge-compact p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.cta-button-outline {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button-outline:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .value-badges-horizontal {
        flex-direction: column;
        align-items: center;
    }

    .value-badge-compact {
        max-width: 100%;
    }

    .value-content-centered h2 {
        font-size: 1.8rem;
    }
}

/* Products Grid Layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* Fix product card text colors */
.product-card,
.product-info,
.product-info h3,
.product-info h3 a {
    color: #ffffff !important;
}

.product-info h3 a:hover {
    color: #cccccc !important;
}

.product-price {
    color: #ffffff !important;
    font-weight: bold !important;
}

/* Wishlist Button on Product Cards */
.product-card {
    position: relative;
}
.wishlist-btn-floating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.wishlist-btn-floating:hover {
    background: #000;
    color: #fff;
    transform: scale(1.1);
}

/* ====================================
   Responsive Media Queries
   ==================================== */

/* Tablet & smaller desktops */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-section h4 {
    font-size: 0.95rem;
  }

  .footer-section a {
    font-size: 0.85rem;
  }

  .footer {
    padding: 2.5rem 0 1.5rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ========================================
   Collection Pages — Centered Layout
   ======================================== */

/* Hero Section */
.collections-hero {
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-bottom: 1px solid #333;
}

.collections-hero .hero-content {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.collections-hero .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.collections-hero .hero-content p {
    font-size: 1.15rem;
    color: #cccccc;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.collections-hero .hero-image {
    max-width: 700px;
    margin: 2rem auto 0;
}

.collections-hero .hero-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* Value Proposition Section */
.value-proposition {
    text-align: center;
    padding: 5rem 2rem;
    background: #111111;
}

.value-proposition .container {
    max-width: 1000px;
    margin: 0 auto;
}

.value-proposition .value-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.value-proposition .value-subline {
    font-size: 1.15rem;
    color: #cccccc;
    margin-bottom: 3rem;
}

.value-proposition .value-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.value-proposition .value-badge {
    background: #1a1a1a;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.value-proposition .value-badge:hover {
    border-color: #ffffff;
    transform: translateY(-4px);
}

.value-proposition .badge-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.value-proposition .value-badge h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.value-proposition .value-badge p {
    font-size: 0.9rem;
    color: #cccccc;
}

.value-proposition .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.value-proposition .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Collections Grid Section */
.collections-grid-section {
    padding: 5rem 2rem;
    background: #0a0a0a;
}

.collections-grid-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.collections-grid-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.collections-grid-section .collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.collections-grid-section .collection-item {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    transition: all 0.3s ease;
    text-align: center;
}

.collections-grid-section .collection-item:hover {
    border-color: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.08);
}

.collections-grid-section .collection-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.collections-grid-section .collection-content {
    padding: 1.5rem;
}

.collections-grid-section .collection-content h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.collections-grid-section .collection-content p {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 1rem;
}

.collections-grid-section .view-collection {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.collections-grid-section .view-collection:hover {
    opacity: 0.7;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    border-top: 1px solid #333;
}

.cta-section .container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
}

.cta-section .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-section .cta-button.primary {
    background: #ffffff;
    color: #000000;
}

.cta-section .cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.cta-section .cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-section .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Page Hero (used by some collection pages) */
.page-hero {
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-bottom: 1px solid #333;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.15rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section centering */
.products-section {
    padding: 4rem 2rem;
    background: #0a0a0a;
}

.products-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .collections-hero {
        padding: 7rem 1.5rem 3rem;
    }

    .collections-hero .hero-content h1,
    .page-hero h1 {
        font-size: 2.2rem;
    }

    .value-proposition .value-badges {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .collections-grid-section .collections-grid {
        grid-template-columns: 1fr;
    }
}

/* === PRODUCT BADGES FIX === */
.product-badge,
div.product-badge,
.product-card-carousel .product-badge,
.product-card .product-badge {
    background: #ffffff !important;
    color: #000000 !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
    font-size: 0.7rem !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}


/* Sub-dropdown styles */
.dropdown-submenu {
    position: relative;
}
.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
}
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}
