
:root {
  --navy: #333954;
  --navy-deep: #1e2235;
  --grey: #7f8080;
  --black: #0D0D0D;
  --white: #F9F9F9;
  
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Jost', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}


*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  width: 100%; overflow-x: hidden;
  background-color: var(--black); color: var(--white);
  font-family: var(--sans); font-weight: 300; -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }


.eyebrow {
  font-family: var(--sans); font-weight: 500; letter-spacing: 0.35em; text-transform: uppercase;
  font-size: 0.72rem; color: var(--grey); margin-bottom: 1.2rem;
}
.serif-title {
  font-family: var(--serif); font-weight: 600; line-height: 1.05;
  font-size: clamp(2.6rem, 5vw, 4.2rem); letter-spacing: 0.01em; color: var(--white);
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}
.serif-title.big { font-size: clamp(2.8rem, 7vw, 6rem); text-shadow: none; }


.btn-primary {
  display: inline-block; font-family: var(--sans); font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; font-size: 0.78rem; padding: 1rem 2.4rem; color: var(--white);
  border: 1px solid rgba(249, 249, 249, 0.4); border-radius: 50px;
  background: rgba(13, 13, 13, 0.4); backdrop-filter: blur(8px); transition: all 0.4s var(--ease);
}
.btn-primary:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-primary.full { width: 100%; text-align: center; cursor: pointer; }


.site-nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.8rem 4vw; transition: background 0.4s var(--ease), padding 0.4s var(--ease);
}
.site-nav.scrolled {
  background: rgba(13, 13, 13, 0.85); backdrop-filter: blur(20px);
  padding: 1rem 4vw; border-bottom: 1px solid rgba(249, 249, 249, 0.05);
}

.header-logo-img { height: 40px; width: auto; object-fit: contain; }
.footer-logo-img { height: 38px; width: auto; object-fit: contain; }

.nav-links { display: flex; gap: 2.2rem; }
.nav-links a {
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(249, 249, 249, 0.8); transition: color 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.6rem 1.5rem; border: 1px solid rgba(249, 249, 249, 0.4);
  border-radius: 50px; transition: all 0.3s var(--ease);
}
.nav-cta:hover { background: var(--white); color: var(--black); }



.section { position: relative; width: 100%; min-height: 100vh; display: flex; align-items: center; padding: 12vh 6vw; }
.bg-navy { background-color: var(--navy); }
.bg-black { background-color: var(--black); }


.hero { flex-direction: column; justify-content: center; text-align: center; background: linear-gradient(135deg, var(--black) 0%, var(--navy) 100%); }
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(249,249,249,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(249,249,249,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, #000 40%, transparent 80%); -webkit-mask-image: radial-gradient(circle at center, #000 40%, transparent 80%);
}
.hero-title {
  font-family: var(--serif); font-weight: 700; font-size: clamp(3.8rem, 15vw, 12rem);
  letter-spacing: 0.05em; line-height: 0.95;
  background: linear-gradient(180deg, #ffffff 30%, var(--grey) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent; position: relative; z-index: 2;
}
.hero-sub { font-size: clamp(1rem, 1.8vw, 1.25rem); color: rgba(249, 249, 249, 0.7); margin: 1.5rem auto 2.5rem; max-width: 46ch; position: relative; z-index: 2;}
.hero-sub span { color: var(--white); font-weight: 500; }


.product-section { position: relative; overflow: hidden; }
.ps__grid { position: relative; z-index: 10; width: 100%; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; }
.product-section--reverse .ps__grid .section-copy { margin-left: auto; }
.section-copy { max-width: 480px; }


.product-detail { width: 100%; padding: 12vh 6vw; display: flex; justify-content: center; align-items: center; border-bottom: 1px solid rgba(249,249,249,0.05); }
.detail-container { width: 100%; max-width: 1100px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center; }
.product-detail.reverse .detail-container { grid-template-columns: 1fr 1.2fr; }
.product-detail.reverse .detail-copy { order: 2; }
.product-detail.reverse .detail-specs { order: 1; }

.detail-body { font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 1.8rem); line-height: 1.6; color: rgba(249, 249, 249, 0.95); }
.spec-list { margin-top: 0; }
.spec-list li { font-size: 0.95rem; padding: 1rem 0; color: rgba(249, 249, 249, 0.7); border-bottom: 1px solid rgba(249, 249, 249, 0.1); display: flex; align-items: center; }
.spec-list li::before { content: ""; display: inline-block; width: 6px; height: 6px; background: var(--grey); border-radius: 50%; margin-right: 15px; }


.section-bg-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; filter: brightness(0.75) contrast(1.15) saturate(1.1); }
.section-video-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13, 13, 13, 0.85) 0%, rgba(33, 39, 61, 0.6) 40%, transparent 100%); z-index: 2; pointer-events: none; }
.product-section--reverse .section-video-overlay { background: linear-gradient(270deg, rgba(13, 13, 13, 0.85) 0%, rgba(33, 39, 61, 0.6) 40%, transparent 100%); }


