/* =====================
   ROOT VARIABLES (THEME)
   Vibe: High-End Streetwear / Modern Glass
===================== */
:root {
  --bg-main: #f8f9fa;
  --bg-surface: #ffffff;
  --text-main: #0a0a0a;
  --text-muted: #666666;
  --primary: #0a0a0a;
  --accent: #ccff00; /* Acid green accent for that edgy streetwear vibe */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-pill: 50px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* =====================
   RESET & BASE
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

body, html {
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* =====================
   BUTTONS (Neo-Premium)
===================== */
.btn {
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn.primary:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(204, 255, 0, 0.3);
}

.btn.outline {
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
}

.btn.outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-4px);
}

/* =====================
   HEADER (Glassmorphism)
===================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.logo img {
  height: 42px;
  transition: transform 0.3s;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav a {
  margin: 0 16px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--accent);
  transition: var(--transition);
}

.nav a:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--accent);
  color: var(--primary);
  font-size: 11px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(204, 255, 0, 0.4);
}

/* =====================
   HERO & HOME SECTIONS (INDEX.PHP FIXED)
===================== */
.hero {
  min-height: 100vh;
  padding: 120px 8% 40px; /* Compensate for fixed header */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: radial-gradient(circle at top left, #ffffff 0%, #f0f0f0 100%);
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin: 16px 0;
  letter-spacing: -1px;
}

.hero-text p {
  color: var(--text-muted);
  max-width: 480px;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.tagline {
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Dibuang min-height dan background supaya tak clash dengan grid .hero */
.hero-video {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.floating-glasses {
  width: 620px;
  max-width: 100%;
  animation: floatGlasses 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.15));
  will-change: transform;
}

.sunglasses-section {
  padding: 120px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  background: var(--bg-surface);
}

.floating-sunglasses {
  width: 680px;
  max-width: 100%;
  animation: floatGlasses 7s ease-in-out infinite reverse;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.2));
}

.sunglasses-text h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin: 15px 0 25px;
}

@keyframes floatGlasses {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-20px) rotate(1.5deg); }
}

/* Pages Hero Base (About, Shop, Gallery) */
.shop-hero, .gallery-hero, .about-hero, .contact-hero {
  padding: 140px 8% 60px;
  text-align: center;
  background: var(--bg-surface);
}

