/* Global Styles and Variables */
:root {
  --background: #0c0c0e;
  --surface: #141418;
  --surface-variant: #1c1c22;
  --primary: #d4af37; /* Upgraded rich gold */
  --primary-dark: #b8860b; /* Darker gold tone */
  --secondary: #f5d76e; /* Lighter gold */
  --accent: #ffd700; /* Bright gold accent */
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
  --text-tertiary: #a0a0a0;
  --border-color: #2a2a32;
  --error: #ff5252;
  --success: #4caf50;
  --warning: #ffc107;
  --gold-gradient: linear-gradient(45deg, #b8860b, #ffd700);
  --gold-gradient-reverse: linear-gradient(45deg, #ffd700, #b8860b);
  --gold-shine: linear-gradient(to right, rgba(212,175,55,0.1), rgba(255,215,0,0.3), rgba(212,175,55,0.1));
  --luxury-gradient: linear-gradient(to right, #0c0c0e, #141418, #1c1c22, #141418, #0c0c0e);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 5px 15px rgba(212, 175, 55, 0.25);
  --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.logoi {
  display: flex;
  flex-wrap: wrap;         /* Allow items to wrap to the next line */
  max-width: 200px; 
         /* Limit container width so items can wrap */
}
.logoin {
  flex: 0 0 100%;            /* Each box takes 50% of the container width */



}
  /* For the 3rd box to go full width on the second line */
  .logo div:nth-child(3) {
    flex: 0 0 100%;
  }
html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23c9a55c' fill-opacity='0.05'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 20v-1.41l2.83-2.83 1.41 1.41L1.41 20H0zm20 0v-1.41l2.83-2.83 1.41 1.41L21.41 20H20zm0 18.59l2.83-2.83 1.41 1.41L21.41 40H20v-1.41zM10 20H8.59l-2.83-2.83 1.41-1.41L10 18.59V20zm10 0h-1.41l-2.83-2.83 1.41-1.41L20 18.59V20zm10 0h-1.41l-2.83-2.83 1.41-1.41L30 18.59V20zm10 0h-1.41l-2.83-2.83 1.41-1.41L40 18.59V20zm-30 10h-1.41l-2.83-2.83 1.41-1.41L10 28.59V30zm10 0h-1.41l-2.83-2.83 1.41-1.41L20 28.59V30zm10 0h-1.41l-2.83-2.83 1.41-1.41L30 28.59V30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-bottom: 1rem;
  word-wrap: break-word;
  font-weight: 600;
  letter-spacing: 0.02em;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
}

/* Utilities */
.text-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}

.highlight {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn i {
  margin-left: 8px;
  font-size: 0.9em;
}

.primary {
  background: var(--gold-gradient);
  color: var(--background);
  box-shadow: var(--shadow-gold);
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(201, 165, 92, 0.3);
  background: var(--gold-gradient-reverse);
}

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

.outline:hover {
  background: rgba(201, 165, 92, 0.1);
  transform: translateY(-2px);
}

.outline-light {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 15px;
}

.section-header h2 {
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.section-header h2::after {
  content: "";
  position: absolute;
  left: 25%;
  bottom: 0;
  width: 50%;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(212, 175, 55, 0.3);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.divider {
  height: 1px;
  background: var(--gold-gradient);
  margin: 2rem auto;
  width: 50%;
  max-width: 200px;
  opacity: 0.5;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background-color: rgba(201, 165, 92, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201, 165, 92, 0.2);
}

.badge i {
  margin-right: 8px;
}

/* Navbar */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.nav-blur {
  backdrop-filter: blur(10px);
  background-color: rgba(18, 18, 18, 0.8);
  box-shadow: var(--shadow-sm);
}

#navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  letter-spacing: 0.05em;
}



.desktop-nav {
  display: flex;
  gap: 2rem;
}

.desktop-nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

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

.search-box {
  position: relative;
  width: 200px;
}

.search-box input {
  width: 100%;
  padding: 8px 12px 8px 35px;
  background-color: var(--surface-variant);
  border: none;
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-family: inherit;
}

.search-box i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-tertiary);
}

.cart-icon {
  position: relative;
  cursor: pointer;
}

.cart-icon i {
  font-size: 1.3rem;
  transition: var(--transition);
}

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

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50%;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle i {
  font-size: 1.5rem;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--surface);
  z-index: 2000;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.close-menu {
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-search {
  position: relative;
  margin-bottom: 2rem;
}

.mobile-search input {
  width: 100%;
  padding: 10px 12px 10px 35px;
  background-color: var(--surface-variant);
  border: none;
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-family: inherit;
}

.mobile-search i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-tertiary);
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 0;
}

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

/* Hero Section */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url('https://images.unsplash.com/photo-1542038784456-1ea8e935640e') center/cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12, 12, 14, 0.9), rgba(12, 12, 14, 0.7), rgba(12, 12, 14, 0.5));
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23c9a55c' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  z-index: 0;
}

#hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background-color: rgba(201, 165, 92, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201, 165, 92, 0.2);
}

.hero-badge i {
  margin-right: 8px;
}

.hero-content {
  text-align: left;
  max-width: 100%;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  max-width: 100%;
}

.hero-image img {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  object-fit: contain;
  max-height: 400px;
  max-width: 100%;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(201, 165, 92, 0.1);
}

.hero-image::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: var(--primary);
  filter: blur(100px);
  opacity: 0.2;
  border-radius: 50%;
  z-index: 1;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 1.5s ease-out;
}

.scroll-indicator span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.scroll-icon {
  width: 24px;
  height: 40px;
  border: 2px solid var(--primary);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: scrollAnimation 1.5s infinite;
}

/* Gradient Section */
.gradient-section {
  background: linear-gradient(to bottom, var(--background), var(--surface-variant), var(--background));
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

.gradient-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23c9a55c' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  z-index: 0;
}

/* Featured Products Section */
#featured-products {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1rem;
  max-width: 100%;
  margin: 0 auto;
}

/* Add responsive breakpoints for smaller screens */
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(212, 175, 55, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(212, 175, 55, 0.2);
  border-color: var(--primary);
}

.product-link {
  text-decoration: none;
  color: inherit;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-image {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 Aspect Ratio */
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.product-badge.new {
  background-color: #4CAF50;
  color: white;
}

.product-badge.sale {
  background-color: #f44336;
  color: white;
}

.product-info {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: var(--surface);
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px 0;
  line-height: 1.4;
  height: 44px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--text-primary);
}

.product-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 15px 0;
  height: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-price-cart {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-container {
  display: flex;
  flex-direction: column;
}

.old-price {
  font-size: 14px;
  color: var(--text-tertiary);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.price {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

.add-to-cart {
  background: var(--gold-gradient);
  color: var(--background);
  border: none;
  border-radius: var(--radius-md);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart:hover {
  background: var(--gold-gradient-reverse);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }
  
  .product-title {
    font-size: 14px;
    height: 40px;
  }
  
  .product-desc {
    font-size: 12px;
    height: 36px;
  }
  
  .price {
    font-size: 16px;
  }
}

.view-all {
  text-align: center;
  margin-top: 3rem;
}

.view-all-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}

.view-all-link i {
  margin-left: 6px;
  transition: var(--transition);
}

.view-all-link:hover {
  border-bottom-color: var(--primary);
}

.view-all-link:hover i {
  transform: translateX(4px);
}

/* Features Section */
#features {
  padding: 5rem 0;
}

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

.feature-card {
  background-color: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-gold);
}

.feature-icon i {
  font-size: 1.8rem;
  color: white;
}

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

.feature-card p {
  color: var(--text-secondary);
}

/* Collections Section */
#collections {
  padding: 5rem 0;
}

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

.collection-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface-variant);
  transition: var(--transition);
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover img {
  transform: scale(1.05);
}

.collection-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: var(--text-primary);
  transform: translateY(0);
  transition: var(--transition);
}

.collection-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.collection-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Testimonials Section */
#testimonials {
  padding: 5rem 0;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  display: none;
  animation: fadeIn 1s ease;
}

