/* ══════════ STORE PAGE ══════════ */
.hero {
  position: relative;
  height: 60vh;
  min-height: 450px;
  overflow: hidden;
  background: var(--navy);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  left: 80px;
  bottom: 80px;
  background: rgba(255, 255, 255, 0.08);
  padding: 32px;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  z-index: 10;
  transform: translateZ(0);
}

.hero-card h1 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--gold);
}

.hero-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.hero-card p {
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.6;
  opacity: 0.9;
}

.pill {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}

.pill.dark {
  background: var(--navy);
  color: white;
}

.pill.dark:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* Background Words */
.bg-word {
  position: absolute;
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 900;
  opacity: 0.06;
  pointer-events: none;
  color: white;
  white-space: nowrap;
}

.hero-word {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .hero {
    height: 50vh;
  }
  .hero-card {
    left: 20px;
    right: 20px;
    bottom: 40px;
    padding: 24px;
    max-width: none;
  }
  .hero-card h1 {
    font-size: 20px;
  }
  .hero-card h3 {
    font-size: 18px;
  }
  .bg-word {
    font-size: 80px;
  }
}

.store-bar-wrap {
  background: var(--white);
  padding: 16px 60px;
  border-bottom: 1px solid var(--border);
  top: 72px;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.store-bar-wrap strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-right: 4px;
}
.s-ftab {
  padding: 8px 20px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s;
}
.s-ftab:hover {
  border-color: var(--gold);
}
.s-ftab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 700;
}
.store-body {
  padding: 44px 60px 60px;
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.prod-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
  position: relative;
}
.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.13);
}
.p-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  color: var(--white);
  z-index: 2;
}
.pb-sale {
  background: var(--red);
}
.pb-new {
  background: var(--teal);
}
.pb-hot {
  background: #e67e22;
}
.p-img {
  height: 210px;
  background: var(--light);
  overflow: hidden;
  position: relative;
}
.p-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.prod-card:hover .p-img img {
  transform: scale(1.06);
}
.wish-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s;
}
.wish-btn:hover {
  transform: scale(1.15);
}
.p-body {
  padding: 16px;
}
.p-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 5px;
}
.p-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.p-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--muted);
}
.p-stars {
  color: var(--gold);
  letter-spacing: -1px;
}
.p-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.p-now {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
}
.p-old {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}
.p-save {
  font-size: 12px;
  color: var(--red);
  font-weight: 700;
}
.p-add {
  width: 100%;
  padding: 11px;
  background: var(--navy);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  transition: all 0.2s;
}
.p-add:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ================= PROMO BANNER ================= */
.promo-banner {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 100%);
  padding: 60px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  transform: rotate(-15deg);
  pointer-events: none;
}

.pb-txt {
  position: relative;
  z-index: 2;
  flex: 1;
}

.pb-txt h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.pb-txt h3 em {
  color: var(--gold);
  font-style: normal;
  display: inline-block;
  transform: rotate(-2deg);
}

.pb-txt p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(14px, 2vw, 16px);
  max-width: 500px;
  line-height: 1.6;
}

.pb-code {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  padding: 24px 40px;
  border-radius: 16px;
  text-align: center;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.pb-code:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.pb-code span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.pb-code strong {
  font-family: "Inter", monospace;
  font-size: 32px;
  font-weight: 900;
  color: var(--gold3);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 2px;
}

.pb-code small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}

@media (max-width: 900px) {
  .promo-banner {
    flex-direction: column;
    text-align: center;
    padding: 50px 30px;
  }
  .pb-txt p {
    margin: 0 auto;
  }
  .pb-code {
    width: 100%;
    max-width: 350px;
  }
}

.rent-section {
  padding: 60px;
  background: var(--light);
}
.rent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}
.rent-card {
  background: var(--white);
  border-radius: 10px;
  padding: 24px 18px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
}
.rent-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.rent-ico {
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
}
.rent-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.rent-price {
  font-size: 13px;
  color: var(--gold2);
  font-weight: 700;
  margin-bottom: 10px;
}
.rent-btn-s {
  padding: 7px 16px;
  border-radius: 6px;
  border: 1.5px solid var(--navy);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s;
}
.rent-btn-s:hover {
  background: var(--navy);
  color: var(--gold);
}

.nav-cart {
  position: relative;
  cursor: pointer;
  padding: 9px 16px;
  border-radius: 7px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  font-size: 18px;
}
.nav-cart:hover {
  background: var(--muted);
}
.cart-badge {
  position: absolute;
  top: 2px;
  right: 5px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background: white;
  z-index: 1200;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-sidebar.open {
  right: 0;
}
@media (max-width: 450px) {
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
}
.cart-header {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h3 {
  font-family: "Playfair Display", serif;
  color: var(--navy);
}
.cart-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
  background: var(--light);
}
.cs-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--muted);
}
.cs-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin: 15px 0;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}
.cart-checkout-btn {
  width: 100%;
  padding: 15px;
  background: var(--navy);
  color: var(--gold);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

/* ══════════ RESPONSIVE STORE GRID ══════════ */
@media (max-width: 1024px) {
  .store-body {
    padding: 40px 40px;
  }
}
@media (max-width: 768px) {
  .store-body {
    padding: 30px 20px;
  }
  .store-bar-wrap {
    padding: 12px 20px;
  }
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .p-img {
    height: 180px;
  }
  .p-now {
    font-size: 16px;
  }
  .p-name {
    font-size: 13px;
  }
  .p-add {
    padding: 8px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .prod-grid {
    gap: 12px;
  }
  .p-img {
    height: 140px;
  }
  .p-body {
    padding: 12px;
  }
  .p-name {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .p-rating {
    font-size: 10px;
  }
  .p-cat {
    font-size: 9px;
  }
  .p-now {
    font-size: 14px;
  }
  .p-old {
    font-size: 11px;
  }
}
