/* ==================== RESET & BASE ==================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #2a1a0a;
  background: #fff8f0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ==================== ANNOUNCEMENT BAR ==================== */
.announcement-bar {
  background: #E84BA5;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ==================== NAVBAR ==================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(255,248,240,0.95);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(200,150,100,0.15);
}
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.logo span { color: #F28C38; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-custom { color: #E84BA5 !important; opacity: 1 !important; font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.btn-nav {
  background: #E84BA5;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.btn-nav:hover { background: #C73A8E; }
.mobile-menu {
  display: none;
  background: none;
  border: none;
  color: #2a1a0a;
  font-size: 1.6rem;
  cursor: pointer;
}

/* MOBILE NAV */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 24px 40px;
  background: #fff4e8;
  border-bottom: 1px solid rgba(200,150,100,0.15);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==================== HERO ==================== */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #F28C38 0%, #F5C842 50%, #F28C38 100%);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(232,75,165,0.2) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; color: #fff; }
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 1.2rem;
  opacity: 0.65;
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.06em;
}
.btn-primary {
  display: inline-block;
  background: #E84BA5;
  color: #fff;
  padding: 16px 40px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #C73A8E; transform: translateY(-2px); }

/* ==================== SECTIONS ==================== */
.section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  opacity: 0.55;
  margin-bottom: 48px;
  font-size: 1rem;
}