.testimonial.active {
  display: block;
}

.testimonial-content {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(212, 175, 55, 0.1);
}

.quote-icon {
  margin-bottom: 1.5rem;
}

.quote-icon i {
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.5;
}

.testimonial-content > p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--text-secondary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.author-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.author-info p {
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--text-tertiary);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

/* Newsletter Section */
#newsletter {
  padding: 80px 0;
  background: var(--surface-variant);
  position: relative;
  overflow: hidden;
}

#newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--gold-shine);
  opacity: 0.1;
  pointer-events: none;
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.newsletter-text {
  flex: 1;
}

.newsletter-text h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.newsletter-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  flex: 1;
  max-width: 500px;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 15px 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text-primary);
  font-size: 1rem;
  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
  outline: none;
}

.newsletter-form .btn {
  padding: 15px 25px;
  white-space: nowrap;
}

/* Newsletter Responsive Styles */
@media (max-width: 1024px) {
  .newsletter-text h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  #newsletter {
    padding: 60px 0;
  }
  
  .newsletter-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .newsletter-text {
    width: 100%;
  }
  
  .newsletter-text p {
    margin: 0 auto;
  }
  
  .newsletter-form {
    max-width: 600px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  #newsletter {
    padding: 50px 0;
  }
  
  .newsletter-text h2 {
    font-size: 2rem;
  }
  
  .newsletter-text p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  #newsletter {
    padding: 40px 0;
  }
  
  .newsletter-text h2 {
    font-size: 1.8rem;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 15px;
  }
  
  .newsletter-form input {
    width: 100%;
    padding: 12px 15px;
  }
  
  .newsletter-form .btn {
    width: 100%;
    padding: 12px 15px;
  }
}

/* Footer */
footer {
  background-color: var(--surface);
  padding: 5rem 0 2rem;
}

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

.footer-about {
  grid-column: span 2;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-about p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 400px;
}

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

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--surface-variant);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icons a:hover {
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 3px 5px rgba(212, 175, 55, 0.2);
}

.social-icons i {
  font-size: 1.2rem;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(3px);
  display: inline-block;
}

.footer-contact ul {
  color: var(--text-secondary);
}

.footer-contact li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--primary);
  margin-top: 0.3rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-tertiary);
}

.payment-icons {
  display: flex;
  gap: 1rem;
}

.payment-icons i {
  font-size: 1.5rem;
  color: var(--text-tertiary);
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  right: -400px;
  top: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--surface);
  z-index: 2000;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

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

