/* =============================================
   GLAMBORROW — productwindow.css (Modern + Responsive)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---- WELCOME ANIMATION ---- */
@keyframes heroFadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- HERO WELCOME SECTION ---- */
.welcome-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 70vh;
  padding: 60px 24px 40px;
  position: relative;
  overflow: hidden;
}

.welcome-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.welcome-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 16px;
  animation: heroFadeDown 1s ease both;
}

.welcome-tagline span {
  background: linear-gradient(135deg, #c9a84c, #e8c96a, #c9a84c);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.welcome-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
  animation: heroFadeUp 1s ease 0.2s both;
}

.welcome-cta {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #c9a84c, #e8c96a);
  color: #132030;
  cursor: pointer;
  animation: heroFadeUp 1s ease 0.4s both;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
  letter-spacing: 0.5px;
}

.welcome-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(201,168,76,0.5);
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
  animation: heroFadeUp 1s ease 0.6s both;
  color: rgba(255,255,255,0.4);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  animation: float 2.5s ease-in-out infinite;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201,168,76,0.6);
}

/* ---- SECTION TITLE ---- */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff;
  text-align: center;
  margin: 40px 0 24px;
  padding-top: 20px;
  letter-spacing: 0.5px;
}

.section-title span {
  color: #c9a84c;
}

/* ---- PRODUCT GRID ---- */
.Allproducts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
  padding: 20px 24px 100px;
}

/* ---- PRODUCT CARD ---- */
.iteam {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  animation: fadeInScale 0.5s ease both;
  position: relative;
  
}

.iteam:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(201,168,76,0.2);
}

.iteam:hover .imgiteam {
  transform: scale(1.04);
}

.picdiv {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
  height: 240px;
}

.imgiteam {
  width: 75%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.iteamdiscription {
  padding: 10px 12px 4px;
  background: rgba(19,32,48,0.7);
}

.iteamheading {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  padding: 0;
  margin: 0 0 6px;
  line-height: 1.3;
}

p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* ---- PRICE SECTION ---- */
.Pricediv {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 12px;
  padding: 6px 0;
}

.Rentprice, .Buyprice {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* ---- RENT / BUY BUTTONS ---- */
.rentbuydiv {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 8px;
  gap: 6px;
  background: rgba(0,0,0,0.2);
}

.Rentbutton {
  flex: 1;
  padding: 8px 0;
  background: rgba(201,168,76,0.1);
  border: 1px solid #c9a84c;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #c9a84c;
  cursor: pointer;
  transition: all 0.3s ease;
}

.Rentbutton:hover {
  background: #c9a84c;
  color: #132030;
  box-shadow: 0 4px 12px rgba(201,168,76,0.3);
}

.Buybutton {
  flex: 1;
  padding: 8px 0;
  background: rgba(56,161,105,0.1);
  border: 1px solid #38a169;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #68d391;
  cursor: pointer;
  transition: all 0.3s ease;
}

.Buybutton:hover {
  background: #38a169;
  color: white;
  box-shadow: 0 4px 12px rgba(56,161,105,0.3);
}

/* ---- FILTER POP-UP ---- */
.pop {
  position: fixed;
  top: 68px;
  right: 10px;
  background: rgba(19,32,48,0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 16px;
  padding: 16px;
  z-index: 900;
  min-width: 220px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  animation: fadeInScale 0.2s ease;
}

.pop-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: #c9a84c;
  margin: 0 0 12px;
  letter-spacing: 0.5px;
}

.pop-section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 10px 0 6px;
}

.producttypebutton {
  width: 100%;
  padding: 8px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: rgba(255,255,255,0.8);
  margin-bottom: 4px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.producttypebutton:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.4);
  color: #e8c96a;
}

.producttypebutton.selected,
.selected {
  background: rgba(201,168,76,0.18);
  border-color: #c9a84c;
  color: #e8c96a;
}

/* Size sub-filter */
.size-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
  padding-top: 4px;
}

.size-chip {
  padding: 4px 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all 0.2s ease;
}

.size-chip:hover {
  border-color: rgba(201,168,76,0.5);
  color: #e8c96a;
}

