/* ================== GLOBAL RESET ================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Grown", montserrat classic;
   background: var(--ivory);
  color: var(--magenta);
  font-size: 20px;
}

:root {

  /* BRAND COLORS */

  --magenta: #A10F4A;
  --gold: #C6A75E;
  --ivory: #F5EFE6;
  --rose: #D8A1A6;
  --brown: #352D27;

}
p{
  font-family:montserrat classic;
}
h1{
  font-family:"Grown";
} 
h2{
  font-family:montserrat classic;
}
h3{
  font-family:montserrat classic;
}

.menu-list li { 
  font-family:montserrat classic;
}
.menu-list a {
  font-family:montserrat classic;
 }
/* ================== HEADER ================== */
.main-header {
  width: 100%;
   background: var(--ivory);
  color: var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;

}

.header-container {
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 16px;
}


/* LEFT */
.menu-icon {
  font-size: 24px;
  color: var(--magenta);
  cursor: pointer;
  transition: color 0.25s ease;
}

.menu-icon:hover {
  color: var(--gold);
}

/* CENTER LOGO */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 80px;
  width: auto;
}

/* RIGHT ICONS */
.header-icons {

  display: flex;
  align-items: center;

  gap: 14px;   /* spacing between icons */

  margin-left: auto;

  position: relative;

}

.header-search {

  position: absolute;

  right: 0;
  top: 45px;

  width: 0;

  opacity: 0;

  padding: 8px 14px;

  border-radius: 20px;
  border: 1px solid var(--gold);

  background: var(--ivory);
  color: var(--brown);

  outline: none;

  transition: width 0.3s ease,
              opacity 0.3s ease;

  z-index: 999;

}

@media (min-width: 1024px) {

  .header-search.active {

  width: 200px;   /* increased */
  opacity: 1;

}

  }

.header-icons .icon {
  font-size: 24px;
  color: var(--magenta);
  cursor: pointer;
  transition: transform 0.25s ease, color 0.25s ease;
}

.header-icons .icon:hover {
  color: #8b5e3c;
  transform: scale(1.12);
}


.logo-text {
  margin-right: 18px;
  font-size: 25px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
}

.heart-icon {
  width: 24px;
  height: 24px;
  color: var(--magenta);
  cursor: pointer;
  transition: color 0.25s ease;
}


/* ================== HEADER RESPONSIVE ================== */
@media (min-width: 768px) {
  .menu-icon {
    font-size: 26px;
    margin-left: 30px;
  }

  .logo img {
    max-height: 90px;
  }

  .header-icons .icon {
    font-size: 24px;
  }
}


/* ========================= */
/* PREMIUM SIDE MENU DESIGN  */
/* ========================= */

.side-menu {
  position: fixed;
  top: 0;
  left: -350px;
  width: 320px;
  height: 100%;
  background: linear-gradient(180deg, var(--ivory), var(--ivory));
  box-shadow: 5px 0 30px var(--gold);
  transition: 0.4s ease;
  z-index: 1000;
  padding: 30px 25px;
  font-family: 'Poppins', sans-serif;
}

.side-menu.active {
  left: 0;
}

/* TOP ROW */
.menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gold);
}

.menu-icon-inside {
  font-size: 20px;
  color: #555;
}

.menu-title {
  flex: 1;
  font-family: "Grown";
  margin-left: 10px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--magenta);
}

.close-btn {
  color: var(--brown);
  font-size: 26px;
  cursor: pointer;
  transition: 0.3s ease;
}

.close-btn:hover {
  transform: rotate(90deg);
  color:var(--magenta);
}

/* MENU LIST */
.menu-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.menu-list li {
  margin-bottom: 22px;
}

.menu-list a {
  text-decoration: none;
  font-size: 17px;
  color: var(--magenta);
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Hover effect */
.menu-list a:hover {
  color: var(--gold);
  transform: translateX(8px);
}

/* Underline animation */
.menu-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #000;
  transition: 0.3s ease;
}

.menu-list a:hover::after {
  width: 100%;
}

/* OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--ivory);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}



/* menu items page */
/* BANNER */
/* ================== MENU BANNER ================== */
.menu-banner {
  height: 60px;
  background: linear-gradient(to right, var(--ivory), var(--ivory));
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-banner h1 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 2px;
}


/* CONTENT GRID */
.content-container {
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.content-container.hidden {
  display: none;
}
 
/* IMAGE CARD */
.image-card {
  background-color: #84773d34;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #040805;
}
.image-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s ease;

}

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





/* ================== wishlist ================== */
.wishlist-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: var(--magenta);
  margin-bottom: 30px;
}

.product-card {
  position: relative;
}

.wishlist-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 22px;
  cursor: pointer;
  color: #999;
  background: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.wishlist-icon.active {
  color: red;
}

.product-card {
  position: relative;
}

.wishlist-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
  z-index: 5;
}

.wishlist-icon.active {
  color: red;
}

.product-card {
  position: relative;
  padding: 15px;
  border-radius: 10px;
}

.wishlist-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
}

.wishlist-icon.active {
  color: red;
}

.product-card {
  position: relative;
}

.wishlist-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 22px;
  cursor: pointer;
}

.wishlist-icon.active {
  color: red;
}


/* =========================
   WISHLIST PAGE DESIGN
========================= */

/* =========================
   PREMIUM WISHLIST DESIGN
========================= */