.close-cart {
  font-size: 1.5rem;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.cart-item-price {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-btn {
  background-color: var(--surface-variant);
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
}

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

.cart-item-quantity {
  font-weight: 500;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  color: var(--error);
  background-color: rgba(255, 82, 82, 0.1);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 5px 10px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.cart-item-remove:hover {
  background-color: rgba(255, 82, 82, 0.2);
}

.cart-item-remove i {
  font-size: 0.85rem;
}

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

.empty-cart i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-weight: 600;
}

.checkout-btn {
  width: 100%;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

.cart-overlay.open {
  display: block;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes scrollAnimation {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Media Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  
  #hero .container {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    display: none;
  }
  
  .collections-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .desktop-nav, .search-box {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .newsletter-content {
    padding: 2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .footer-about {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .feature-card {
    margin-bottom: 1.5rem;
  }
  
  .collections-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}

/* Gold accents and animations */
@keyframes goldShine {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.highlight {
  color: var(--primary);
  position: relative;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-gradient);
  transform: scaleX(0.7);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.section-header h2 {
  overflow: hidden;
  background: linear-gradient(to right, var(--primary) 0%, var(--accent) 30%, var(--primary) 60%, var(--accent) 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  animation: goldShine 4s linear infinite;
}

/* Enhanced Elements for Luxury Look */
.btn.primary {
  background: var(--gold-gradient);
  color: var(--background);
  box-shadow: var(--shadow-gold);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(212, 175, 55, 0.4);
  background: var(--gold-gradient-reverse);
}

.section-header h2::after {
  content: "";
  position: absolute;
  left: 25%;
  bottom: 0;
  width: 50%;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(212, 175, 55, 0.3);
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  letter-spacing: 0.05em;
}



.product-card {
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(212, 175, 55, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(212, 175, 55, 0.2);
}

.collection-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(12, 12, 14, 0.9) 0%, rgba(12, 12, 14, 0.7) 25%, rgba(12, 12, 14, 0.4) 50%, rgba(12, 12, 14, 0.1) 100%);
  z-index: 1;
  transition: var(--transition);
}

.feature-icon {
  background: var(--gold-gradient);
  box-shadow: var(--shadow-gold);
}

/* Products Page */
.products-page {
  padding-top: 80px;
}

.products-hero {
  background: linear-gradient(rgba(12, 12, 14, 0.8), rgba(12, 12, 14, 0.9)), url('https://images.unsplash.com/photo-1542038784456-1ea8e935640e');
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  margin-bottom: 50px;
  text-align: center;
}

.products-header h1 {
  margin-bottom: 15px;
  color: var(--primary);
}

.filters-products-wrapper {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
}

.filters-sidebar {
  background-color: var(--surface);
  border-radius: var(--radius-md);
  padding: 20px;
  align-self: start;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(212, 175, 55, 0.1);
}

.filter-section {
  margin-bottom: 25px;
}

.filter-section h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.filter-section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 50px;
  height: 2px;
  background: var(--gold-gradient);
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.filter-option input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.filter-option input[type="checkbox"]:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.filter-option input[type="checkbox"]:checked::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--background);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
}

.price-slider {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-inputs input {
  width: 70px;
  padding: 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--surface-variant);
  color: var(--text-primary);
  font-size: 0.9rem;
}

.price-inputs span {
  color: var(--text-tertiary);
}

.filter-actions {
  display: flex;
  justify-content: center;
}

.reset-filters {
  width: 100%;
}

.products-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

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

.products-count span {
  font-weight: 600;
  color: var(--primary);
}

.products-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}

.products-sort label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.products-sort select {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--surface-variant);
  color: var(--text-primary);
  cursor: pointer;
}

.view-options {
  display: flex;
  gap: 10px;
}

.view-option {
  background: none;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-tertiary);
  transition: var(--transition);
}

.view-option:hover,
.view-option.active {
  border-color: var(--primary);
  color: var(--primary);
}

/* Products List View */
.products-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.products-list .product-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  height: auto;
  padding: 20px;
}

.products-list .product-image {
  height: 200px;
}

.products-list .product-info {
  text-align: left;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.products-list .product-info h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.products-list .product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 10px 0;
}

.products-list .product-rating i {
  color: var(--primary);
  font-size: 14px;
}

.products-list .product-rating span {
  color: var(--text-tertiary);
  font-size: 12px;
}

.products-list .product-price {
  margin-top: 10px;
}

/* Notification */
.notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--surface-variant);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-md);
  padding: 15px 20px;
  border-radius: var(--radius-md);
  transform: translateX(120%);
  transition: transform 0.3s ease;
  z-index: 1000;
  max-width: 300px;
}

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

.notification p {
  margin: 0;
  color: var(--text-primary);
}

/* Responsiveness for products page */
@media (max-width: 1200px) {
  .collections-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .collections-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }
  
  .collection-content {
    padding: 1.5rem;
  }
  
  .collection-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .collections-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .collection-content {
    padding: 1rem;
  }
  
  .collection-content h3 {
    font-size: 1.2rem;
  }
  
  .collection-content p {
    font-size: 0.8rem;
  }
}

.quick-view {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0, 0, 0, 0.8);
  color: var(--text-primary);
  border: none;
  padding: 8px 15px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 5;
}

.quick-view i {
  font-size: 0.9rem;
  color: var(--primary);
}