.size-chip.selected {
  background: rgba(201,168,76,0.18);
  border-color: #c9a84c;
  color: #e8c96a;
}

.Applyfilterbutton {
  width: 100%;
  padding: 10px;
  margin-top: 12px;
  background: linear-gradient(135deg, #c9a84c, #e8c96a);
  color: #132030;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.Applyfilterbutton:hover {
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  transform: translateY(-1px);
}

/* ---- PRODUCT DETAIL PAGE ---- */
.productinformation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100vh - 68px);
  margin-top: 68px;
  background: rgba(19,32,48,0.6);
  gap: 0;
}

.pictureandbuttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 24px;
  background: rgba(0,0,0,0.25);
  min-height: 500px;
  position: relative;
}

.productimgdiv {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 340px;
  max-height: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.productimgdiv img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}

.imgCount {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.65);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
}

.productdetails {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 32px;
  gap: 16px;
}

.productnameHeader {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0;
  position: relative;
  width: 100%;
}

.itemDiscription {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-align: center;
  max-width: 400px;
  line-height: 1.7;
  position: relative;
  top: 0;
  margin: 0;
}

/* ---- OPTIONS SECTION ---- */
.event-section, .options-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}



.rent-section, .buy-section,
.color-section, .size-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.rentPriceDisplay, .buyPriceDisplay {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.optionbutton {
  padding: 8px 20px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.85);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.25s ease;
  margin-left: 0;
  left: 0;
  position: relative;
  width: auto;
}

.optionbutton:hover {
  background: rgba(201,168,76,0.15);
  border-color: rgba(255, 252, 245, 0.5);
  color: #e8c96a;
}

.colorOptionsWindow, .sizeOptionsWindow {
  min-width: 120px;
  text-align: center;
}

.colorOptionsWindow select, .sizeOptionsWindow select {
  background: rgba(19,32,48,0.9);
  color: #fff;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 8px;
  padding: 6px 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  outline: none;
  cursor: pointer;
}

.colorOptionsWindow label, .sizeOptionsWindow label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.Options, .Confirmbutton {
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  color: #e8c96a;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  border: 1px solid rgba(201,168,76,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 0;
}

.Confirmbutton {
  background: linear-gradient(135deg, #c9a84c, #e8c96a);
  color: #132030;
  border: none;
  padding: 12px 32px;
  border-radius: 12px;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
  position: relative;
}

.Confirmbutton:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}

.optionsdiv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
}

/* ---- BACK BUTTON ---- */
.backbutton {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 0 16px;
  height: 34px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.backbutton:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: white;
}

/* ---- SLIDE BUTTONS ---- */
.slidebutton {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slidebutton:hover {
  background: rgba(201,168,76,0.2);
  border-color: #c9a84c;
}

/* ---- CART PAGE ---- */
.iteamincartpage {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 200px;
}

.iteamincartpage:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.imgiteam2 {
  width: auto;
  height: 220px;
  object-fit: cover;
}

.iteam2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  margin-top: 80px;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px;
}

.iteamsincartdiv {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  padding: 90px 20px 100px;
}

/* ---- CART BOTTOM BAR ---- */
.cartsectiontext {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(19,32,48,0.95);
  border-top: 1px solid rgba(201,168,76,0.2);
  position: sticky;
  bottom: 56px;
  z-index: 800;
  flex-wrap: wrap;
}

.cartsectiontext input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #c9a84c;
  cursor: pointer;
  flex-shrink: 0;
}

.cartsectiontext p {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  flex: 1;
}

.cartsectiontext2 {
  display: flex;
  justify-content: center;
  padding: 16px 20px;
}

.cartpagetext {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.protectionfee {
  color: #c9a84c;
  font-weight: 700;
}

/* ---- REMOVE BUTTON ---- */
.removebutton {
  background: rgba(229,62,62,0.12);
  border: 1px solid rgba(229,62,62,0.4);
  border-radius: 8px;
  height: 28px;
  padding: 0 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #fc8181;
  cursor: pointer;
  transition: all 0.25s ease;
}

.removebutton:hover {
  background: rgba(229,62,62,0.25);
  border-color: #fc8181;
  box-shadow: 0 2px 8px rgba(229,62,62,0.2);
}

.rentprice {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #68d391;
  padding: 0;
}

.rentPriceAndRemoveButton-Div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
}