.wishlist-header {
  text-align: center;
  padding: 25px 0;
  background: linear-gradient(to right, #f8f3ef, #fff);
  font-size: 32px;
  font-weight: 600;
  
}



.wishlist-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD */
/* CARD - HORIZONTAL LAYOUT */
.wishlist-card {
  width: 140px;
 height: 190px;
  display: flex !important;
  flex-direction: row !important;   /* FORCE LEFT-RIGHT */
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.wishlist-card:hover {
  transform: translateY(-4px);
}

/* IMAGE (LEFT SIDE) */
.wishlist-img {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px;
}

.wishlist-img img {
  padding-top: 20px;
  width: 100%;
  height: 170px;
  object-fit: cover;
}

/* INFO (RIGHT SIDE) */
.wishlist-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wishlist-info h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.price {
  font-size: 16px;
  color: var(--brown);
  font-weight: 600;
  margin-bottom: 6px;
}

.description {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
  text-align: left;
}

/* BUTTONS */
.wishlist-buttons {
  display: flex;
  gap: 10px;
}

/* BUTTONS */
.wishlist-buttons {
  display: flex;
  gap: 10px;
}

.move-to-cart-btn {
  width: 100px;
  flex: 1;
  background: var(--magenta);
  color: var(--ivory);
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}

.move-to-cart-btn:hover {
  background: var(--gold);
}

.remove-wishlist-btn {
  flex: 1;
  background: var(--rose);
  color: var(--ivory);
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}

.remove-wishlist-btn:hover {
  background: var(--gold);
}

/* Count Badge */


.wishlist {
  text-decoration: none;
}
.wishlist-main{
  padding: 10px;
}

@media (max-width: 600px) {
  .wishlist-card {
    flex-direction: row;   /* keep horizontal */
  }
  .wishlist-img {
    width: 100%;
    height: 200px;
  }
}

  


/* Happy Customer Grid */
.review-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
}

.review-card img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.review-card h3 {
  padding: 12px;
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

/* ================== PRODUCT GRID ================== */
.product-card button {
  font-size: 10px;
 
  padding: 8px 15px;
  border: none;
  background: var(--magenta);
  color: var(--gold);
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.product-card button:hover {
  background: var(--gold);
}




.add-to-cart-btn {
  margin-top: 10px;
  padding: 8px 15px;
  border: none;
  background-color: var(--magenta);
  color: var(--ivory);
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
  transition: 0.3s ease;
}

.add-to-cart-btn:hover {
  background-color: var(--gold);
}


.cart-container {
  max-width: 900px;
  margin: auto;
}

/* ================== CART MODERN UI ================== */


.cart-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: var(--magenta);
  margin-bottom: 30px;
}
.cart-container {
  padding: 10px;
  max-width: 900px;
  margin: auto;
}

/* CARD */
.cart-item {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--ivory);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  border: 1px solid var(--ivory);
}

.cart-item:hover {
  transform: translateY(-4px);
}

/* IMAGE */
.cart-img {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.cart-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* DETAILS */
.cart-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-details h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.cart-details .price {
  font-size: 16px;
  color: var(--brown);
  font-weight: 600;
}

/* QUANTITY */
.quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.quantity-controls button {
  padding: 5px 10px;
  border: none;
  background: var(--gold);
  color: var(--ivory);
  cursor: pointer;
  border-radius: 5px;
}

.quantity-controls span {
  font-weight: bold;
}

/* SUBTOTAL */
.subtotal {
  font-size: 14px;
  color: var(--brown);
  margin-bottom: 10px;
}

/* REMOVE BUTTON */
.remove-btn {
  width: fit-content;
  background: var(--rose);
  color: var(--ivory);
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.remove-btn:hover {
  background: var(--gold);
}

/* SUMMARY */
.cart-summary {
  margin-top: 30px;
  padding: 20px;
  background: #f8f3ef;
  border-radius: 10px;
  text-align: right;
  box-shadow: 0 5px 15px var(--gold);
}

.checkout-btn {
  padding: 12px 20px;
  background: #8b5e3c;
  color: var(--brown);
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.checkout-btn:hover {
  background: #6e472d;
}
.remove-btn {
  background: var(--rose);
  color: white;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  margin-top: 10px;
}

.cart-summary {
  margin-top: 30px;
  text-align: right;
}

.checkout-btn {
  padding: 10px 20px;
  background: var(--magenta);
  color: var(--ivory);
  border: none;
  cursor: pointer;
  margin-top: 10px;
}
.cart-total {
  font-size: 25px;
  font-weight: bold;
  color: var(--magenta);
}


.quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.quantity-controls button {
  padding: 5px 10px;
  border: none;
  background: var(--gold);
  color: var(--ivory);
  cursor: pointer;
  font-size: 16px;
}

.quantity-controls span {
  font-weight: bold;
  font-size: 16px;
}




.collection-card {
  text-align: center;
  padding: 15px;
  background: #111;
  border-radius: 10px;
  transition: 0.3s;
}

.collection-card img {
  width: 100%;
  border-radius: 8px;
}

.product-name {
  color: white;
  margin: 10px 0 5px;
  font-size: 16px;
}

.product-price {
  color: gold;
  font-weight: bold;
  margin-bottom: 10px;
}

.add-to-cart-btn {
  padding: 8px 14px;
  border: none;
  background: gold;
  color: black;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.add-to-cart-btn:hover {
  background: orange;
}



/* ================== CIRCLE CAROUSEL ================== */
.circle-section {
  overflow: hidden;
  padding: 20px 0;
}

.circle-track {
  display: flex;
  width: max-content;
  gap: 36px;
  will-change: transform;
  cursor: grab;
   pointer-events: auto;
}

.circle-track.slow {
  animation-duration: 35s;
}

.circle-item {
  flex-shrink: 0;
  text-align: center;
}

.circle-item img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f7f6f5;
}

.circle-item p {
  margin-top: 8px;
  font-size: 13px;
}

/* ======================
   CIRCLE NAV BUTTONS
====================== */

.circle-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* Buttons */

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 38px;
  height: 38px;

  border-radius: 50%;
  border: none;

  background: var(--gold);
  color: var(--ivory);
  opacity: 0.4;
  font-size: 22px;
  cursor: pointer;

  transition: 0.3s ease;
}

.nav-btn:hover {
  background: var(--gold);
}

/* Left Button */

.nav-btn.left {
  left: 5px;
}

/* Right Button */

.nav-btn.right {
  right: 5px;
}







/* ============== UNIVERSAL COLLECTION PAGE ============== */

.collection-header {
  padding: 28px 16px 18px;
  text-align: center;
}

.collection-header h1 {
  font-size: 22px;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.collection-header p {
  font-size: 13px;
  color: var(--666);
}

.collection-gallery {
  padding: 10px 16px 40px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.collection-card {
  border-radius: 14px;
  overflow: hidden;
  background: #f8f8f8;
}

.collection-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Tablet */
@media (min-width: 600px) {
  .collection-header h1 {
    font-size: 26px;
  }

  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .collection-card img {
    height: 240px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .collection-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: auto;
  }

  .collection-card img {
    height: 280px;
  }
}













/* ================== BANNER ================== */
.banner {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.banner-container {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

video{
  width: 100%;
  height: 100%;
  object-fit: cover;

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





/* =================shop by CATEGORY PAGE ================= */

.category-header {
  text-align: center;
  padding: 3px 20px;
  background: linear-gradient(to right, var(--rose), var(--ivory));
}

.category-header h1 {
  font-size: 40px;
  color: var(--magenta);
  margin-bottom: 10px;
}

.category-subtitle {
  color: var(--magenta);
  font-size: 16px;
}

.category-section {
  padding: 40px 8%;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.category-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  position: relative;
}

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

.category-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
  text-align: center;
}

.card-content h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.card-content p {
  color: #8b5e3c;
  font-weight: bold;
  margin-bottom: 12px;
}

.add-to-cart-btn {
  background: var(--magenta);
  color: var(--ivory);
  border: none;
  padding: 10px 15px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.add-to-cart-btn:hover {
  background: #6e472d;
}








/* ===============================
   OUTFIT NAVIGATION BUTTONS
================================ */
.outfit-nav {
  text-align: center;
  margin: 50px 0 20px;
}

.outfit-nav button {
  padding: 12px 25px;
  margin: 10px;
  border: none;
  background-color: black;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s ease;
}

.outfit-nav button:hover {
  background-color: #444;
  transform: scale(1.05);
}

/* ===============================
   CATEGORY SECTION
================================ */
.category-section {
  padding: 40px 80px;
}

.category-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: bold;
}

/* ===============================
   PRODUCT GRID
================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

/* ===============================
   PRODUCT CARD
================================ */
.product-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  text-align: center;
  padding-bottom: 15px;
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.product-card h3 {
  margin: 15px 0 5px;
  font-size: 17px;
  font-weight: 600;
}

.product-card p {
  font-size: 16px;
  font-weight: bold;
  color: #555;
}

/* Hover Effect */
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* ===============================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 768px) {
  .category-section {
    padding: 30px 20px;
  }

  .category-title {
    font-size: 26px;
  }

  .outfit-nav button {
    padding: 10px 15px;
    font-size: 14px;
  }

  .product-card img {
    height: 220px;
  }
}/* ===============================
   OUTFIT NAVIGATION BUTTONS
================================ */
.outfit-nav {
 max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  text-align: center;
  margin: 50px 0 20px;
}

.outfit-nav button {
  padding: 12px 25px;
  margin: 10px;
  border: none;
  background-color: var(--rose);
  color: var(--brown);
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s ease;
}

.outfit-nav button:hover {
  background-color: var(--gold);
  transform: scale(1.05);
}

/* ===============================
   CATEGORY SECTION
================================ */
.category-section {
  padding: 40px 80px;
}

.category-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: bold;
}

/* ===============================
   PRODUCT GRID
================================ */

.products-grid {
      max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
}
/* ===============================
   PRODUCT CARD
================================ */
.product-card {
  
  background-color: var(--ivory);
  border-radius: 12px;
  overflow: hidden;
  
  transition: 0.3s ease;
  text-align: center;
  padding-bottom: 15px;
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.product-card h3 {
  margin: 0px 0 3px;
  
  color: var(--magenta);
  font-weight: 600;
}

.product-card p {
  margin: 7px;
  font-size: 10px;
  font-weight: bold;
  color: var(--magenta);
}

/* Hover Effect */
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px var(--gold);
  box-shadow: 0 6px 18px var(--gold);
}

/* ===============================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 768px) {
  .category-section {
    padding: 10px 10px;
  }

  .category-title {
    font-size: 26px;
  }

  .outfit-nav button {
    padding: 10px 15px;
    font-size: 14px;
  }

  .product-card img {
    height: 135px;
  }
}

/* ================== CONTACT SECTION ================== */
.contact-section {
  width: 100%;
  padding-right: 60px;
  padding-left: 60px;
}


.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.contact-header .tagline {
  font-size: 20px;
  color: #8b5e3c;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.store-main-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: var(--magenta);
  
}

.store-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--magenta);
 margin-top: 10px;
}

.contact-grid {
  width: 100%;
  display: grid;
  gap: 30px;
}



/* Third card (timing) spans full width */
.contact-card:last-child {
  grid-column: 1 / -1;
}

.contact-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px 30px;
  text-align: center;
  border: 1px solid #998989;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: #8b5e3c;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: #faf7f5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-card h3 {
  font-size: 30px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.contact-card .address {
  font-size: 20px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #8b5e3c;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 24px;
  border: 2px solid #8b5e3c;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.map-link:hover {
  background: #8b5e3c;
  color: #ffffff;
}

.phone-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-btn,
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.phone-btn {
  background: #faf7f5;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.phone-btn:hover {
  background: #f0ebe8;
  border-color: #8b5e3c;
  color: #8b5e3c;
}

.whatsapp-btn {
  background: #25D366;
  color: #ffffff;
  border: none;
}

.whatsapp-btn:hover {
  background: #20bd56;
  color: #ffffff;
}

.timing-info {
  text-align: left;
}

.timing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}

.timing-row:last-child {
  border-bottom: none;
}

.timing-row .day {
  font-size: 20px;
  color: #333333;
  font-weight: 500;
}

.timing-row .time {
  font-size: 20px;
  color: #666666;
}

.timing-row .status {
  font-size: 20px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timing-row .status.closed {
  background: #fef2f2;
  color: #b91c1c;
}

/* Store Photo Styling */
/* Store Photo Styling - Smaller & Elegant */

.store-photo {
  background: #ffffff;
  padding: 15px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  max-width: 350px;      /* controls width */
  margin: auto;          /* center it */
}

.store-photo img {
  width: 300px;          /* reduced width */
  height: 250px;         /* reduced height */
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s ease;
}

.store-photo img:hover {
  transform: scale(1.02);
}

/* Store Photo Card - for contact page */
.store-photo-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  border: 1px solid #998989;
  transition: all 0.3s ease;
  margin-top: 25px;
}

.store-photo-card:hover {
  transform: translateY(-6px);
  border-color: #8b5e3c;
}

.store-photo-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

/* Store Image - properly sized for the page */
.store-image {
  width: 100%;
  
  height: auto;
 
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}



/* Contact Section Responsive */
@media (min-width: 768px) {
  .contact-header h2 {
    font-size: 50px;
  }

  .contact-grid {
    max-width: 100%;
  }
}

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

  .contact-card:last-child {
    grid-column: 1;
  }

  .contact-section {
    padding: 35px 15px;
  }

  .contact-header h2 {
    font-size: 32px;
  }

  .contact-header .tagline {
    font-size: 14px;
  }

  .contact-card {
    padding: 28px 22px;
  }

  .contact-card h3 {
    font-size: 18px;
  }

  .contact-card .address {
    font-size: 14px;
  }

  .phone-btn,
  .whatsapp-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .timing-row .day,
  .timing-row .time {
    font-size: 14px;
  }
}

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

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

  .contact-section {
    padding: 10px 20px;
  }
}


