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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background-color: #FDFBF7;
  color: #2C1B18;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #FDFBF7;
}

::-webkit-scrollbar-thumb {
  background: #B22222;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #8B1A1A;
}

::selection {
  background: #B22222;
  color: white;
}

/* Toast */
#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: white;
  padding: 16px 20px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  animation: slideIn 0.3s ease;
}

.toast.success {
  border-left: 4px solid #10b981;
}

.toast.error {
  border-left: 4px solid #ef4444;
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #E5E0D8;
}

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

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #2C1B18;
  letter-spacing: -0.025em;
}

.cart-button {
  position: relative;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.cart-button:hover {
  background-color: #F5E6D3;
}

.cart-button svg {
  width: 24px;
  height: 24px;
  color: #2C1B18;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #B22222;
  color: white;
  font-size: 0.75rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.cart-badge.hidden {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Premium dark spice aesthetic */
  background-image: url('../images/background.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.6) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Subtle radial gradient to focus on the center carousel without looking muddy */
  background: radial-gradient(circle at center, transparent 0%, rgba(26, 15, 12, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: white;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.625;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  padding: 0.75rem 2rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #B22222;
  color: white;
}

.btn-primary:hover {
  background: #8B1A1A;
}

.btn-secondary {
  border: 1px solid white;
  color: white;
  background: transparent;
}

.btn-secondary:hover {
  background: white;
  color: #2C1B18;
}

.btn-full {
  width: 100%;
}

/* Sections */
.section {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 8rem 0;
  }
}

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

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3rem);
  color: #2C1B18;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: rgba(44, 27, 24, 0.7);
  max-width: 48rem;
  margin: 0 auto;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text {
  font-size: 1rem;
  color: rgba(44, 27, 24, 0.7);
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.feature-title {
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2C1B18;
  margin-bottom: 0.25rem;
}

.feature-desc {
  font-size: 0.75rem;
  color: rgba(44, 27, 24, 0.6);
}

.about-image {
  position: relative;
  height: 500px;
  border-radius: 2px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Products */
.products-section {
  background: linear-gradient(to bottom, #FDFBF7 0%, #F5E6D3 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem 2rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: transparent;
  transition: transform 0.5s;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-image {
  position: relative;
  height: 320px;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

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

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.product-badge span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2C1B18;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #2C1B18;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.875rem;
  color: rgba(44, 27, 24, 0.6);
  line-height: 1.625;
  margin-bottom: 1rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #B22222;
  font-weight: 700;
}

.product-variant-selector {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-variant-selector label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #2C1B18;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-variant-selector select {
  padding: 0.5rem;
  border: 1px solid #E5E0D8;
  border-radius: 2px;
  background: white;
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  color: #2C1B18;
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s;
}

.product-variant-selector select:focus {
  border-color: #B22222;
}

.btn-add-cart {
  padding: 0.5rem 1.5rem;
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #E5E0D8;
  border-radius: 2px;
  transition: border-color 0.3s;
}

.why-card:hover {
  border-color: rgba(178, 34, 34, 0.3);
}

.why-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
}

.why-title {
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2C1B18;
  margin-bottom: 0.75rem;
}

.why-desc {
  font-size: 0.875rem;
  color: rgba(44, 27, 24, 0.6);
  line-height: 1.625;
}

/* Certifications */
.certifications-section {
  background: linear-gradient(to bottom, #F5E6D3 0%, #FDFBF7 100%);
}

.cert-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.cert-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background: white;
  border: 1px solid #E5E0D8;
  border-radius: 2px;
}

.cert-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 0.75rem;
}

.cert-label {
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2C1B18;
}

/* Contact */
.bulk-enquiry {
  font-size: 0.875rem;
  font-weight: 700;
  color: #B22222;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(44, 27, 24, 0.2);
  padding: 0.75rem 0;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #2C1B18;
  outline: none;
  transition: border-color 0.3s;
}

.form-input::placeholder {
  color: rgba(44, 27, 24, 0.4);
}

.form-input:focus {
  border-bottom-color: #B22222;
}

textarea.form-input {
  resize: none;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: #B22222;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-label {
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2C1B18;
  margin-bottom: 0.25rem;
}

.contact-text {
  font-size: 0.875rem;
  color: rgba(44, 27, 24, 0.7);
}

.social-section {
  padding-top: 1.5rem;
}

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

.social-link {
  padding: 0.5rem;
  border-radius: 50%;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  background-color: #F5E6D3;
}

.social-link svg {
  width: 20px;
  height: 20px;
  color: #2C1B18;
}

/* Footer */
.footer {
  background: #2C1B18;
  color: white;
  padding: 3rem 0;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.625;
}

.footer-title {
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-links li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: white;
}

/* Cart Drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 448px;
  background: white;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-drawer.active {
  transform: translateX(0);
}

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

.cart-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2C1B18;
}

.cart-close {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.cart-close:hover {
  background-color: #F5E6D3;
}

.cart-close svg {
  width: 24px;
  height: 24px;
  color: #2C1B18;
}

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

.cart-empty {
  text-align: center;
  padding: 3rem 0;
}

.cart-empty svg {
  width: 64px;
  height: 64px;
  color: rgba(44, 27, 24, 0.2);
  margin: 0 auto 1rem;
}

.cart-empty-text {
  color: rgba(44, 27, 24, 0.6);
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #E5E0D8;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

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

.cart-item-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #2C1B18;
  margin-bottom: 0.25rem;
}

.cart-item-price {
  font-size: 0.875rem;
  color: #B22222;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

.qty-btn {
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.qty-btn:hover {
  background-color: #F5E6D3;
}

.qty-btn svg {
  width: 16px;
  height: 16px;
}

.cart-item-qty {
  width: 32px;
  text-align: center;
  font-weight: 700;
}

.cart-item-remove {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 0.75rem;
  color: #ef4444;
  cursor: pointer;
}

.cart-item-remove:hover {
  color: #dc2626;
}

.cart-footer {
  border-top: 1px solid #E5E0D8;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-footer.hidden {
  display: none;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-label {
  font-weight: 700;
  font-size: 1.125rem;
  color: #2C1B18;
}

.total-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #B22222;
}

/* Hero Carousel Styles (from index2.html) */
:root {
  --card-w: 260px;
  --card-h: 360px;
  --nav-v-pos: 50%;
  --nav-h-pos: 24px;
  --wrapper-h: 520px;
}

.wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: var(--wrapper-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.track-container {
  position: relative;
  width: 100%;
  height: var(--card-h);
  flex: 1;
  overflow: visible;
}

.track {
  position: absolute;
  top: 50%;
  left: 50%;
  will-change: transform;
}

.card {
  position: absolute;
  width: var(--card-w);
  height: var(--card-h);
  border-radius: 26px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 600;
  color: white;
  transition:
    transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 0.6s ease,
    opacity 0.6s ease;
  will-change: transform;
  user-select: none;
}

/* Arrows */
.nav-container {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.nav {
  position: absolute;
  top: var(--nav-v-pos);
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: white;
  font-size: 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
  cursor: pointer;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav.left {
  left: var(--nav-h-pos);
}

.nav.right {
  right: var(--nav-h-pos);
}

.nav:active {
  scale: 0.9;
}

@media (max-width: 600px) {
  :root {
    --card-w: 200px;
    --card-h: 280px;
    --wrapper-h: 460px;
  }

  .nav-container {
    position: absolute;
    height: auto;
    bottom: 0px;
    left: 0;
    right: 0;
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 0;
    pointer-events: auto;
    padding-bottom: 2rem;
  }

  .nav {
    position: static;
    transform: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
    background: rgba(255, 255, 255, 0.9);
  }
}