/* =====================
   PRODUCTS & GRIDS
===================== */
.product-grid, .gallery-grid {
  padding: 60px 8%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.product-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.product-card h3 {
  margin: 20px 0 8px;
  font-size: 1.2rem;
}

.price {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.badge {
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =====================
   ADMIN & TABLES (Unified & Modern)
===================== */
.cart-page, .payment-page, .success-page, .admin-content {
  padding: 120px 8% 80px;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 30px;
}

th, td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

th {
  background: var(--primary);
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

tr:last-child td { border-bottom: none; }
tr:hover td { background: #fcfcfc; }

/* Status Badges */
.badge.approved { background: #e3f9e5; color: #1f7a33; }
.badge.rejected { background: #ffe5e5; color: #c0392b; }
.badge.pending { background: #fff4e5; color: #b05d06; }

/* =====================
   FORMS & AUTH
===================== */
.auth-page, .delivery-box, .contact-form {
  background: var(--bg-surface);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.auth-page { max-width: 460px; margin: 120px auto; }
.delivery-box { margin-bottom: 30px; }

input, textarea, select {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid #e0e0e0;
  background: #fafafa;
  transition: 0.3s;
  font-family: inherit;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.05);
}

.row { display: flex; gap: 15px; }
.row > * { flex: 1; }

/* =====================
   AWARDS & CERTIFICATES
===================== */
.featured-award {
  padding: 120px 8%;
  background: var(--primary);
  color: #fff;
}

.featured-award.alt {
  background: var(--bg-surface);
  color: var(--primary);
}

.featured-content {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: center;
}

.featured-content img {
  width: 100%;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
  transition: var(--transition);
}

.featured-content img:hover { transform: scale(1.05) rotate(-2deg); }
.featured-award.alt img { filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1)); }

.cert-strip {
  padding: 100px 8%;
  background: var(--primary);
  color: #fff;
  text-align: center;
}

.cert-frame {
  max-width: 1000px;
  margin: 30px auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

.cert-frame img {
  width: 100%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cert-frame:hover img { transform: scale(1.08); }

/* =====================
   BRANCHES
===================== */
.branch-section { padding: 100px 8%; }
.branch-section h2 { text-align: center; margin-bottom: 50px; font-size: 2.5rem; }

.branch-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.branch-list { flex: 1; min-width: 320px; }
.map-container { flex: 1.5; min-width: 320px; border-radius: var(--radius-md); overflow: hidden; }

.branch-card {
  background: var(--bg-surface);
  padding: 25px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

.branch-card:hover {
  background: var(--primary);
  color: white;
  transform: translateX(10px);
  box-shadow: var(--shadow-hover);
}

/* =====================
   ADMIN SIDEBAR LAYOUT
===================== */
.admin-layout { display: flex; min-height: 100vh; }

.sidebar {
  width: 260px;
  background: var(--primary);
  color: white;
  padding: 30px 20px;
  position: sticky;
  top: 0;
  height: 100vh;
}

.sidebar h2 { color: var(--accent); margin-bottom: 30px; letter-spacing: 1px; }

.sidebar a {
  display: block;
  padding: 14px 20px;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.sidebar a:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateX(5px);
}

.main-content { flex: 1; background: var(--bg-main); }

/* =====================
   MODAL (IMAGE VIEWER)
===================== */
#imageModal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
}

#imageModal img {
  max-width: 85%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* =====================
   FOOTER
===================== */
.footer {
  background: var(--bg-surface);
  padding: 80px 8% 40px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 992px) {
  .hero, .sunglasses-section, .featured-content { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-text p, .sunglasses-text p { margin: 0 auto 30px; }
  .floating-glasses, .floating-sunglasses { margin: 0 auto; }
}

@media (max-width: 768px) {
  .header { padding: 16px 5%; }
  .nav { display: none; } /* Mobile menu toggle needed in HTML */
  .hero-text h1 { font-size: 2.5rem; }
  .product-grid, .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
  .admin-layout { flex-direction: column; }
  .sidebar { width: 100%; height: auto; position: static; }
}
/* =========================================
   THEME: ULTRA-PREMIUM / QUIET LUXURY
   Vibe: Flawless, High-End Boutique, Minimalist
========================================= */

:root {
  --bg-pure: #ffffff;
  --bg-soft: #fbfbfb;
  --bg-mute: #f4f4f5;
  --text-dark: #09090b;
  --text-gray: #71717a;
  --border-delicate: #e4e4e7;
  --radius-btn: 50px;
  --radius-card: 20px;
  --transition-smooth: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* =====================
   RESET & BASE
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-pure);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* =====================
   HEADER
===================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.logo img {
  height: 32px;
  opacity: 0.95;
}

.nav a {
  margin: 0 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.6;
}

.nav a:hover {
  opacity: 1;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cart-link {
  position: relative;
  display: inline-block;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--text-dark);
  color: var(--bg-pure);
  font-size: 9px;
  font-weight: 600;
  padding: 3px 6px;
  border-radius: 50%;
}

/* =========================================
   ULTRA HERO – BRIGHT LUXURY (GLASSES)
========================================= */

.ultra-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 8% 80px;

  /* Soft luxury white gradient */
  background: radial-gradient(
    circle at top left,
    #ffffff 0%,
    #f6f6f6 60%,
    #f0f0f0 100%
  );
}

.ultra-hero-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* TEXT SIDE */

.ultra-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease forwards;
}

.ultra-title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 25px;
  color: #000;
  animation: fadeUp 1s ease forwards;
}

.text-gradient {
  background: linear-gradient(45deg, #000000 0%, #777777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ultra-desc {
  font-size: 1.1rem;
  color: #666;
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeUp 1.2s ease forwards;
}

/* BUTTONS */

.ultra-actions {
  display: flex;
  gap: 18px;
  animation: fadeUp 1.4s ease forwards;
}

.btn-ultra-primary,
.btn-ultra-secondary {
  height: 52px;
  padding: 0 38px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
  cursor: pointer;
}

.btn-ultra-primary {
  background: #000;
  color: #fff;
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.btn-ultra-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

.btn-ultra-secondary {
  background: transparent;
  border: 1px solid #e5e5e5;
  color: #000;
}

.btn-ultra-secondary:hover {
  border-color: #000;
  background: #f5f5f5;
}

/* IMAGE SIDE */

.ultra-visual-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ultra-floating-img {
  width: 100%;
  max-width: 580px;
  animation: ultraFloat 8s ease-in-out infinite;
  filter: drop-shadow(0 60px 80px rgba(0,0,0,0.12));
}


/* =========================================
   SUNGLASSES SECTION – SLIGHTLY DARKER
========================================= */

.sunglasses-section {
  position: relative;
  padding: 140px 8%;

  /* Soft darker tone for contrast */
  background: linear-gradient(
    to bottom,
    #f2f2f2 0%,
    #e6e6e6 60%,
    #dddddd 100%
  );
}

.sunglasses-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.03); /* subtle depth */
  pointer-events: none;
}

.sunglasses-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {
  .ultra-title {
    font-size: 4rem;
  }
}

@media (max-width: 992px) {

  .ultra-hero,
  .sunglasses-section {
    padding: 120px 6% 60px;
  }

  .ultra-hero-container,
  .sunglasses-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .ultra-desc {
    margin: 0 auto 40px;
  }

  .ultra-actions {
    justify-content: center;
  }

  .ultra-visual-box {
    order: -1;
  }
}

@media (max-width: 768px) {

  .ultra-title {
    font-size: 2.6rem;
  }

  .ultra-desc {
    font-size: 1rem;
  }

  .ultra-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-ultra-primary,
  .btn-ultra-secondary {
    width: 100%;
    max-width: 320px;
  }

  .ultra-floating-img {
    max-width: 90%;
  }
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ultraFloat {
  0%, 100% {
    transform: translateY(0px) rotate(-1deg);
  }
  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}
/* =========================================
   EYEWEAR CARE SECTION - PREMIUM STYLE
========================================= */

.care-section {
  padding: 140px 8%;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f6f6f6 60%,
    #eeeeee 100%
  );
}

.care-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.care-tag {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #777;
}

.care-title {
  font-size: 3.2rem;
  margin: 20px 0;
  line-height: 1.1;
}

.care-desc {
  color: #666;
  max-width: 450px;
  margin-bottom: 40px;
}

.care-tips {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.care-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.care-icon {
  width: 45px;
  height: 45px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.care-item h4 {
  margin-bottom: 5px;
  font-size: 16px;
}

.care-item p {
  color: #777;
  font-size: 14px;
}

.care-image img {
  width: 520px;
  max-width: 100%;
  filter: drop-shadow(0 60px 80px rgba(0,0,0,0.15));
}

/* Responsive */
@media (max-width: 992px) {
  .care-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .care-desc {
    margin: 0 auto 40px;
  }

  .care-item {
    justify-content: center;
  }
}
/* ===== FORCE RECEIPT STYLE ===== */

.receipt-wrapper {
    max-width: 900px !important;
    margin: 80px auto !important;
    padding: 20px !important;
}

.receipt-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 30px !important;
    margin-bottom: 30px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important;
}

.receipt-title {
    font-size: 28px !important;
    font-weight: 700 !important;
    margin-bottom: 30px !important;
}

.receipt-total {
    font-size: 20px !important;
    font-weight: bold !important;
    margin-top: 10px !important;
}

.status-approved {
    background: #16a34a !important;
    color: white !important;
    padding: 6px 15px !important;
    border-radius: 50px !important;
    font-size: 13px !important;
}

.status-pending {
    background: #f59e0b !important;
    color: white !important;
    padding: 6px 15px !important;
    border-radius: 50px !important;
    font-size: 13px !important;
}

.receipt-image {
    width: 220px !important;
    margin-top: 15px !important;
    border-radius: 12px !important;
    border: 1px solid #eee !important;
}

.customer-box {
    background: #f8f9fa !important;
    padding: 20px !important;
    border-radius: 12px !important;
    margin-top: 20px !important;
}
.receipt-link {
    background: #111;
    color: #fff !important;
    padding: 6px 14px;
    border-radius: 50px;
    margin-left: 10px;
    font-size: 13px;
    transition: 0.3s ease;
}

.receipt-link:hover {
    background: #333;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 300px));
    justify-content: center;   /* Center bila item sikit */
    gap: 30px;
    padding: 40px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* ===== IMAGE FIX SIZE ===== */
.product-card img {
    width: 100%;
    height: 280px;          /* SET SAME HEIGHT */
    object-fit: cover;      /* AUTO CROP FIT */
    border-radius: 15px;
}

/* =========================================
   MOBILE HAMBURGER MENU - QUIET LUXURY
========================================= */

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 2px;
}

/* Mobile Menu Style */
@media (max-width: 768px) {

  .hamburger {
    display: block;
    z-index: 10001;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.05);
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
  }

  .nav a:hover {
    opacity: 1;
  }

  .header-right {
    display: none;
  }
}
.mobile-only { display: none; }

@media (max-width: 768px) {
  .mobile-only { display: block; }
}

/* ================= GLOBAL HEADING SYSTEM ================= */

h1, .page-title, .hero-title, .ultra-title {
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
}

h2 {
  font-weight: 600;
  letter-spacing: -0.5px;
}

.hero-subtext,
.ultra-desc,
.page-desc {
  color: var(--text-gray);
  max-width: 600px;
}

/* HERO SIZE STANDARD */
.ultra-title,
.hero-title {
  font-size: 4rem;
}

/* SHOP / INNER PAGE TITLE */
.shop-hero h1,
.page-title {
  font-size: 3rem;
}

/* MOBILE */
@media (max-width: 768px) {

  .ultra-title,
  .hero-title {
    font-size: 2.5rem;
  }

  .shop-hero h1,
  .page-title {
    font-size: 2rem;
  }

  .ultra-desc,
  .hero-subtext,
  .page-desc {
    margin: 0 auto 30px;
    text-align: center;
  }
}
/* ===== HIDE HAMBURGER ON DESKTOP ===== */
.hamburger {
  display: none !important;
}

/* ===== SHOW ONLY ON MOBILE ===== */
@media (max-width: 768px) {
  .hamburger {
    display: block !important;
  }
}