body {
  background-color: #FAF3E0;
  color: #333;
  /* padding-top: 90px; */
}

.topbar {
  background: var(--color-primary);
  color: white;
  /* background: #704d3d; */
  /* Dark Brown */
  color: white;
  font-size: 14px;
}

h1,
h2,
h3,
h4 {
  color: #5C4033;
}

.btn-gold {
  background-color: #C6A14A;
  color: white;
  border: none;
}

.btn-gold:hover {
  background-color: #a88935;
}

.navbar {
  background-color: #ffffff;
}

.navbar-brand {
  font-family: 'Cinzel', serif;
  color: #5C4033 !important;
  font-size: 35px;
  font-weight: 800;
  font-weight: bold;
}

.hero-section {
  /* background: linear-gradient(to right, #fff, #f3f8f3); */
  background: linear-gradient(to right, #fff, #FAF3E0);
  padding: 80px 0;
}

.hero-section h1 {
  /* color: #198754; */
  font-weight: bold;
}

.product-card {
  background: white;
  border-radius: 10px;
  padding: 15px;
}

.product-card h5 {
  color: #5C4033;
}

.price {
  color: #C6A14A;
  font-weight: bold;
}

.product-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #C6A14A;
  /* Soft Gold */
  color: white;
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 500;
}

.btn-cart {
  border: 1px solid #C6A14A;
  /* Soft Gold */
  color: #C6A14A;
  font-weight: 500;
}

.btn-cart:hover {
  background: #C6A14A;
  color: white;
}

footer {
  /* background-color: #5C4033;
            color: white; */
  background: var(--color-primary);
  color: white;

}

footer a {
  color: #C6A14A;
}

.logo-img {
  height: 100px;
  width: auto;
  background-color: #C6A14A;
  /* Light Beige */
  padding: 3px;
  border-radius: 50%;
}

.topbar a,
.topbar a:hover {
  text-decoration: none;
}

.top-icon {
  color: #C6A14A;
  transition: 0.3s;
}

.top-icon:hover {
  color: white;
}

.btn-view {
  border: 1px solid #C6A14A;
  color: #C6A14A;
  border-radius: 10px;
  padding: 4px 4px;
  transition: 0.3s;
}

.btn-view:hover {
  background: #C6A14A;
  color: white;
}

#pagination button {
  border: 1px solid #C6A14A;
  color: #C6A14A;
}

#pagination button.btn-dark {
  background: #C6A14A;
  color: white;
}

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  /* Premium Palette */
  --primary-h: 355;
  --primary-s: 70%;
  --primary-l: 25%;
  --color-primary: hsl(var(--primary-h), var(--primary-s), var(--primary-l));

  /* Gold/Accent */
  --accent-h: 40;
  --accent-s: 80%;
  --accent-l: 50%;
  --color-accent: hsl(var(--accent-h), var(--accent-s), var(--accent-l));

  --color-bg: #fffbf5;
  /* Warm Cream */
  --color-card-bg: #ffffff;
  --color-text: #1a1a1a;
  --color-text-light: #444444;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;

  /* Spacing */
  --container-width: 1200px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 32px;
  --spacing-xl: 64px;

  /* Effects */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.12);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

img {
  max-width: 100%;
  display: block;
}



.card-image {
  width: 100%;
  height: 300px;
  /* 100%;*/
  /* adjust if needed */
  background: #fefefef4;
  /* soft beige background */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;


}

.card-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

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

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

/* Header */
header {
  background: var(--color-card-bg);
  padding: var(--spacing-md) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

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

.nav-links a {
  text-decoration: none;
  color: var(--color-text);
  margin-left: var(--spacing-lg);
  font-weight: 500;
  transition: var(--transition);
}

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

/* Hero Section */
.hero {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 251, 245, 1) 0%, rgba(255, 235, 210, 0.5) 100%);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.hero strong {
  color: var(--color-text);
}


/*nav bar */
/* Default link color */
.navbar-nav .nav-link {
  color: black;
}

/* Active menu item */
.navbar-nav .nav-link.active {
  color: var(--color-primary);
  !important;
  /* Pink shade – you can change */
  font-weight: bold;
}

/* Hover effect */
.navbar-nav .nav-link:hover {
  color: #ff9800;
  /* Orange shade – you can change */
}


/* Product Grid */
.products-section {
  // padding: var(--spacing-xl) 0;
  padding: 10px 0 10px 0;
}