.about { padding: 12vh 6vw; border-top: 1px solid rgba(249,249,249,0.05); background: var(--black); }
.about-inner { width: 100%; max-width: 1100px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin: 4rem 0; }
.about-block h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 500; margin-bottom: 1rem; color: var(--white); }
.about-block p { color: rgba(249,249,249,0.65); line-height: 1.8; font-size: 0.96rem; }


.franchise-contact { padding: 12vh 6vw; border-top: 1px solid rgba(249,249,249,0.05); background: linear-gradient(180deg, var(--black) 0%, var(--navy-deep) 100%); }
.fc-grid { width: 100%; max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.perks-list { margin-top: 2rem; }
.perks-list li { position: relative; padding: 0.8rem 0 0.8rem 1.8rem; color: rgba(249,249,249,0.7); border-bottom: 1px solid rgba(249,249,249,0.04); }
.perks-list li::before { content: "—"; position: absolute; left: 0; color: var(--grey); }

.contact-form { margin-top: 2rem; background: rgba(249,249,249,0.02); padding: 2.5rem; border-radius: 8px; border: 1px solid rgba(249,249,249,0.03); }
.field { position: relative; margin-bottom: 2rem; }
.field input, .field textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(249,249,249,0.2); padding: 0.8rem 0 0.4rem; color: var(--white); font-family: var(--sans); font-size: 1rem; outline: none; resize: none; }
.field label { position: absolute; left: 0; top: 0.8rem; color: var(--grey); transition: all 0.3s var(--ease); pointer-events: none; }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label { top: -0.8rem; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); }


input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--navy-deep) inset !important;
  -webkit-text-fill-color: var(--white) !important;
  transition: background-color 5000s ease-in-out 0s;
}


.site-footer { padding: 8vh 6vw 4vh; border-top: 1px solid rgba(249,249,249,0.05); background: #05060c; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1100px; margin: 0 auto; padding-bottom: 4rem; }
.footer-col h4 { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); margin-bottom: 1.4rem; }
.footer-col a { display: block; color: rgba(249,249,249,0.55); font-size: 0.9rem; padding: 0.4rem 0; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-base { max-width: 1100px; margin: 2rem auto 0; display: flex; justify-content: space-between; color: var(--grey); font-size: 0.8rem; border-top: 1px solid rgba(249,249,249,0.05); padding-top: 2rem; }


.shop-header { padding: 5vh 6vw; }
.shop-grid-container { padding: 5vh 6vw 15vh; width: 100%; max-width: 1200px; margin: 0 auto; }
.shop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3rem; }

.product-card { background: rgba(249, 249, 249, 0.02); border: 1px solid rgba(249, 249, 249, 0.05); border-radius: 8px; overflow: hidden; transition: transform 0.4s var(--ease), border-color 0.4s var(--ease); }
.product-card:hover { transform: translateY(-5px); border-color: rgba(249, 249, 249, 0.2); }

.product-img-box { width: 100%; height: 300px; overflow: hidden; position: relative; }
.product-info { padding: 2rem; text-align: center; }
.product-title { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 0.5rem; color: var(--white); }
.product-price { font-family: var(--sans); font-size: 1.1rem; font-weight: 400; color: var(--grey); margin-bottom: 1.5rem; }


.auth-modal { position: fixed; inset: 0; z-index: 999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); }
.auth-modal.active { opacity: 1; pointer-events: auto; }