.quantity {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  padding: 0;
}

/* ---- ADDED TO CART TOAST ---- */
.addedtocartdiv {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(19,32,48,0.96);
  border: 1px solid rgba(201,168,76,0.5);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2000;
  animation: toastIn 0.3s ease;
  transition: opacity 0.5s ease;
}

.addedtocarttext {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #e8c96a;
}

.addedtocartimg {
  width: 22px;
  height: 22px;
}

/* ---- PROTECTION FEE HEADER ---- */
.iteamprotectionfeeheader {
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border-bottom: 1px solid rgba(201,168,76,0.25);
  padding: 8px 20px;
  position: sticky;
  top: 68px;
  z-index: 990;
  backdrop-filter: blur(8px);
}

.protectionfeetext {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin: 0;
  text-align: center;
}

/* ---- DISCLAIMER / INFO PAGES ---- */
.itemprotectionfeeDiv {
  background: rgba(19,32,48,0.8);
  border: 1px solid rgba(201,168,76,0.2);
  margin: 100px auto 80px;
  padding: 32px;
  border-radius: 16px;
  max-width: 760px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  position: relative;
}

.protectionfeeinforheader {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #c9a84c;
  margin: 0 0 20px;
  position: relative;
  top: 0;
}

.itemprotectionfeeinfor {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 14px;
}

.itemprotectionlist {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.itemprotectionlist li {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ---- ORDERS PANEL ---- */
.js-orders-panel {
  border: 1px solid rgba(201,168,76,0.2) !important;
  border-radius: 12px !important;
  animation: fadeInScale 0.2s ease;
}

/* ---- LOADING SPINNER ---- */
.loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(201,168,76,0.2);
  border-top-color: #c9a84c;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 40px auto;
}

/* ---- FOOTERFLEX2 ---- */
.footerflex2 {
  flex-direction: row;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, #0a1520, #132030);
  height: 56px;
  border-top: 1px solid rgba(201,168,76,0.2);
  z-index: 999;
}

/* ---- RESPONSIVE PRODUCT GRID ---- */
@media (max-width: 768px) {
  .Allproducts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px 12px 100px;
  }

  .picdiv { height: 200px; }
  .imgiteam { height: 100%; }

  .productinformation {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pictureandbuttons {
    min-height: 300px;
    padding: 20px 16px;
  }

  .productdetails {
    padding: 24px 16px;
  }

  .welcome-hero {
    min-height: 50vh;
    padding: 40px 16px 30px;
  }

  .itemprotectionfeeDiv {
    margin: 80px 16px 80px;
    padding: 20px;
  }

  .cartsectiontext {
    bottom: 52px;
  }
}

@media (max-width: 480px) {
  .Allproducts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 12px 10px 90px;
  }

  .picdiv { height: 160px; }

  .iteamheading { font-size: 12px; }

  .Rentbutton, .Buybutton {
    font-size: 11px;
    padding: 6px 0;
    width: 20px;
  }

  .welcome-tagline { font-size: 1.8rem; }
  .welcome-sub { font-size: 13px; }

  .iteamsincartdiv {
    padding: 80px 10px 90px;
    justify-content: center;
  }
}

/* ---- RESPONSIVE MEDIA ---- */
@media screen and (min-width: 1200px) {
  .Allproducts-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 20px 40px 100px;
  }
  .pop {
  position: fixed;
  top: 68px;
  right: 10px;
  background: rgba(19,32,48,0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 16px;
  padding: 16px;
  z-index: 900;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  animation: fadeInScale 0.2s ease;
  height: 70%;
}
.pop-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: #c9a84c;
  margin: 0 0 12px;
  letter-spacing: 0.5px;
  height: 70%;
}

.pop-section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 10px 0 6px;
  height: 70%;
}
.producttypebutton {
  width: 100%;
  padding: 8px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: rgba(255,255,255,0.8);
  margin-bottom: 4px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .Allproducts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