.contactproducts-section {
  // padding: var(--spacing-xl) 0;
  //display: flex;
  //justify-content: center;   /* Horizontal center */
  //align-items: center;       /* Vertical center */
  //text-align: center;
  min-height: 400px;
  padding: 10px 0 10px 100px;
}

.contactproduct-grid {
  //display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  gap: var(--spacing-lg);
  // width:850px;
  //align:center;
}

.contact-content {
  width: 60%;
  /* Controls the width of the box */
  margin: 0 auto;
  /* Centers horizontally */
  text-align: justify;
  /* Justifies text */
}

.contact-box {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
  background-color: #fff5f8;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-primary);
  text-align: center;
  //margin-bottom: var(--spacing-xl);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: var(--spacing-sm) auto 0;
}

.contactsection-title {
  font-family: var(--font-heading);
  font-size: 2.0rem;
  color: var(--color-primary);
  text-align: center;
  //margin-bottom: var(--spacing-xl);
  position: relative;
}

.contactsection-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: var(--spacing-sm) auto 0;
}



.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  /* gap: var(--spacing-lg);*/
}

/*#product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);*/
  /* 4 per row */
 /* gap: 20px;
  margin-top: 30px;
}*/

#product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

/* Product Card */
.product-card {
  background: var(--color-card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  //  box-shadow: var(--shadow-sm);
  box-shadow: 0 4px 12px rgba(92, 64, 51, 0.25);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  //max-width: 250px;
  /* control card size */
  //max-height: 430px;   /* control card size */
  width: 100%;

}

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

/* .card-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
} */

.product-card:hover .card-image img {
  transform: scale(1.05);
  /* Subtle zoom */
}

.card-content {
  padding: var(--spacing-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
}

.weight {
  background: #f0f0f0;
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 0.7rem;
}

.order-btn {
  margin-top: auto;
  //background-color: #25D366;
  /* WhatsApp Green */
  border: 1px solid #C6A14A;
  /* Soft Gold */
  color: #C6A14A;
  // color: white;

  padding: 2px;
  width: 100%;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.8rem;

  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: var(--transition);
}

.order-btn:hover {
  background-color: #C6A14A;
  color: white;

  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Footer */
/*footer {
  background: var(--color-primary);
  color: white;
  padding: var(--spacing-xl) 0;
  margin-top: var(--spacing-xl);
  text-align: center;
}

footer p {
  opacity: 0.8;
}*/

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

  .nav-links {
    display: none;
  }

  /* Simplified nav for mobile */



}


.product-details-section {
  background: var(--color-card-bg);
}

.details-image-box {
  background: #fff;
  padding: 15px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.thumb-img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.thumb-img:hover {
  border-color: var(--color-accent);
  transform: scale(1.05);
}


.instagram-link {
  text-decoration: none;
  font-weight: 600;
  color: #E1306C;
}

.instagram-link:hover {
  opacity: 0.8;
}


.contact-instagram {
  margin-top: 20px;
}

.insta-btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(45deg, #800000, #E8CFC1);
  /* Maroon to Beige */
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(128, 0, 0, 0.2);
}

.insta-btn i {
  margin-right: 8px;
  font-size: 18px;
}

.insta-btn:hover {
  background: linear-gradient(45deg, #d63384, #800000);
  /* Pink to Maroon */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(214, 51, 132, 0.3);
}

.contact-whatsapp {
  margin-top: 15px;
}

.whatsapp-btn {
  /* display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, #800000, #f4e1d2);*/
  /* Maroon to Beige */
  color: green;
  text-decoration: none;
  font-weight: 600;
  //border-radius: 30px;
  font-size: 16px;
  transition: all 0.3s ease;
  // box-shadow: 0 4px 10px rgba(128, 0, 0, 0.2);
}

.whatsapp-btn i {
  margin-right: 8px;
  font-size: 18px;
}

.whatsapp-btn:hover {
  color: #800000;

  transform: translateY(-3px);
  //box-shadow: 0 6px 15px rgba(255, 111, 145, 0.3);
}

.youtube-btn {
  color: light blue;
  text-decoration: none;
  font-weight: 600;

  font-size: 16px;
  transition: all 0.3s ease;

}


.facebook-link {
  text-decoration: none;
  font-weight: 600;
  color: #3e779e;
}

.facebook-link:hover {
  opacity: 0.8;
}