.auth-modal-overlay { position: absolute; inset: 0; background: rgba(13, 13, 13, 0.85); backdrop-filter: blur(10px); }
.auth-modal-content { position: relative; z-index: 1000; background: var(--navy-deep); width: 90%; max-width: 450px; padding: 3rem; border-radius: 12px; border: 1px solid rgba(249, 249, 249, 0.1); transform: translateY(30px); transition: transform 0.4s var(--ease); }
.auth-modal.active .auth-modal-content { transform: translateY(0); }

.close-modal { position: absolute; top: 1rem; right: 1.5rem; background: none; border: none; color: var(--grey); font-size: 2rem; cursor: pointer; transition: color 0.3s var(--ease); }
.close-modal:hover { color: var(--white); }


.dashboard-wrapper {
  display: flex; align-items: flex-start; min-height: 100vh;
  padding-top: 85px; background: var(--black); width: 100%;
}
.dash-sidebar {
  width: 280px; flex-shrink: 0; background: #0a0b10; border-right: 1px solid rgba(249, 249, 249, 0.05);
  padding: 2rem; position: sticky; top: 85px; height: calc(100vh - 85px); overflow-y: auto; z-index: 50;
}
.user-profile-badge { display: flex; align-items: center; gap: 1rem; margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(249, 249, 249, 0.1); }
.avatar {
  width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, #c3a059 0%, #8e6c27 100%);
  color: #111; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.2rem; font-weight: 700; flex-shrink: 0;
}
.dash-nav { display: flex; flex-direction: column; gap: 1rem; }
.dash-nav a { padding: 0.8rem 1rem; border-radius: 6px; font-size: 0.95rem; color: rgba(249, 249, 249, 0.6); transition: all 0.3s var(--ease); }
.dash-nav a:hover, .dash-nav a.active { background: rgba(249, 249, 249, 0.05); color: var(--white); }

.dash-main { flex-grow: 1; padding: 3rem 4vw 5rem; display: block; width: calc(100% - 280px); margin: 0; }