/* ================== ANIMATION ================== */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ================== MOBILE TUNING ================== */
@media (max-width: 360px) {
  .circle-track {
    gap: 24px;
  }

  .circle-item img {
    width: 85px;
    height: 85px;
  }
}

/* ================== SHOP BY CATEGORY ================== */
.shop-category {
  padding: 10px 16px;
  background: #f6f1ea;
}

.section-title {
  text-align: center;
  font-size: 22px;
  letter-spacing: 1.5px;
  margin-bottom: 36px;
}

/* Mobile default: 2 per row */
.category-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.category-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card img {
  width: 100%;
  height: 125px;
  object-fit: cover;
}

.category-card p {
  color: var(--magenta);
  font-size: 13px;
  font-weight: 500;
}

/* Hover only on devices that support hover */
@media (hover: hover) {
  .category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  }
}

/* Tablet */
@media (min-width: 600px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .section-title {
    font-size: 26px;
  }

  .category-card img {
    height: 190px;
  }
} 

/* login css code */
/* ================= GLOBAL ================= */



/* ================= AUTH WRAPPER ================= */

.auth-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ================= AUTH BOX ================= */

.auth-box {
  width: 400px;
  background: #111;
  padding: 40px 35px;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.4);
  animation: fadeIn 0.6s ease-in-out;
}

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

