/* =========================
   GLOBAL SETTINGS
========================= */
body {
  margin: 0;
  padding: 0;
  font-family: "Playfair Display", serif;
  background: #dcdcdc;
  display: flex;
  justify-content: center;
}

/* MAIN MOBILE BOX */
.mobile-container {
  width: 380px;
  background: #f8f2e7;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  min-height: 100vh;

  display: flex;
  flex-direction: column;
}

/* =========================
   HEADER
========================= */
.top-header {
  background: #f8f2e7;
  text-align: center;
  padding: 15px;
  border-bottom: 2px solid #d2a44f;
  position: relative;
}

.logo-text {
  margin: 0;
  font-size: 22px;
  color: #d2a44f;
  font-weight: 600;
  letter-spacing: 1px;
}

.cart-icon {
  position: absolute;
  top: 18px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 5px;
}


#cartCount {
  background: red;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
  margin-left: 4px;
}

/* BACK BUTTON */
.back-btn {
  position: absolute;
  left: 15px;
  top: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #d2a44f;
  cursor: pointer;
  z-index: 9999;
}

/* =========================
   HERO SECTION (HOME)
========================= */
.hero-banner {
  display: flex;
  height: 170px;
  overflow: hidden;
  width: 100%;
}


.hero-left {
  width: 45%;
  display: flex;
  align-items: center;
  padding: 20px;
  color: white;
}

.hero-left h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.hero-right {
  width: 55%;
}
.hero-right img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}


/* =========================
   COLLECTION SECTION
========================= */
.collections-section {
  padding: 15px;
  flex: 1;
}

.collection-title {
  margin: 0;
  font-size: 14px;
  color: #7a2f2f;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* COLLECTION GRID */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* COLLECTION BOX */
.collection-box {
  text-decoration: none;
  color: black;
  border: 2px solid black;
  border-radius: 14px;
  background: #f8f2e7;
  overflow: hidden;
  cursor: pointer;
  transition: 0.2s;
}

.collection-box:hover {
  transform: scale(1.02);
}

.collection-img {
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.collection-img img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.collection-name {
  border-top: 1px solid black;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
}

/* =========================
   CATEGORY PAGE PRODUCTS GRID
========================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.product-card-link {
  text-decoration: none;
  color: black;
}

.product-card {
  border: 2px solid black;
  border-radius: 14px;
  background: #f8f2e7;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}

.product-card:hover {
  transform: scale(1.02);
}

.product-card img {
  width: 100%;
  height: 120px;
  border-radius: 10px;
  object-fit: cover;
}

.product-card h4 {
  margin: 8px 0 0 0;
  font-size: 14px;
  font-weight: 600;
}

.product-card p {
  margin: 5px 0 0 0;
  font-size: 13px;
  color: #444;
}

/* =========================
   PRODUCT PAGE
========================= */
.product-page {
  padding: 15px;
  text-align: center;
  flex: 1;
}

.main-product-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid black;
}

.product-page h2 {
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 18px;
}

.product-page p {
  margin: 5px 0;
  font-size: 14px;
  color: #444;
}

/* =========================
   BUTTONS
========================= */
.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 12px;
  border: none;
  width: 100%;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 12px;
}

.btn-cart {
  background: #1d3c63;
  color: white;
  padding: 12px;
  border: none;
  width: 100%;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
}

.btn-clear {
  background: #d9534f;
  color: white;
  padding: 12px;
  border: none;
  width: 100%;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
}

/* =========================
   CART PAGE
========================= */
.cart-item {
  display: flex;
  gap: 10px;
  border: 2px solid black;
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 12px;
  background: #f8f2e7;
}

.cart-item img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
}

.cart-info {
  flex: 1;
}

.cart-info h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.cart-info p {
  margin: 4px 0;
  font-size: 13px;
  color: #444;
}

/* Quantity Row */
.qty-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 6px;
}

.qty-row span {
  font-size: 14px;
  font-weight: 600;
}

.qty-row button {
  padding: 4px 12px;
  border: none;
  border-radius: 6px;
  background: #1d3c63;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

/* Remove button */
.remove-btn {
  margin-top: 8px;
  padding: 6px 10px;
  background: #d9534f;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

/* =========================
   CHECKOUT FORM (ORDER PAGE)
========================= */
.form-label {
  display: block;
  margin-top: 15px;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.form-input {
  width: 100%;
  padding: 12px;
  border: 2px solid #ccc;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
}

.form-input:focus {
  border: 2px solid #d2a44f;
}

.row {
  display: flex;
  gap: 10px;
}

.row div {
  flex: 1;
}

/* =========================
   FOOTER (ALWAYS BOTTOM FIX)
========================= */
.footer {
  background: #1d3c63;
  padding: 18px 15px;
  text-align: center;
  border-top: 3px solid #d2a44f;

  margin-top: auto;
}

.footer-logo {
  margin: 0;
  font-size: 18px;
  color: #d2a44f;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-row {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #d2a44f;
  font-size: 12px;
  font-weight: 600;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-social img {
  width: 24px;
  height: 24px;
  background: white;
  padding: 4px;
  border-radius: 50%;
}
.footer-links a {
  color: #ffffff;   /* इथे color change कर */
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
}
.footer a,
.footer-links a,
.footer-left a,
.footer-right a {
  color: #d8a04d !important;   /* Gold color */
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover,
.footer-links a:hover {
  color: #ffffff !important;
}
.hero-banner-full {
  width: 100%;
  height: 170px;
  overflow: hidden;
}

.hero-banner-full img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}
