:root {
  /* Updated color palette to match brand requirements */
  --primary-dark: #3b0510;
  --primary-gold: #d4af37;
  --primary-white: #ffffff;
  --secondary-gray: #f8f9fa;
  --text-dark: #1a1a1a;
  --text-light: #6c757d;
  --border-light: #e9ecef;
  --shadow-light: rgba(13, 27, 42, 0.1);
  --shadow-medium: rgba(13, 27, 42, 0.15);

  /* Typography */
  --font-sans: "Inter", sans-serif;
  --font-serif: "Playfair Display", serif;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  color: #fff;
  font-weight: 600;
}

/* Enhanced card design with new color scheme */
.card {
  background: var(--primary-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow-light);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  box-shadow: 0 8px 25px var(--shadow-medium);
  transform: translateY(-2px);
}

/* Updated badge styles with brand colors */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background-color: var(--primary-dark);
  color: var(--primary-white);
}

.badge-gold {
  background-color: var(--primary-gold);
  color: var(--primary-dark);
}

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

/* Enhanced button system with brand colors */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-dark);
  color: var(--primary-white);
  box-shadow: 0 4px 12px rgba(13, 27, 42, 0.3);
}

.btn-primary:hover {
  background-color: #1a2332;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13, 27, 42, 0.4);
}

.btn-gold {
  background-color: var(--primary-gold);
  color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  background-color: #c19b26;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

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

.btn-outline:hover {
  background-color: var(--primary-dark);
  color: var(--primary-white);
}

.btn-ghost {
  background-color: transparent;
  color: var(--primary-dark);
}

.btn-ghost:hover {
  background-color: var(--secondary-gray);
  color: var(--primary-dark);
}

/* Enhanced product card styles */
.product-card {
  position: relative;
  overflow: hidden;
}

.product-card .product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-card .product-info {
  padding: 1.5rem;
}

.product-card .product-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.product-card .product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.product-card .product-old-price {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-right: 0.5rem;
}

/* Enhanced header and navigation */
.header {
  background-color: var(--primary-white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 10px var(--shadow-light);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-gold);
}

/* Enhanced hero section */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2332 100%);
  color: var(--primary-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-white);
}

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

/* Enhanced WhatsApp float button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--primary-white);
  padding: 1rem;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  text-decoration: none;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float:hover {
  background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

/* Enhanced form styles */
.form-group {
  margin-bottom: 1.5rem;
}

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

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Enhanced cart and checkout styles */
.cart-item {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-summary {
  background-color: var(--secondary-gray);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.cart-total {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  border-top: 2px solid var(--primary-gold);
  padding-top: 1rem;
  margin-top: 1rem;
}

input[type="checkbox"]:checked + img {
    border: 2px solid #ef4444;
    opacity: 0.7;
}






























/* Responsive design improvements */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

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

  .nav-links {
    gap: 1rem;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }
}

/* Loading and animation utilities */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-light);
  border-radius: 50%;
  border-top-color: var(--primary-gold);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-in;
}

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