/* ================= BRAND TITLE ================= */

.brand-title {
  text-align: center;
  color: #d4af37;
  font-size: 24px;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

/* ================= HEADINGS ================= */

h3 {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 500;
}

/* ================= INPUTS ================= */

.input-group {
  margin-bottom: 15px;
}

.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #444;
  background: #1c1c1c;
  color: white;
  font-size: 14px;
  transition: 0.3s;
}

.input:focus {
  border-color: #d4af37;
  outline: none;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* ================= BUTTON ================= */

.primary-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(45deg, #d4af37, #f7d046);
  color: black;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

/* ================= FORGOT LINK ================= */

.forgot-link {
  text-align: right;
  margin-bottom: 10px;
}

.forgot-link a {
  color: #d4af37;
  font-size: 13px;
  text-decoration: none;
}

.forgot-link a:hover {
  text-decoration: underline;
}

/* ================= SWITCH AUTH ================= */

.switch-auth {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #aaa;
}

.switch-auth a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
}

.switch-auth a:hover {
  text-decoration: underline;
}

/* ================= DIVIDER ================= */

.divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.divider span {
  background: var(--rose);
  padding: 5px 10px;
  color: var(--ivory);
  font-size: 13px;
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #333;
  z-index: -1;
}

/* ================= GOOGLE BUTTON ================= */

.g_id_signin {
  display: flex !important;
  justify-content: center;
  margin-bottom: 10px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 480px) {
  .auth-box {
    width: 90%;
    padding: 30px 20px;
  }
}

/* register css code */

/* ================= GLOBAL ================= */




/* ================= AUTH WRAPPER ================= */

.auth-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ================= AUTH BOX ================= */

.auth-box {
  width: 420px;
  background: var(--ivory);
  padding: 40px 35px;
  border-radius: 15px;
  box-shadow: 0 0 30px var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.4);
  animation: fadeIn 0.6s ease-in-out;
}

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

