/* ============================================
   LIGHT FORCE HEALER — REDESIGN
   Colors: #040404 (black), #efc113 (gold), #efee0e (bright yellow)
   Fonts: Tenor Sans (headings), Lato (body)
============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #040404;
  --gold: #efc113;
  --gold-bright: #efee0e;
  --white: #ffffff;
  --off-white: #f7f4ec;
  --gray: #1a1a1a;
  --gold-light: rgba(239, 193, 19, 0.12);
  --transition: 0.35s ease;
  --max-width: 1100px;
  --header-height: 80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background-color: var(--black);
  color: var(--gold);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Tenor Sans', Georgia, serif;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

/* CONTAINERS */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.container.narrow {
  max-width: 720px;
}

/* ============================================
   HEADER / NAV
============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(4, 4, 4, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(239, 193, 19, 0.15);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(4, 4, 4, 0.98);
  box-shadow: 0 2px 24px rgba(239, 193, 19, 0.08);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* LOGO */
.logo-link { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: 'Tenor Sans', serif;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.logo-tagline {
  font-family: 'Lato', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(239, 193, 19, 0.55);
  margin-top: 3px;
}

/* DESKTOP NAV */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(239, 193, 19, 0.75);
  padding: 0.5rem 0.85rem;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: var(--gold-light);
}
.nav-cta {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.55rem 1.25rem;
  border-radius: 4px;
  border: 2px solid var(--gold);
  margin-left: 0.5rem;
  transition: background var(--transition), color var(--transition);
}
.nav-cta:hover {
  background: transparent;
  color: var(--gold);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background: rgba(4, 4, 4, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(239, 193, 19, 0.15);
  padding: 1.5rem 2rem 2rem;
  z-index: 99;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open {
  transform: translateY(0);
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu li a {
  display: block;
  font-family: 'Tenor Sans', serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(239, 193, 19, 0.12);
  transition: color var(--transition);
}
.mobile-menu li:last-child a { border-bottom: none; }
.mobile-menu li a:hover, .mobile-menu li a.active { color: var(--gold-bright); }
.mobile-cta {
  color: var(--gold-bright) !important;
  font-weight: 700 !important;
  margin-top: 0.5rem;
}

/* ============================================
   BUTTONS
============================================ */
.btn-primary {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 1rem 2.5rem;
  border-radius: 4px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform 0.2s ease;
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-primary.full-width { width: 100%; text-align: center; }

.btn-outline {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform 0.2s ease;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(239, 193, 19, 0.7);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(239, 193, 19, 0.4);
  transition: color var(--transition), border-color var(--transition);
  margin-top: 1.5rem;
}
.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ============================================
   SECTION DIVIDERS
============================================ */
.section-divider {
  height: 3px;
  width: 100%;
}
.section-divider.gold {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.section-divider.dark {
  background: rgba(239, 193, 19, 0.1);
}

/* ============================================
   SECTION LABELS & TITLES
============================================ */
.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 0.75rem;
  text-align: center;
}
.section-title {
  font-family: 'Tenor Sans', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--gold);
  text-align: center;
  margin-bottom: 1rem;
}
.section-desc {
  text-align: center;
  color: rgba(239, 193, 19, 0.65);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(4, 4, 4, 0.65) 0%,
    rgba(4, 4, 4, 0.55) 50%,
    rgba(4, 4, 4, 0.82) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(239, 193, 19, 0.4);
  background: rgba(239, 193, 19, 0.08);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'Tenor Sans', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.hero-sub {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(239, 193, 19, 0.8);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.scroll-down:hover { opacity: 1; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   SERVICES
============================================ */
.services {
  padding: 6rem 0;
  background: var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.service-card {
  background: rgba(239, 193, 19, 0.04);
  border: 1px solid rgba(239, 193, 19, 0.12);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 193, 19, 0.35);
  box-shadow: 0 16px 48px rgba(239, 193, 19, 0.08);
}

.service-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}
.service-card:hover .service-image-wrap img {
  transform: scale(1.04);
}
.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(4,4,4,0.6) 100%);
  pointer-events: none;
}

.service-content {
  padding: 2rem;
}
.service-content h3 {
  font-family: 'Tenor Sans', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.service-content p {
  font-family: 'Lato', sans-serif;
  font-size: 0.97rem;
  color: rgba(239, 193, 19, 0.7);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* ============================================
   PHILOSOPHY / QUOTE
============================================ */
.philosophy {
  background: var(--black);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
}
.philosophy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(239, 193, 19, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.philosophy .container.narrow {
  position: relative;
  z-index: 1;
}

.quote-mark {
  font-family: 'Tenor Sans', serif;
  font-size: 8rem;
  line-height: 0.5;
  color: rgba(239, 193, 19, 0.2);
  margin-bottom: 1.5rem;
  display: block;
}

blockquote {
  font-family: 'Tenor Sans', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--gold);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
}
cite {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(239, 193, 19, 0.5);
  font-style: normal;
}

/* ============================================
   CONTACT SECTION
============================================ */
.contact-section {
  background: var(--black);
  padding: 6rem 2rem;
}

.contact-form {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-group label {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(239, 193, 19, 0.6);
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(239, 193, 19, 0.05);
  border: 1px solid rgba(239, 193, 19, 0.2);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.97rem;
  color: var(--gold);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(239, 193, 19, 0.3);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(239, 193, 19, 0.55);
  background: rgba(239, 193, 19, 0.08);
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(239, 193, 19, 0.15);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.footer-logo .logo-name {
  font-family: 'Tenor Sans', serif;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.footer-logo .logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: rgba(239, 193, 19, 0.45);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.5rem;
}
.footer-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(239, 193, 19, 0.55);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(239, 193, 19, 0.2);
  border-radius: 50%;
  color: var(--gold);
  transition: background var(--transition), border-color var(--transition);
}
.footer-social a:hover {
  background: rgba(239, 193, 19, 0.1);
  border-color: rgba(239, 193, 19, 0.45);
}

.footer-copy {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  color: rgba(239, 193, 19, 0.4);
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.65s; }

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.delay-1 {
  transition-delay: 0.18s;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ABOUT / CONTACT / FAQ PAGES (shared)
============================================ */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 4rem) 2rem 4rem;
  text-align: center;
  background: var(--black);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(239,193,19,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(239, 193, 19, 0.55);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: 'Tenor Sans', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(239, 193, 19, 0.65);
  max-width: 540px;
  margin: 1rem auto 0;
  position: relative;
  z-index: 1;
}

.page-content {
  padding: 5rem 2rem;
  max-width: 820px;
  margin: 0 auto;
}
.page-content h2 {
  font-family: 'Tenor Sans', serif;
  font-size: 1.7rem;
  color: var(--gold);
  margin: 2.5rem 0 1rem;
}
.page-content p, .page-content li {
  font-size: 1rem;
  color: rgba(239, 193, 19, 0.72);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.page-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

/* FAQ Accordion */
.faq-item {
  border-bottom: 1px solid rgba(239, 193, 19, 0.12);
  padding: 1.25rem 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Tenor Sans', serif;
  font-size: 1.05rem;
  color: var(--gold);
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-bright); }
.faq-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: rgba(239, 193, 19, 0.5);
  font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer p {
  font-size: 0.97rem;
  color: rgba(239, 193, 19, 0.65);
  line-height: 1.8;
  padding-top: 1rem;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
  :root { --header-height: 68px; }

  .hero-content { padding: 3rem 1.5rem; }
  .hero-headline { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-sub { font-size: 0.95rem; }

  .services { padding: 4rem 0; }
  .philosophy { padding: 4rem 1.5rem; }
  .contact-section { padding: 4rem 1.5rem; }

  .form-row { grid-template-columns: 1fr; }
  .btn-primary { padding: 0.9rem 1.75rem; }

  .quote-mark { font-size: 5rem; }
  blockquote { font-size: 1.1rem; }
}

@media (max-width: 400px) {
  .logo-name { font-size: 0.8rem; letter-spacing: 0.1em; }
}


/* ============================================
   SHOPIFY PAGES — NAVBAR (.navbar / .nav-wrapper)
   Matches .site-header styling for collection/product/search pages
============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(4, 4, 4, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(239, 193, 19, 0.15);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(4, 4, 4, 0.98);
  box-shadow: 0 2px 24px rgba(239, 193, 19, 0.08);
}

.nav-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo for Shopify pages */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.logo:hover .logo-name { color: var(--gold-bright); }
.logo .logo-name {
  font-family: 'Tenor Sans', Georgia, serif;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}
.logo .logo-tagline {
  font-family: 'Lato', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(239, 193, 19, 0.55);
  margin-top: 3px;
}

/* Nav links for Shopify pages */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(239, 193, 19, 0.75);
  padding: 0.5rem 0.85rem;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: var(--gold-light);
}
.nav-links .nav-cta {
  font-weight: 700;
  color: var(--black);
  background: var(--gold);
  border: 2px solid var(--gold);
  margin-left: 0.5rem;
}
.nav-links .nav-cta:hover {
  background: transparent;
  color: var(--gold);
}

/* Cart icon in nav-links */
.nav-links .cart-icon a,
.nav-links .cart-icon {
  color: var(--gold);
  display: flex;
  align-items: center;
  padding: 0.5rem;
}
.nav-links .cart-icon svg { stroke: var(--gold); }
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}
.cart-count.visible { display: flex; }

/* Mobile toggle for Shopify pages */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  z-index: 101;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* Nav-links open state (mobile) */
.nav-links.active {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background: rgba(4, 4, 4, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(239, 193, 19, 0.15);
  padding: 1.5rem 2rem 2rem;
  z-index: 99;
  gap: 0;
}
.nav-links.active li { width: 100%; }
.nav-links.active a {
  display: block;
  font-family: 'Tenor Sans', serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(239, 193, 19, 0.12);
  border-radius: 0;
  background: none;
}
.nav-links.active li:last-child a { border-bottom: none; }

/* ============================================
   SHOPIFY PAGES — SHOP DROPDOWN (navigation.js)
============================================ */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: rgba(239, 193, 19, 0.75);
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.5rem 0.85rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition), background var(--transition);
}
.dropdown-toggle:hover {
  color: var(--gold);
  background: var(--gold-light);
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  stroke: currentColor;
}
.nav-dropdown.active .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(4, 4, 4, 0.97);
  border: 1px solid rgba(239, 193, 19, 0.2);
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 200;
}
.nav-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.collection-list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}
.collection-list li { margin: 0; }
.collection-list a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(239, 193, 19, 0.75);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}
.collection-list a:hover {
  color: var(--gold);
  background: var(--gold-light);
}

/* ============================================
   SHOPIFY PAGES — PAGE HEADER
============================================ */
.page-header {
  background: rgba(239, 193, 19, 0.04);
  border-bottom: 1px solid rgba(239, 193, 19, 0.1);
  padding: calc(var(--header-height) + 3rem) 2rem 3rem;
  text-align: center;
}
.page-header h1 {
  font-family: 'Tenor Sans', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.page-header p {
  color: rgba(239, 193, 19, 0.65);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   SHOPIFY PAGES — SHOP LAYOUT
============================================ */
.shop-section {
  padding: 3rem 0 5rem;
  background: var(--black);
}

.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
}

.filters-sidebar {
  background: rgba(239, 193, 19, 0.04);
  border: 1px solid rgba(239, 193, 19, 0.12);
  padding: 1.5rem;
  border-radius: 8px;
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.filters-header h3 {
  font-family: 'Tenor Sans', serif;
  font-size: 1.1rem;
  color: var(--gold);
}

.filter-group {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(239, 193, 19, 0.1);
}
.filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-group h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(239, 193, 19, 0.6);
  margin-bottom: 0.75rem;
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.price-input {
  width: 75px;
  padding: 0.45rem 0.6rem;
  background: rgba(239, 193, 19, 0.05);
  border: 1px solid rgba(239, 193, 19, 0.2);
  border-radius: 4px;
  color: var(--gold);
  font-size: 0.9rem;
}
.price-input:focus { outline: none; border-color: rgba(239, 193, 19, 0.5); }

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: rgba(239, 193, 19, 0.75);
}
.checkbox-label input { cursor: pointer; accent-color: var(--gold); }

.btn-text {
  background: none;
  border: none;
  color: rgba(239, 193, 19, 0.6);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  transition: color var(--transition);
}
.btn-text:hover { color: var(--gold); }

.btn.btn-secondary.btn-small {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(239, 193, 19, 0.35);
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.btn.btn-secondary.btn-small:hover {
  background: var(--gold-light);
  border-color: var(--gold);
}

.shop-main { min-width: 0; }

/* ============================================
   SHOPIFY PAGES — PRODUCT GRID & CARDS
============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.product-card {
  background: rgba(239, 193, 19, 0.03);
  border: 1px solid rgba(239, 193, 19, 0.12);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 193, 19, 0.35);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.product-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: rgba(239, 193, 19, 0.05);
}
.product-card:hover .product-image img { transform: scale(1.04); }

.out-of-stock-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(180, 0, 0, 0.85);
  color: #fff;
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-info {
  padding: 1.25rem 1.5rem 1.5rem;
}
.product-category {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(239, 193, 19, 0.5);
  margin-bottom: 0.35rem;
}
.product-info h3 {
  font-family: 'Tenor Sans', serif;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.product-price {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}
.product-info .btn,
.product-info button {
  display: block;
  width: 100%;
  padding: 0.65rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  transition: background var(--transition), color var(--transition);
}
.product-info .btn:hover,
.product-info button:hover {
  background: transparent;
  color: var(--gold);
}

/* ============================================
   SHOPIFY PAGES — PAGINATION
============================================ */
.pagination { margin-top: 3rem; }
.pagination-controls {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.page-btn, .pagination-btn {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(239, 193, 19, 0.25);
  background: transparent;
  color: rgba(239, 193, 19, 0.75);
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  transition: all 0.25s;
}
.page-btn:hover, .pagination-btn:hover {
  background: var(--gold-light);
  border-color: var(--gold);
  color: var(--gold);
}
.page-btn.active, .pagination-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.page-dots, .pagination-ellipsis {
  padding: 0.5rem;
  color: rgba(239, 193, 19, 0.4);
}

/* ============================================
   SHOPIFY PAGES — BREADCRUMB
============================================ */
.breadcrumb {
  padding: calc(var(--header-height) + 1rem) 0 1rem;
  background: var(--black);
  border-bottom: 1px solid rgba(239, 193, 19, 0.08);
}
.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
}
.breadcrumb a {
  color: rgba(239, 193, 19, 0.6);
  text-decoration: none;
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(239, 193, 19, 0.35); }

/* ============================================
   SHOPIFY PAGES — PRODUCT DETAIL
============================================ */
.product-detail-section {
  padding: 3rem 0 5rem;
  background: var(--black);
}
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.product-images { position: sticky; top: calc(var(--header-height) + 1rem); height: fit-content; }
.main-image {
  width: 100%;
  height: 480px;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(239, 193, 19, 0.12);
}
.main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(239, 193, 19, 0.04);
}
.thumbnail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
  gap: 0.5rem;
}
.thumbnail {
  width: 100%;
  height: 75px;
  object-fit: contain;
  background: rgba(239, 193, 19, 0.04);
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid rgba(239, 193, 19, 0.15);
  transition: border-color 0.25s;
}
.thumbnail:hover, .thumbnail.active { border-color: var(--gold); }

.product-info-section { padding: 0.5rem 0; }
.product-title {
  font-family: 'Tenor Sans', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.product-price-large {
  font-family: 'Lato', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.product-description {
  color: rgba(239, 193, 19, 0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.97rem;
}
.product-description ul { margin-left: 1.5rem; margin-top: 1rem; list-style: disc; }
.product-description li { margin-bottom: 0.5rem; }

.variant-selector { margin: 1.5rem 0; }
.variant-selector label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(239, 193, 19, 0.6);
  margin-bottom: 0.75rem;
}
.variant-buttons { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.variant-btn {
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(239, 193, 19, 0.3);
  background: transparent;
  color: rgba(239, 193, 19, 0.75);
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.variant-btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.variant-btn.selected { border-color: var(--gold); background: var(--gold); color: var(--black); }
.variant-btn:disabled { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }

.variant-select {
  width: 100%;
  padding: 0.75rem;
  background: rgba(239, 193, 19, 0.05);
  border: 1px solid rgba(239, 193, 19, 0.25);
  border-radius: 4px;
  color: var(--gold);
  font-size: 1rem;
}

.add-to-cart-btn { width: 100%; margin-bottom: 2rem; }

.product-meta {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(239, 193, 19, 0.12);
  border-bottom: 1px solid rgba(239, 193, 19, 0.12);
  margin-bottom: 2rem;
}
.product-meta p { margin-bottom: 0.5rem; color: rgba(239, 193, 19, 0.55); font-size: 0.9rem; }

.related-products {
  padding: 4rem 0;
  background: rgba(239, 193, 19, 0.03);
  border-top: 1px solid rgba(239, 193, 19, 0.1);
}
.related-products h2 {
  font-family: 'Tenor Sans', serif;
  text-align: center;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 2rem;
}

/* ============================================
   SHOPIFY PAGES — SEARCH
============================================ */
.search-section {
  padding: calc(var(--header-height) + 3rem) 0 5rem;
  background: var(--black);
}
.search-header {
  text-align: center;
  margin-bottom: 3rem;
}
.search-header h1 {
  font-family: 'Tenor Sans', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.search-form { max-width: 600px; margin: 0 auto; }
.search-input-wrapper {
  position: relative;
  display: flex;
}
.search-input-wrapper input {
  width: 100%;
  padding: 1rem 3.5rem 1rem 1.25rem;
  background: rgba(239, 193, 19, 0.05);
  border: 1px solid rgba(239, 193, 19, 0.25);
  border-radius: 50px;
  font-size: 1rem;
  color: var(--gold);
  font-family: 'Lato', sans-serif;
  transition: border-color 0.3s;
}
.search-input-wrapper input::placeholder { color: rgba(239, 193, 19, 0.35); }
.search-input-wrapper input:focus {
  outline: none;
  border-color: rgba(239, 193, 19, 0.55);
  background: rgba(239, 193, 19, 0.08);
}
.search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: background 0.3s;
}
.search-btn:hover { background: var(--gold-bright); }
.search-btn svg { width: 18px; height: 18px; }

.search-info {
  text-align: center;
  color: rgba(239, 193, 19, 0.55);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: rgba(239, 193, 19, 0.4);
}
.empty-state svg { width: 48px; height: 48px; margin: 0 auto 1rem; stroke: rgba(239, 193, 19, 0.3); }
.empty-state p { font-size: 1rem; }

.loading-spinner {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: rgba(239, 193, 19, 0.5);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   SHOPIFY PAGES — FOOTER (.footer)
   Dynamic footer from footer.js
============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(239, 193, 19, 0.15);
  padding: 3rem 2rem;
  color: var(--gold);
}
.footer .footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.footer .footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.footer .footer-logo .logo-name {
  font-family: 'Tenor Sans', serif;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.footer .footer-logo .logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: rgba(239, 193, 19, 0.45);
}
.footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.5rem;
}
.footer .footer-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(239, 193, 19, 0.55);
  transition: color var(--transition);
}
.footer .footer-nav a:hover { color: var(--gold); }
.footer .footer-social {
  display: flex;
  gap: 1rem;
}
.footer .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(239, 193, 19, 0.2);
  border-radius: 50%;
  color: var(--gold);
  transition: background var(--transition), border-color var(--transition);
}
.footer .footer-social a:hover {
  background: rgba(239, 193, 19, 0.1);
  border-color: rgba(239, 193, 19, 0.45);
}
.footer .footer-copy {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  color: rgba(239, 193, 19, 0.4);
}

/* Responsive for Shopify pages */
@media (max-width: 900px) {
  .mobile-toggle { display: flex; }
  .nav-links { display: none; }
  .nav-links.active { display: flex; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .product-images { position: static; }
}

@media (max-width: 640px) {
  .page-header { padding: calc(var(--header-height) + 2rem) 1.5rem 2rem; }
  .shop-section { padding: 2rem 0 4rem; }
  .search-section { padding: calc(var(--header-height) + 2rem) 0 4rem; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; }
  .main-image { height: 320px; }
}

/* ===== CART DRAWER STYLES (auto-appended for Shopify integration) ===== */
#cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    z-index: 1001;
    transition: right 0.3s ease;
}

#cart-drawer.active {
    right: 0;
}

.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

#cart-drawer.active .cart-drawer-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cart-drawer-content {
    position: relative;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    z-index: 1001;
    pointer-events: auto;
}

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.cart-drawer-header h2 {
    font-size: 1.5rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
    line-height: 1;
    padding: 0;
}

.cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

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

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-controls button {
    width: 28px;
    height: 28px;
    border: 1px solid #e0e0e0;
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-controls button:hover {
    background: #f5f5f5;
}

.remove-btn {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 0.85rem;
    text-decoration: underline;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cart-footer .btn {
    width: 100%;
    margin-bottom: 0.75rem;
}

.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #8b7355;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 2000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s;
}

.cart-notification.show {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    #cart-drawer {
        max-width: 100%;
    }
}
/* ===== END CART DRAWER STYLES ===== */