/* ==================== CUSTOM TEE MODAL ==================== */
.custom-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 1200;
}
.custom-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff4e8;
  border: 1px solid rgba(200,150,100,0.15);
  border-radius: 16px;
  padding: 48px 40px;
  width: 90%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1201;
  text-align: center;
}
.custom-form .form-group { text-align: left; }
.custom-form .form-row { text-align: left; }
.custom-modal-alt {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(200,150,100,0.2);
  text-align: center;
}
.custom-modal-alt p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 10px;
}
.btn-facebook-alt {
  display: inline-block;
  padding: 10px 24px;
  background: #1877F2;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-facebook-alt:hover { background: #0d65d9; }
.design-note-box {
  background: rgba(242,140,56,0.08);
  border: 1px dashed rgba(242,140,56,0.35);
  border-radius: 10px;
  padding: 16px;
}
.design-note-box label { margin-bottom: 6px; }
.design-note {
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.85;
  margin-top: 4px;
}
.design-note a { color: #F28C38; text-decoration: underline; }
.custom-modal-overlay.open, .custom-modal.open { display: block; }
.custom-modal-icon { font-size: 2.5rem; display: block; margin-bottom: 16px; }
.custom-modal h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.custom-modal-content p {
  font-size: 0.95rem;
  opacity: 0.6;
  line-height: 1.7;
  margin-bottom: 24px;
}
.btn-facebook {
  display: inline-block;
  background: #E84BA5;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.btn-facebook:hover { background: #C73A8E; transform: translateY(-2px); }
.custom-modal-note {
  font-size: 0.8rem !important;
  opacity: 0.35 !important;
  margin-bottom: 0 !important;
}

/* ==================== CATEGORY GRID ==================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.category-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(200,150,100,0.15);
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(232,75,165,0.2);
}
.category-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.category-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.category-card:hover .category-img-wrap img { transform: scale(1.08); }
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.category-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
}
.category-label h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.category-label p {
  font-size: 0.9rem;
  opacity: 0.6;
}
.category-arrow {
  display: inline-block;
  margin-top: 12px;
  font-size: 1.4rem;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
}
.category-card:hover .category-arrow { opacity: 1; transform: translateX(6px); }

/* ==================== PAGE HEADER ==================== */
.page-header {
  text-align: center;
  padding: 60px 24px 20px;
  max-width: 800px;
  margin: 0 auto;
}
.breadcrumb {
  display: inline-block;
  font-size: 0.85rem;
  opacity: 0.5;
  margin-bottom: 20px;
  transition: opacity 0.2s;
}
.breadcrumb:hover { opacity: 1; }
.page-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.page-header p {
  font-size: 1.05rem;
  opacity: 0.5;
}

/* ==================== ACTIVE NAV ==================== */
.nav-links a.active { opacity: 1; color: #E84BA5; }

/* ==================== PRODUCT GRID ==================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: #fff0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid rgba(200,150,100,0.1);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(232,75,165,0.15);
}
.product-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  background: #fff;
  transition: transform 0.4s;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-img {
  background: #fff;
}
.placeholder-img {
  background: linear-gradient(135deg, #ffecd2, #ffd6a0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(200,150,100,0.25);
}
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #E84BA5;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-info { padding: 20px; }
.product-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.product-desc {
  font-size: 0.85rem;
  opacity: 0.5;
  margin-bottom: 10px;
  line-height: 1.5;
}
.price {
  font-size: 1.15rem;
  font-weight: 600;
  color: #E84BA5;
  margin-bottom: 14px;
}
.btn-order {
  display: inline-block;
  background: transparent;
  color: #2a1a0a;
  border: 1px solid rgba(200,150,100,0.25);
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.btn-order:hover {
  background: #E84BA5;
  border-color: #E84BA5;
}

/* ==================== SIZE GUIDE ==================== */
.size-guide { text-align: center; }
.size-table-wrap { display: flex; justify-content: center; }
.size-table {
  border-collapse: collapse;
  min-width: 360px;
}
.size-table th, .size-table td {
  padding: 12px 28px;
  text-align: center;
  border-bottom: 1px solid rgba(200,150,100,0.15);
}
.size-table th {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  opacity: 0.6;
}
.size-table td { font-size: 0.95rem; }

/* ==================== ABOUT ==================== */
.about { text-align: center; }
.about-content { max-width: 640px; margin: 0 auto; }
.about-content p { opacity: 0.7; margin-bottom: 20px; font-size: 1.05rem; }
.social-links { margin-top: 24px; }
.btn-social {
  display: inline-block;
  background: #E84BA5;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}
.btn-social:hover { opacity: 0.85; }

/* ==================== CONTACT CARDS ==================== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.contact-card {
  background: #fff0e0;
  border: 1px solid rgba(200,150,100,0.15);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.contact-card:hover { transform: translateY(-4px); border-color: rgba(232,75,165,0.35); }
.contact-icon { font-size: 1.8rem; display: block; margin-bottom: 12px; }
.contact-card strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.5; margin-bottom: 8px; }
.contact-card a { color: #E84BA5; font-size: 0.95rem; word-break: break-all; }

/* ==================== ORDER MODAL ==================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
}
.order-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff4e8;
  border: 1px solid rgba(200,150,100,0.15);
  border-radius: 16px;
  padding: 40px;
  width: 90%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1001;
}
.modal-overlay.open, .order-modal.open { display: block; }
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #2a1a0a;
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.modal-close:hover { opacity: 1; }
.order-modal h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.modal-subtitle { opacity: 0.5; font-size: 0.9rem; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.6;
  margin-bottom: 6px;
}
.form-group .optional { font-weight: 400; opacity: 0.5; text-transform: none; }

.total-display {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #E84BA5;
  padding: 10px 0;
}

.form-status { margin-bottom: 14px; font-size: 0.9rem; border-radius: 8px; padding: 0; transition: all 0.3s; }
.form-status.success { background: rgba(34,197,94,0.1); color: #22c55e; padding: 12px 16px; }
.form-status.error { background: rgba(239,68,68,0.1); color: #ef4444; padding: 12px 16px; }
.form-status.error a { color: #ef4444; text-decoration: underline; }

.btn-submit { width: 100%; padding: 16px; font-size: 1rem; }
.form-note { text-align: center; font-size: 0.8rem; opacity: 0.4; margin-top: 14px; }

.payment-details {
  background: rgba(232,75,165,0.08);
  border: 1px solid rgba(232,75,165,0.2);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  line-height: 1.7;
}
/* ==================== CART ICON ==================== */
.cart-icon-btn {
  position: relative;
  background: none;
  border: none;
  color: #2a1a0a;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px;
  transition: opacity 0.2s;
}
.cart-icon-btn:hover { opacity: 0.7; }
.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #E84BA5;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

/* ==================== CART DRAWER ==================== */
#cartOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 1100;
}
#cartOverlay.open { display: block; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: #fff4e8;
  border-left: 1px solid rgba(200,150,100,0.15);
  z-index: 1101;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}
.cart-drawer.open { right: 0; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(200,150,100,0.15);
}
.cart-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.cart-close {
  background: none;
  border: none;
  color: #2a1a0a;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.cart-close:hover { opacity: 1; }

.cart-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { text-align: center; opacity: 0.4; padding: 40px 0; font-size: 0.95rem; }

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(200,150,100,0.15);
  gap: 12px;
}
.cart-item-info h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.cart-item-meta { font-size: 0.8rem; opacity: 0.5; }
.cart-item-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.qty-controls { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  background: rgba(200,150,100,0.15);
  border: none;
  color: #2a1a0a;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.qty-btn:hover { background: rgba(200,150,100,0.25); }
.qty-value { font-size: 0.9rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-subtotal { font-size: 0.9rem; font-weight: 600; color: #E84BA5; }
.cart-remove {
  background: none;
  border: none;
  color: #2a1a0a;
  opacity: 0.3;
  cursor: pointer;
  font-size: 0.85rem;
  transition: opacity 0.2s, color 0.2s;
}
.cart-remove:hover { opacity: 1; color: #E84BA5; }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(200,150,100,0.15);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cart-total-label { font-size: 1rem; font-weight: 600; }
.cart-total-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #E84BA5;
}

/* ==================== SIZE SELECT ON CARDS ==================== */
.size-select {
  background: rgba(200,150,100,0.15);
  border: 1px solid rgba(200,150,100,0.2);
  border-radius: 6px;
  color: #2a1a0a;
  padding: 6px 10px;
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  margin-bottom: 10px;
  width: 100%;
  transition: border-color 0.2s;
}
.size-select:focus { outline: none; border-color: #E84BA5; }
.size-select option { background: #fff8f0; }

.product-buttons { display: flex; gap: 8px; }
.btn-add-cart {
  flex: 1;
  display: inline-block;
  background: #E84BA5;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-add-cart:hover { background: #C73A8E; }

.shake {
  animation: shake 0.4s ease;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* ==================== CART TOAST ==================== */
.cart-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #ffecd2;
  border: 1px solid rgba(232,75,165,0.35);
  color: #2a1a0a;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.9rem;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.cart-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ==================== CART SUMMARY IN MODAL ==================== */
.cart-summary-box {
  background: rgba(200,150,100,0.08);
  border: 1px solid rgba(200,150,100,0.15);
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 6px;
}
.cart-summary-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(200,150,100,0.08);
}
.cart-summary-line small { opacity: 0.5; }
.cart-summary-total {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 0;
  font-size: 1rem;
  color: #E84BA5;
}

/* ==================== UPLOAD AREA ==================== */
.upload-area {
  position: relative;
  border: 2px dashed rgba(232,75,165,0.3);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
  cursor: pointer;
}
.upload-area:hover { border-color: rgba(232,75,165,0.45); }
.file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  text-align: center;
}
.upload-icon { font-size: 2rem; margin-bottom: 8px; }
.upload-placeholder p { font-size: 0.9rem; opacity: 0.6; margin-bottom: 4px; }
.upload-placeholder small { font-size: 0.75rem; opacity: 0.35; }
.upload-preview {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 12px;
  gap: 10px;
}
.upload-preview img {
  max-height: 180px;
  max-width: 100%;
  border-radius: 8px;
  object-fit: contain;
}
.upload-remove {
  background: rgba(239,68,68,0.15);
  color: #ef4444;
  border: none;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  z-index: 3;
  position: relative;
  transition: background 0.2s;
}
.upload-remove:hover { background: rgba(239,68,68,0.25); }

/* ==================== IMAGE LIGHTBOX ==================== */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
  z-index: 2000;
  cursor: zoom-out;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: lightboxIn 0.25s ease;
}
@keyframes lightboxIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 2001;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s, background 0.2s;
  z-index: 2001;
}
.lightbox-nav:hover { opacity: 1; background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.product-img img { cursor: zoom-in; }

.payment-details strong { color: #E84BA5; }
.payment-details p { margin-bottom: 4px; }
.qr-code-wrap {
  text-align: center;
  margin-top: 12px;
}
.qr-code-img {
  max-width: 220px;
  border-radius: 10px;
  border: 2px solid rgba(200,150,100,0.2);
  background: #fff;
  padding: 8px;
}

/* ==================== CONTACT (legacy) ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-block { display: flex; flex-direction: column; gap: 24px; padding-top: 8px; }
.contact-item strong { display: block; margin-bottom: 4px; font-size: 0.95rem; }
.contact-item a {
  color: #E84BA5;
  font-size: 1rem;
  transition: opacity 0.2s;
}
.contact-item a:hover { opacity: 0.8; }

.order-form { display: flex; flex-direction: column; gap: 14px; }
.order-form input,
.order-form select,
.order-form textarea {
  background: #fff0e0;
  border: 1px solid rgba(200,150,100,0.2);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.95rem;
  color: #2a1a0a;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}
.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: none;
  border-color: #E84BA5;
}
.order-form select { cursor: pointer; }
.order-form option { background: #fff8f0; }

/* ==================== FOOTER ==================== */
.footer {
  border-top: 1px solid rgba(200,150,100,0.15);
  padding: 40px;
  text-align: center;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.footer-logo span { color: #F28C38; }
.footer p { opacity: 0.5; font-size: 0.85rem; margin-bottom: 12px; }
.footer-links { display: flex; justify-content: center; gap: 24px; }
.footer-links a {
  font-size: 0.85rem;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 1; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .nav-links { display: none; }
  .mobile-menu { display: block; }
  .btn-nav { display: none; }
  .nav-actions .btn-nav { display: none; }
  .section { padding: 60px 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { min-height: 60vh; }
  .category-grid { grid-template-columns: 1fr; }
  .category-label h3 { font-size: 1.3rem; }
  .contact-cards { grid-template-columns: 1fr; max-width: 400px; }
  .order-modal { padding: 28px 20px; width: 95%; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
