* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body{
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}
/* Gold & White Variables (use CSS custom properties if needed) */
:root {
  --gold: #bfa76f;
  --gold-dark: #a08a52;
  --light-bg: #fff;
  --light-border: #f1f1f1;
  --text-dark: #2c2c2c;
  --text-muted: #777;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Layout Container */
.item-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 5%;
  background: var(--light-bg);
  max-width: 1400px;
  margin: 0 auto;
}

.item-dtl-section {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

/* Product Image */
.item-image-div {
  background: var(--light-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.item-gallery-image-container:hover img {
  transform: scale(1.03);
}

.item-gallery-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* Product Details Section */
.gallery-details-container-desktop {
  flex: 1;
  background: var(--light-bg);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--box-shadow);

}

.item-price-container {
  margin-bottom: 24px;
}

.price-container-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.price-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

.item-price-amnt {
  font-size: 26px;
  font-weight: bold;
  color: var(--gold);
}

.price-withgst {
  font-size: 14px;
  color: var(--text-muted);
}

h1, h3 {
  margin-top: 10px;
  font-weight: 600;
}

h1 {
  font-size: 22px;
  color: var(--text-dark);
}

h3 {
  font-size: 16px;
  color: var(--text-muted);
}

/* Add to Cart Button */
.item-add-to-cart-box {
  margin: 20px 0;
}

.addtocart-tilte {
  background: var(--gold);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
  border: none;
}

.addtocart-tilte:hover {
  background: var(--gold-dark);
}

/* Quantity Counter */
.add-to-cart {
  display: flex;
  width: 120px;
  height: 40px;
  border: 1px solid var(--light-border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 10px;
}

.add-to-cart div {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  background: #fafafa;
  transition: background 0.3s ease;
}

.add-to-cart div:hover {
  background: #f0f0f0;
}

#bar_quantity {
  background: #fff;
  font-weight: 600;
  font-size: 16px;
}

/* Price Breakdown */
.jewellery-charge-dtl-flex {
  display: flex;
  justify-content: space-between;
  background: #f9f9f9;
  padding: 16px;
  border-radius: 10px;
  margin-top: 12px;
  border: 1px solid var(--light-border);
}

.jewellery-charge-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--gold-dark);
}

.charges-description-dtl {
  font-size: 13px;
  color: var(--text-muted);
}

.descriptions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 3px;
}

/* More Products Section */
/*.more-catalouges-container {
  background: var(--light-bg);
  margin: 40px 5%;
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
}*/

.header-more-catalouge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.header-more-catalouge p {
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}

.header-more-catalouge p:last-child {
  color: var(--gold);
  cursor: pointer;
  transition: color 0.3s ease;
}

.header-more-catalouge p:last-child:hover {
  color: var(--gold-dark);
}

.more-catalouges-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}



.product-grid-image-style {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.product-dtl-home { 
  padding: 12px;
}

.product-dtl-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Cart Message */
#cart_message {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #fef6e0;
  color: #8b6f33;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-size: 14px;
  display: flex;
  align-items: center;
  z-index: 1000;
}

#cart_message i {
  margin-right: 10px;
  color: #8b6f33;
}

/* Responsive */
@media (max-width: 768px) {
  .item-gallery {
    flex-direction: column;
    padding: 20px 5%;
  }

  .more-catalouges-list {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

  .gallery-details-container-desktop {
    padding: 20px;
  }

  .item-gallery-image {
    max-height: 360px;
  }
}