/* ================= BRAND TITLE ================= */

.brand-title {
  text-align: center;
  color: var(--magenta);
  font-size: 24px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* ================= SUB HEADING ================= */

h3 {
  font-family:monospace classic;
  text-align: center;
  color: var(--magenta);
  margin-bottom: 25px;
  font-weight: 500;
}

/* ================= INPUTS ================= */

.input-group {
  margin-bottom: 15px;
}

.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--gold);
  background: white;
  color: var(--magenta);
  font-size: 14px;
  transition: 0.3s;
}

.input:focus {
  border-color: #d4af37;
  outline: none;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* ================= BUTTON ================= */

.primary-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(45deg, #d4af37, #f7d046);
  color: black;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

/* ================= SWITCH AUTH ================= */

.switch-auth {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
  color: #aaa;
}

.switch-auth a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
}

.switch-auth a:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 480px) {
  .auth-box {
    margin-top: 80px;
    width: 90%;
    padding: 30px 20px;
  }
}

/*  address css code */


/* Main Container */
.address-container {
    width: 900px;
    margin: 60px auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #d4a017;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Heading */
.address-container h2 {
  font-size: 50px;
    text-align: center;
    color: #d4a017;
    margin-bottom: 30px;
}

/* Labels */
form label {
  font-size: 40px;
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Inputs */
form input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background-color: #f5f5f5;
    font-size: 24px;
}

/* Button */
.save-btn {
    display: block;
    margin: 30px auto 15px auto;
    padding: 12px 25px;
    background-color: var(--magenta);
    color: var(--ivory);
    border: none;
    border-radius: 6px;
    font-size: 25px;
    cursor: pointer;
}

.save-btn:hover {
    background-color: var(--rose);
}

/* Back Link */
.back-link {
  font-size: 25px;
    display: block;
    text-align: center;
    color: #d4a017;
    text-decoration: none;
    font-weight: bold;
}

.back-link:hover {
    text-decoration: underline;
}

 /* ================== LOGOUT PAGE ================== */
.logout-modal {
  position: fixed;
  inset: 0;
  background: var(--rose);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.logout-box {
  background: var(--ivory);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  width: 300px;
}

.logout-actions {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.secondary-btn {
  background: #ccc;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
}

.primary-btn {
  background: var(--magenta);
  color: var(--ivory);
  border: none;
  padding: 8px 14px;
  cursor: pointer;
}

/* search css */
.search-wrapper {

  position: relative;

  display: flex;

  align-items: center;

}

.header-search {

  position: absolute;

  right: 0;
  top: 45px;

  width: 0;

  opacity: 0;

  padding: 8px 14px;

  border-radius: 20px;
  border: 1px solid var(--gold);

  background: var(--ivory);
  color: var(--brown);

  outline: none;

  transition: width 0.3s ease,
              opacity 0.3s ease;

  z-index: 999;

}

.header-search.active {

  width: 200px;
  opacity: 1;

}


/* =========================
   SEARCH RESPONSIVE FIX
========================= */



/* view all addresses */

.address-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.address-modal-content {
  background: #fff;
  padding: 20px;
  width: 400px;
  border-radius: 8px;
}

.address-option {
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #ddd;
}











/* =========================
   IMAGE MODAL
========================= */

.image-modal {

  display: none;

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.85);

  justify-content: center;
  align-items: center;

  z-index: 9999;

}

/* Active */

.image-modal.active {

  display: flex;

}

/* Image */
.modal-image {

  width: 100%;

  max-height: 350px;

  object-fit: contain;

  border-radius: 10px;

}

/* Close Button */

.close-modal {

  position: absolute;

  top: 20px;
  right: 30px;

  font-size: 35px;

  color: white;

  cursor: pointer;

}

/* Navigation Buttons */
.modal-btn {

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  font-size: 28px;

  border: none;

  background: rgba(0,0,0,0.5);

  color: white;

  padding: 8px 12px;

  cursor: pointer;

  border-radius: 50%;

  z-index: 10;  /* 🔥 VERY IMPORTANT */

}

.modal-btn.left {
  left: 10px;
}

.modal-btn.right {
  right: 10px;
}



/* =========================
   PRODUCT MODAL FULL VIEW
========================= */

.modal-content {

  background: var(--ivory);

  width: 95%;
  max-width: 500px;

  border-radius: 12px;

  padding: 15px;

  display: flex;

  flex-direction: column;   /* 🔥 IMPORTANT */

  align-items: center;

}

.modal-image-area {

  width: 100%;

  position: relative;

  text-align: center;

}

.modal-details {

  width: 100%;

  text-align: center;

  margin-top: 15px;

}

.modal-details h2 {

  font-size: 20px;

  margin-bottom: 8px;

  color: var(--magenta);

}

.modal-details p {

  font-size: 14px;

  margin: 4px 0;

  color: var(--magenta);

}

.modal-details h3 {

  color: var(--magenta);

  margin-top: 10px;

}









.description {
  font-size: 13px;
  color: var(--magenta);
  margin: 0px 0;
  text-align: center;
}

.material {
  font-size: 12px;
  color: var(--magenta);
}

.stock {
  font-size: 12px;
  color: var(--magenta);
}

.stock:contains("Out") {
  color: var(--magenta);
}


/* ================== PRODUCT DETAIL PAGE ================== */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 10px;
}

.review-card img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}


.view-all-link {
  width: 100px;
  display: block;
  margin: 20px auto 0 auto;
  padding: 10px 20px;
  background: var(--magenta);
  color: var(--ivory);
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}