.product-card:hover .quick-view {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.quick-view:hover {
  background: rgba(12, 12, 14, 0.9);
  color: var(--primary);
}

/* Quick View Modal */
.quick-view-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.quick-view-modal.open {
  opacity: 1;
  visibility: visible;
}

.quick-view-modal .modal-content {
  background: var(--surface);
  border-radius: var(--radius-lg);
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.quick-view-modal.open .modal-content {
  transform: translateY(0);
}

.quick-view-modal .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--surface-variant);
  color: var(--text-tertiary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.quick-view-modal .modal-close:hover {
  background: var(--primary);
  color: var(--background);
  transform: rotate(90deg);
}

.quick-view-modal .product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px;
}

.quick-view-modal .product-gallery {
  position: relative;
}

.quick-view-modal .product-gallery-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-variant);
  aspect-ratio: 1;
}

.quick-view-modal .product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-view-modal .product-detail-info {
  padding-right: 20px;
}

.quick-view-modal .product-detail-info h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.quick-view-modal .product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 1rem;
}

.quick-view-modal .product-rating i {
  color: var(--primary);
  font-size: 0.9rem;
}

.quick-view-modal .product-rating span {
  color: var(--text-tertiary);
  font-size: 0.8rem;
  margin-left: 5px;
}

.quick-view-modal .product-price {
  margin: 1rem 0;
}

.quick-view-modal .price {
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 600;
}

.quick-view-modal .product-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 1rem 0;
}

.quick-view-modal .product-actions {
  margin-top: 2rem;
}

.quick-view-modal .quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: fit-content;
}

.quick-view-modal .quantity-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-variant);
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
}

.quick-view-modal .quantity-btn:hover {
  background: var(--primary);
  color: var(--background);
}

.quick-view-modal .quantity-input {
  width: 60px;
  height: 40px;
  border: none;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-primary);
  text-align: center;
  font-size: 1rem;
}

.quick-view-modal .action-buttons {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  margin-top: 1.5rem;
}

.quick-view-modal .action-buttons .btn {
  height: 45px;
}

@media (max-width: 768px) {
  .quick-view-modal .product-detail {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .quick-view-modal .product-detail-info {
    padding-right: 0;
  }
  
  .quick-view-modal .action-buttons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .quick-view-modal {
    padding: 10px;
  }
  
  .quick-view-modal .product-detail {
    padding: 1rem;
  }
  
  .quick-view-modal .product-detail-info h1 {
    font-size: 1.4rem;
  }
  
  .quick-view-modal .price {
    font-size: 1.4rem;
  }
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 1rem;
  margin: 2rem 0;
}

.contact-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: var(--primary);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-card-icon i {
  font-size: 1.5rem;
  color: var(--background);
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.contact-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-card a {
  color: var(--primary);
  font-weight: 500;
  transition: var(--transition);
}

.contact-card a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .contact-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
  
  .contact-card-icon {
    width: 50px;
    height: 50px;
  }
  
  .contact-card-icon i {
    font-size: 1.3rem;
  }
  
  .contact-card h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .contact-cards {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
  }
  
  .contact-card {
    padding: 1.2rem;
  }
  
  .contact-card-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 0.8rem;
  }
  
  .contact-card-icon i {
    font-size: 1.1rem;
  }
  
  .contact-card h3 {
    font-size: 1.1rem;
  }
  
  .contact-card p {
    font-size: 0.8rem;
  }
}

.owner-name {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--text-tertiary);
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  position: relative;
  padding-left: 0.5rem;

}

.owner-name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: var(--text-tertiary);
  opacity: 0.3;
}

.footer-logo .owner-name {
  font-size: 0.65rem;
}

@media (max-width: 768px) {
  .ownr-name {
    display: none;
  }
}

.product-link {
  display: block;
  color: var(--text-primary);
  text-decoration: none;
  height: 100%;
}

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

.product-link .add-to-cart {
  position: relative;
  z-index: 5;
}

/* Product Detail Page */
.product-detail-section {
  padding-top: 120px;
  padding-bottom: 80px;
}