.product-actions { display: flex; gap: 0.8rem; align-items: center; justify-content: center; margin-top: 1rem; }
.btn-primary.full { flex-grow: 1; margin: 0; }
.icon-btn { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; flex-shrink: 0; background: rgba(13, 13, 13, 0.4); border: 1px solid rgba(249, 249, 249, 0.4); border-radius: 50px; color: var(--white); cursor: pointer; transition: all 0.3s var(--ease); }
.icon-btn:hover { background: #c3a059; color: #111; border-color: #c3a059; }


.reward-section { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin: 2rem 0 4rem; }
.gift-card { background: linear-gradient(135deg, #e3c886 0%, #a8843c 100%); border-radius: 12px; padding: 2px; box-shadow: 0 10px 30px rgba(195, 160, 89, 0.15); transition: opacity 0.5s ease;}
.loyalty-card { background: linear-gradient(135deg, rgba(249,249,249,0.1) 0%, rgba(249,249,249,0.02) 100%); box-shadow: none; }
.elite-card { background: linear-gradient(135deg, #c3a059 0%, #685223 100%); }

.gift-card-content { background: linear-gradient(135deg, #d4b56c 0%, #b8913b 100%); border-radius: 10px; padding: 2.5rem 2rem; height: 100%; }

.countdown-timer { display: flex; gap: 0.8rem; margin-bottom: 1.5rem; }
.time-box { background: rgba(17, 17, 17, 0.8); color: #c3a059; padding: 0.5rem 0.8rem; border-radius: 8px; text-align: center; min-width: 55px; box-shadow: inset 0 2px 5px rgba(0,0,0,0.5); }
.time-box span { display: block; font-family: var(--sans); font-size: 1.4rem; font-weight: 600; line-height: 1.2; }
.time-box small { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(249, 249, 249, 0.7); }

.voucher-code { display: inline-flex; align-items: center; background: #111; padding: 0.5rem 0.5rem 0.5rem 1.5rem; border-radius: 50px; gap: 1rem; }
.voucher-code span { font-family: var(--sans); font-weight: 500; color: #c3a059; letter-spacing: 0.1em; }
.copy-btn { background: #c3a059; color: #111; border: none; padding: 0.5rem 1.2rem; border-radius: 50px; font-weight: 500; cursor: pointer; transition: opacity 0.3s; }
.copy-btn:hover { opacity: 0.8; }

.progress-container { margin-top: 1rem; }
.progress-bar-bg { width: 100%; height: 8px; background: rgba(249,249,249,0.1); border-radius: 50px; overflow: hidden; margin-bottom: 0.5rem; }
.progress-bar-fill { height: 100%; background: #c3a059; border-radius: 50px; transition: width 1s ease-out; }
.progress-labels { display: flex; justify-content: space-between; font-size: 0.8rem; color: rgba(249,249,249,0.6); text-transform: uppercase; letter-spacing: 0.1em; }

.privilege-box { background: rgba(249, 249, 249, 0.02); border: 1px solid rgba(249, 249, 249, 0.05); border-radius: 12px; padding: 3rem 2rem; }
.dash-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 2rem; }


.floating-vault-btn { position: fixed; bottom: 2rem; right: 2rem; background: linear-gradient(135deg, #1e2235 0%, #0a0b10 100%); border: 1px solid rgba(195, 160, 89, 0.4); color: #c3a059; padding: 1rem 1.5rem; border-radius: 50px; font-family: var(--sans); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.8rem; cursor: pointer; z-index: 100; box-shadow: 0 10px 30px rgba(0,0,0,0.8); display: flex; align-items: center; gap: 0.8rem; transition: all 0.3s var(--ease); }
.floating-vault-btn:hover { background: #c3a059; color: #111; }
.vault-count { background: #c3a059; color: #111; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: 600; }
.floating-vault-btn:hover .vault-count { background: #111; color: #c3a059; }

.vault-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(8px); z-index: 1000; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); }
.vault-drawer { position: fixed; top: 0; right: -450px; width: 100%; max-width: 450px; height: 100vh; background: var(--navy-deep); border-left: 1px solid rgba(195, 160, 89, 0.2); z-index: 1001; display: flex; flex-direction: column; transition: right 0.4s var(--ease); box-shadow: -10px 0 30px rgba(0,0,0,0.5); }
.vault-drawer.active { right: 0; }
.vault-overlay.active { opacity: 1; pointer-events: auto; }

.vault-header { padding: 2rem; border-bottom: 1px solid rgba(249,249,249,0.05); display: flex; justify-content: space-between; align-items: center; }
.close-vault { background: none; border: none; color: var(--grey); font-size: 2rem; cursor: pointer; transition: color 0.3s; }
.close-vault:hover { color: #c3a059; }

.vault-items-container { flex-grow: 1; overflow-y: auto; padding: 2rem; }
.vault-empty { text-align: center; color: var(--grey); font-style: italic; margin-top: 2rem; }

.vault-item { display: flex; justify-content: space-between; align-items: center; background: rgba(249,249,249,0.02); border: 1px solid rgba(249,249,249,0.05); padding: 1rem; border-radius: 8px; margin-bottom: 1rem; }
.vault-item-info h4 { font-family: var(--serif); font-size: 1.1rem; color: var(--white); margin-bottom: 0.3rem; }
.vault-item-info p { color: #c3a059; font-size: 0.9rem; }


.vault-item-actions { display: flex; align-items: center; gap: 1rem; }
.vault-item-qty { display: flex; align-items: center; gap: 0.5rem; background: rgba(249,249,249,0.05); padding: 0.2rem 0.5rem; border-radius: 5px; }
.qty-btn { background: none; border: none; color: #c3a059; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { color: var(--white); }
.qty-text { color: var(--white); font-size: 0.9rem; font-family: var(--sans); min-width: 15px; text-align: center; }

.remove-item-btn { background: none; border: none; color: #e0a09f; font-size: 0.8rem; cursor: pointer; text-transform: uppercase; letter-spacing: 0.1em; }
.remove-item-btn:hover { color: #fff; }

.vault-footer { padding: 2rem; border-top: 1px solid rgba(249,249,249,0.05); background: #0a0b10; }
.vault-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; color: var(--white); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.85rem;}


.dash-section { display: none; width: 100%; }
.dash-section.active { display: block; animation: fadeIn 0.4s ease-out forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.order-card { background: rgba(249, 249, 249, 0.02); border: 1px solid rgba(249, 249, 249, 0.05); padding: 1.5rem 2rem; border-radius: 8px; margin-bottom: 1.5rem; }
.order-header { display: flex; justify-content: space-between; margin-bottom: 1rem; border-bottom: 1px solid rgba(249,249,249,0.05); padding-bottom: 1rem; }
.order-id { color: #c3a059; font-family: var(--sans); letter-spacing: 0.1em; font-size: 0.85rem; text-transform: uppercase;}
.order-status { font-size: 0.85rem; font-weight: 500; padding: 0.2rem 0.8rem; border-radius: 50px; }
.order-status.delivered { background: rgba(159, 224, 176, 0.1); color: #9fe0b0; }
.order-status.processing { background: rgba(195, 160, 89, 0.1); color: #c3a059; }
.order-details { display: flex; justify-content: space-between; font-family: var(--serif); font-size: 1.3rem; margin-bottom: 0.5rem; }
.order-price { color: #c3a059; }
.order-date { color: var(--grey); font-size: 0.85rem; }

.dash-form { background: none; border: none; padding: 0; margin-top: 0;}
.dash-form select { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(249,249,249,0.2); padding: 0.8rem 0 0.4rem; color: var(--white); font-family: var(--sans); font-size: 1rem; outline: none; appearance: none; }
.dash-form select option { background: var(--navy-deep); color: var(--white); }


@media (max-width: 900px) {
  .dashboard-wrapper { display: flex; flex-direction: column; padding-top: 85px; }
  .dash-sidebar { width: 100%; border-right: none; border-bottom: 1px solid rgba(249, 249, 249, 0.05); position: static; height: auto; padding: 1.5rem 5vw; z-index: 1;}
  .dash-main { width: 100%; margin-left: 0; padding: 2rem 5vw; }
  .reward-section { grid-template-columns: 1fr; }
  .ps__grid, .fc-grid, .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid { grid-template-columns: 1fr; }
  .product-section--reverse .ps__grid { direction: ltr; }
  .detail-container { grid-template-columns: 1fr !important; gap: 2rem; }
  .product-detail.reverse .detail-copy { order: 1; }
  .product-detail.reverse .detail-specs { order: 2; }
  .section-video-overlay, .product-section--reverse .section-video-overlay { background: linear-gradient(180deg, rgba(13, 13, 13, 0.85) 0%, rgba(33, 39, 61, 0.6) 60%, transparent 100%); }
}


.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.stat-card { background: rgba(249, 249, 249, 0.02); border: 1px solid rgba(249, 249, 249, 0.05); padding: 1.5rem; border-radius: 12px; }

.moq-badge {
  position: absolute; top: 1rem; right: 1rem; background: #c3a059; color: #111;
  padding: 0.3rem 0.8rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; font-family: var(--sans); letter-spacing: 0.05em;
}

.franchise-table-wrapper { overflow-x: auto; background: rgba(249, 249, 249, 0.02); border-radius: 12px; border: 1px solid rgba(249, 249, 249, 0.05); }
.franchise-table { width: 100%; border-collapse: collapse; text-align: left; }
.franchise-table th, .franchise-table td { padding: 1.2rem 1.5rem; border-bottom: 1px solid rgba(249, 249, 249, 0.05); }
.franchise-table th { font-family: var(--serif); color: #c3a059; font-size: 1.1rem; }
.franchise-table td { font-family: var(--sans); font-size: 0.95rem; color: var(--white); }



.face-capture-container {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin-bottom: 2rem; padding: 1.5rem; background: rgba(249, 249, 249, 0.02);
  border: 1px dashed rgba(195, 160, 89, 0.3); border-radius: 12px;
}
.camera-feed-box {
  width: 120px; height: 120px; border-radius: 50%; border: 2px solid #c3a059;
  margin-bottom: 1rem; overflow: hidden; background: #000; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.camera-feed-box video {
  width: 100%; height: 100%; object-fit: cover;
}
.scan-line {
  position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: rgba(195, 160, 89, 0.8);
  box-shadow: 0 0 10px #c3a059; animation: scan 2s linear infinite; display: none;
}
@keyframes scan { 0% { top: 0; } 50% { top: 100%; } 100% { top: 0; } }


#franRegisterView::-webkit-scrollbar { width: 6px; }
#franRegisterView::-webkit-scrollbar-track { background: rgba(249,249,249,0.02); border-radius: 10px; }
#franRegisterView::-webkit-scrollbar-thumb { background: rgba(195, 160, 89, 0.4); border-radius: 10px; }
#franRegisterView::-webkit-scrollbar-thumb:hover { background: rgba(195, 160, 89, 0.8); }


.location-modal-overlay {
  position: fixed; inset: 0; background: rgba(13, 13, 13, 0.95); backdrop-filter: blur(8px);
  z-index: 99999; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
}
.location-modal-overlay.active { opacity: 1; pointer-events: auto; }
.location-modal-content {
  background: var(--navy-deep); width: 90%; max-width: 420px; padding: 3rem 2rem;
  border-radius: 16px; border: 1px solid rgba(195, 160, 89, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8); transform: translateY(30px); transition: transform 0.4s var(--ease);
}
.location-modal-overlay.active .location-modal-content { transform: translateY(0); }

#openStoreLoginBtn { border-color: #c3a059; color: #c3a059; }
#openStoreLoginBtn:hover { background: #c3a059; color: #111; }


.mobile-menu-btn { display: none; background: transparent; border: none; color: var(--white); cursor: pointer; z-index: 1000; padding: 5px; }
.mobile-only-link { display: none !important; }

@media (max-width: 900px) {
    .mobile-menu-btn { display: block; margin-left: auto; }
    .desktop-only-cta { display: none !important; }
    .mobile-only-link { display: block !important; }
    

    .nav-links { 
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; 
        background: rgba(10, 11, 16, 0.98); backdrop-filter: blur(20px);
        flex-direction: column; padding: 100px 2rem 2rem; gap: 0.5rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
        box-shadow: -10px 0 30px rgba(0,0,0,0.8); z-index: 999; display: flex;
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.1rem; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); width: 100%; }
    
  
    .dash-sidebar { 
        position: fixed !important; top: 0 !important; left: -100% !important; 
        width: 280px !important; height: 100vh !important; 
        background: rgba(10, 11, 16, 0.98) !important; backdrop-filter: blur(20px);
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important; z-index: 999 !important; 
        padding-top: 100px !important; box-shadow: 10px 0 30px rgba(0,0,0,0.8) !important;
        border-right: 1px solid rgba(195,160,89,0.2) !important;
    }
    .dash-sidebar.active { left: 0 !important; display: block !important; }
    
  
    .dashboard-wrapper { flex-direction: column; padding-top: 80px; }
    .dash-main { width: 100% !important; padding: 2rem 5vw !important; margin: 0 !important; }
    
  
    .serif-title { font-size: 2.2rem !important; }
    .serif-title.big { font-size: 2.8rem !important; }
    .hero-title { font-size: clamp(3.2rem, 12vw, 5rem) !important; }
    .section { padding: 12vh 5vw; }
    .detail-container { grid-template-columns: 1fr !important; gap: 2.5rem; text-align: center; }
    .fc-grid { grid-template-columns: 1fr !important; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    
   
    .auth-modal-content { padding: 2.5rem 1.5rem; width: 95%; max-height: 85vh; overflow-y: auto;}
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .reward-section { grid-template-columns: 1fr; }
    .gift-card-content { padding: 1.5rem; }
    .stat-grid { grid-template-columns: 1fr; }
    .shop-grid { grid-template-columns: 1fr; }
    .detail-specs { text-align: left; }
    .hero-sub { font-size: 1.05rem; padding: 0 10px; }
    .user-profile-badge { padding-bottom: 1rem; margin-bottom: 2rem; }
    .nav-logo img { height: 32px; }
}


.mobile-actions { display: none; align-items: center; gap: 15px; z-index: 1000; }
.mobile-user-btn { background: transparent; border: none; cursor: pointer; padding: 5px; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.mobile-user-btn:active { transform: scale(0.9); }

@media (max-width: 900px) {
    .mobile-menu-btn { display: block; margin-left: 0; }
    .mobile-actions { display: flex; margin-left: auto; }
    .nav-links { display: flex !important; } 
}