.product-breadcrumb {
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

.product-breadcrumb a {
  color: var(--text-tertiary);
  transition: var(--transition);
}

.product-breadcrumb a:hover {
  color: var(--primary);
}

.product-detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.product-gallery {
  position: relative;
}

.product-gallery-main {
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-variant);
  margin-bottom: 15px;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.product-thumbnail {
  height: 100px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.product-thumbnail.active {
  border-color: var(--primary);
}

.product-thumbnail:hover {
  transform: translateY(-3px);
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.product-rating i {
  color: var(--primary);
  font-size: 1rem;
  margin-right: 2px;
}

.product-rating span {
  color: var(--text-tertiary);
  font-size: 0.9rem;
  margin-left: 10px;
}

.product-price-detail {
  margin-bottom: 20px;
}

.product-price-detail .price {
  font-size: 2.5rem;
}

.product-price-detail .old-price {
  font-size: 1.5rem;
  margin-right: 10px;
}

.product-availability {
  margin-bottom: 20px;
}

.in-stock {
  color: var(--success);
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.in-stock i {
  margin-right: 5px;
}

.product-description {
  margin-bottom: 30px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.product-specs {
  margin-bottom: 30px;
  padding: 20px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.product-spec {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.product-spec:last-child {
  margin-bottom: 0;
}

.spec-label {
  min-width: 100px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.spec-value {
  color: var(--text-secondary);
}

.product-quantity {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.product-quantity label {
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-variant);
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
}

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

.quantity-input {
  width: 60px;
  height: 40px;
  border: none;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-primary);
  text-align: center;
  font-size: 1rem;
}

.product-actions {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.add-to-cart-large {
  height: 50px;
  font-size: 1rem;
}

.wishlist-btn {
  background: var(--surface-variant);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius-md);
  font-weight: 600;
}

.wishlist-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.product-meta {
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.meta-item {
  display: flex;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.meta-label {
  min-width: 100px;
  color: var(--text-tertiary);
}

.meta-value {
  color: var(--text-secondary);
}

.product-share {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

.product-share a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-variant);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: var(--transition);
}

.product-share a:hover {
  background: var(--primary);
  color: var(--background);
}

/* Product Tabs */
.product-tabs {
  margin-bottom: 60px;
}

.tab-header {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.tab-btn {
  padding: 15px 25px;
  background: transparent;
  border: none;
  color: var(--text-tertiary);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.tab-btn.active {
  color: var(--primary);
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
}

.tab-content {
  min-height: 300px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

#description {
  line-height: 1.8;
  color: var(--text-secondary);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--border-color);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 12px 0;
}

.specs-table td:first-child {
  width: 30%;
  color: var(--text-tertiary);
  font-weight: 500;
}

.specs-table td:last-child {
  color: var(--text-secondary);
}

/* Reviews */
.reviews-summary {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  margin-bottom: 40px;
  background: var(--surface);
  padding: 25px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.average-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border-color);
}

.rating-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.rating-stars {
  margin-bottom: 10px;
}

.rating-stars i {
  color: var(--primary);
  font-size: 1.2rem;
}

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

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rating-bar {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.bar-label {
  width: 60px;
  color: var(--text-tertiary);
}

.bar-container {
  flex: 1;
  height: 6px;
  background: var(--surface-variant);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 15px;
}

.bar {
  height: 100%;
  background: var(--primary);
}

.bar-count {
  color: var(--text-tertiary);
  min-width: 30px;
  text-align: right;
}

.review-list {
  margin-bottom: 30px;
}

.review-btn {
  margin-top: 20px;
}

@media (max-width: 992px) {
  .product-detail-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .reviews-summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .average-rating {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .product-actions {
    grid-template-columns: 1fr;
  }
  
  .tab-header {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 5px;
  }
  
  .tab-btn {
    padding: 12px 15px;
  }
  
  .product-gallery-main {
    height: 350px;
  }
  
  .product-thumbnail {
    height: 80px;
  }
}

@media (max-width: 576px) {
  .product-gallery-main {
    height: 300px;
  }
  
  .product-thumbnails {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .product-details h1 {
    font-size: 1.8rem;
  }
  
  .product-price-detail .price {
    font-size: 2rem;
  }
} 