/* ==================== GLOBAL RESET & BASE STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
  background: white;
  color: #1a1a1a;
  line-height: 1.4;
  overflow-x: hidden;
}

/* ==================== HEADER STYLES ==================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  padding: 0.6rem 4rem;
}

.site-header.scrolled .nav-links a,
.site-header.scrolled .dropdown-btn,
.site-header.scrolled .nav-link-direct,
.site-header.scrolled .header-icons i {
  color: #1a1a1a;
}

.site-header.scrolled .dropdown-btn i {
  color: #1a1a1a;
}

/* ==================== LOGO STYLES ==================== */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 2rem;
  height: 55px !important;
  max-height: 55px;
  width: auto;
}

.logo-img {
  height: 55px !important;
  max-height: 55px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain;
  display: block;
  transition: filter 0.3s ease;
  filter: brightness(0) invert(1);
}

.site-header.scrolled .logo-img {
  filter: brightness(0);
}

/* ==================== NAVIGATION DROPDOWN STYLES ==================== */
.nav-links {
  display: flex;
  gap: 0.3rem;
  font-weight: 400;
  font-size: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  background: none;
  border: none;
  color: white;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  padding: 0.5rem 0.8rem;
  letter-spacing: 0.3px;
  transition: opacity 0.25s, color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.dropdown-btn i {
  font-size: 0.6rem;
  transition: transform 0.3s ease;
  color: white;
}

.nav-dropdown.active .dropdown-btn i {
  transform: rotate(180deg);
}

.dropdown-btn:hover {
  opacity: 0.7;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 200;
  padding: 0.8rem 0;
  margin-top: 0.5rem;
  overflow: hidden;
}

.nav-dropdown.active .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: #1a1a1a;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
  transition: background-color 0.2s, padding-left 0.2s;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background-color: #f5f2ed;
  padding-left: 1.8rem;
}

/* ==================== DIRECT NAV LINK ==================== */
.nav-link-direct {
  display: inline-flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  padding: 0.5rem 0.8rem;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.25s, color 0.3s;
}

.nav-link-direct:hover {
  opacity: 0.7;
}

/* ==================== HEADER ICONS ==================== */
.header-icons {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-left: 2rem;
}

.header-icons i {
  cursor: pointer;
  transition: color 0.3s, transform 0.2s;
  color: white;
}

.header-icons i:hover {
  transform: scale(1.08);
  opacity: 0.8;
}

/* ==================== SEARCH DROPDOWN ==================== */
.search-dropdown {
  position: absolute;
  top: 70px;
  right: 4rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 40px;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: none;
  align-items: center;
  backdrop-filter: blur(12px);
}

.search-dropdown.active {
  display: flex;
}

.search-dropdown input {
  border: none;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  outline: none;
  background: transparent;
  width: 200px;
  color: #1a1a1a;
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #0f0f0f;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-overlay h1 {
  font-size: 4.5rem;
  font-weight: 400;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

/* ==================== PRODUCTS SECTION ==================== */
.products-section {
  background: white;
  padding: 5rem 6rem 4rem;
  text-align: center;
}

.products-title {
  font-weight: 400;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
  color: #1a1a1a;
}

.products-grid {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.product-card {
  background: #ffffff;
  flex: 1 1 220px;
  max-width: 280px;
  text-align: left;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  background: #f9f7f4;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 1.5rem;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 0 0.5rem;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.product-price {
  font-weight: 400;
  color: #4a4a4a;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.availability {
  font-size: 0.85rem;
  color: #2e7d32;
  font-weight: 500;
  display: inline-block;
  padding: 0.2rem 0.8rem;
  background: #f0f7f0;
  border-radius: 20px;
}

/* ==================== STORY SECTION ==================== */
.story-section {
  background: white;
  padding: 5rem 6rem 7rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.story-row {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.story-row-reverse {
  flex-direction: row-reverse;
}

.story-img {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  background: #f5f2ed;
}

.story-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.story-text {
  flex: 1;
  padding: 1rem 0;
}

.story-text h3 {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  color: #1a1a1a;
}

.story-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5a5a5a;
  margin-bottom: 2rem;
}

.discover-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #1a1a1a;
  transition: all 0.3s ease;
}

.discover-link i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.discover-link:hover {
  opacity: 0.6;
}

.discover-link:hover i {
  transform: translateX(5px);
}

/* ==================== RITUALS SECTION ==================== */
.rituals-section {
  background: white;
  display: flex;
  min-height: 85vh;
}

.ritual-box {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease;
  min-height: 500px;
}

.ritual-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  transition: background 0.4s;
}

.ritual-box:hover::before {
  background: rgba(0, 0, 0, 0.25);
}

.ritual-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.ritual-content h2 {
  font-size: 3.2rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ritual-content p {
  margin-top: 0.8rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.ritual-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid white;
  transition: all 0.3s ease;
}

.ritual-link i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.ritual-link:hover {
  background: white;
  color: #0f0f0f;
}

.ritual-link:hover i {
  transform: translateX(5px);
}

/* ==================== JOURNAL SECTION ==================== */
.journal-section {
  background: white;
  padding: 5rem 6rem;
  position: relative;
}

.journal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.journal-title {
  font-size: 2.4rem;
  font-weight: 400;
  color: #1a1a1a;
}

.journal-arrows {
  display: flex;
  gap: 1.2rem;
}

.journal-arrows i {
  font-size: 1.8rem;
  cursor: pointer;
  color: #1a1a1a;
  transition: opacity 0.3s;
}

.journal-arrows i:hover {
  opacity: 0.6;
}

.journal-posts {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  white-space: nowrap;
}

.journal-posts::-webkit-scrollbar {
  display: none;
}

.journal-posts {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.journal-card {
  min-width: 300px;
  background: #f7f7f5;
  border-radius: 16px;
  padding: 1.5rem;
  white-space: normal;
  flex-shrink: 0;
}

.journal-card img {
  width: 100%;
  border-radius: 12px;
  height: 180px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.journal-card h4 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.journal-card p {
  font-size: 0.95rem;
  color: #5a5a5a;
  line-height: 1.6;
}

/* ==================== FOOTER SECTION ==================== */
.footer {
  background: #0f0f0f;
  color: white;
  padding: 4rem 6rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-left {
  flex: 1.2;
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-logo-img {
  height: 55px !important;
  max-height: 55px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.email-box {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 350px;
  margin-bottom: 1.8rem;
}

.email-input {
  padding: 0.9rem 1.2rem;
  border-radius: 30px;
  border: 1px solid #444;
  background: transparent;
  color: white;
  font-size: 0.95rem;
}

.email-input::placeholder {
  color: #888;
}

.privacy-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #ccc;
}

.footer-links {
  display: flex;
  flex: 2;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col h4 {
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.footer-col a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  width: 100%;
  margin-top: 3rem;
  border-top: 1px solid #2a2a2a;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #aaa;
}

/* ==================== MEGA-MENU (SHARED STYLES) ==================== */
.nav-dropdown-mega {
  position: relative;
  display: inline-block;
}

.dropdown-mega {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  min-width: 900px;
  max-width: 1000px;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  padding: 2.5rem 2.5rem 2rem;
  margin-top: 1rem;
  z-index: 200;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  opacity: 0;
  animation: megaFadeIn 0.25s ease forwards;
}

.nav-dropdown-mega.active .dropdown-mega {
  display: grid;
}

@keyframes megaFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.mega-column {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mega-heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
  margin-bottom: 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #eee;
}

.mega-column a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color 0.2s, padding-left 0.2s;
  display: block;
  white-space: nowrap;
}

.mega-column a:hover {
  color: #2e7d32;
  padding-left: 6px;
}

.mega-column a.mega-see-all {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid #eee;
  font-weight: 600;
  color: #1a1a1a;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.mega-column a.mega-see-all i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.mega-column a.mega-see-all:hover {
  color: #1a1a1a;
  padding-left: 0;
}

.mega-column a.mega-see-all:hover i {
  transform: translateX(5px);
}

.nav-dropdown-mega.active .dropdown-btn {
  opacity: 1;
  color: #2e7d32;
}

.site-header.scrolled .mega-heading {
  color: #666;
}

.site-header.scrolled .mega-column a:hover {
  color: #2e7d32;
}

/* ==================== SINGLE-COLUMN MEGA-MENU ==================== */
.nav-dropdown-mega-single .dropdown-mega-single {
  min-width: 280px;
  max-width: 320px;
  grid-template-columns: 1fr;
  padding: 2rem;
  gap: 0;
}

/* ==================== RESPONSIVE — DESKTOP TABLET ==================== */
@media (max-width: 1100px) {
  .dropdown-mega {
    min-width: 700px;
    max-width: 750px;
    padding: 2rem;
    gap: 1.8rem;
  }
  .mega-column a { font-size: 0.85rem; }
  .nav-dropdown-mega-single .dropdown-mega-single {
    min-width: 260px;
    max-width: 280px;
    padding: 1.8rem;
  }
}

/* ==================== MOBILE EXPERIENCE (≤968px) ==================== */

/* Hamburger button — hidden by default, shown on tablet + phone */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: color 0.3s, opacity 0.2s;
  margin-left: 0.5rem;
}

.site-header.scrolled .hamburger,
body.page-routine-builder .site-header .hamburger {
  color: #1a1a1a;
}

.hamburger:hover {
  opacity: 0.7;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  height: 100dvh;
  background: white;
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.mobile-drawer-logo {
  height: 40px !important;
  max-height: 40px !important;
  width: auto !important;
  max-width: 140px !important;
  object-fit: contain;
  filter: brightness(0);
}

.mobile-drawer-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #1a1a1a;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: opacity 0.2s;
}

.mobile-drawer-close:hover {
  opacity: 0.6;
}

.mobile-drawer-nav {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 0;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-item {
  border-bottom: 1px solid #f5f5f5;
}

.mobile-nav-btn,
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.1rem 1.5rem;
  background: none;
  border: none;
  color: #1a1a1a;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  text-align: left;
  letter-spacing: 0.2px;
  transition: background-color 0.2s;
}

.mobile-nav-btn:hover,
.mobile-nav-link:hover {
  background-color: #fafafa;
}

.mobile-nav-btn i {
  font-size: 0.75rem;
  color: #666;
  transition: transform 0.3s;
}

.mobile-nav-item.active .mobile-nav-btn i {
  transform: rotate(180deg);
}

.mobile-nav-submenu {
  display: none;
  padding: 0 1.5rem 1.2rem 1.5rem;
  background: #fafafa;
}

.mobile-nav-item.active .mobile-nav-submenu {
  display: block;
}

.mobile-submenu-section {
  margin-bottom: 1.4rem;
}

.mobile-submenu-section:last-child {
  margin-bottom: 0;
}

.mobile-submenu-heading {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
  margin-bottom: 0.7rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ececec;
}

.mobile-submenu-section a {
  display: block;
  padding: 0.55rem 0;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-submenu-section a:hover {
  color: #2e7d32;
  padding-left: 6px;
}

/* Hide the drawer bottom icons — search/location/wishlist stay in the header */
.mobile-drawer-icons {
  display: none;
}

body.drawer-open {
  overflow: hidden;
}

/* ==================== TABLET & MOBILE BREAKPOINT (≤968px) ==================== */
@media (max-width: 968px) {

  .site-header {
    padding: 1rem 1.25rem;
  }

  .site-header.scrolled {
    padding: 0.75rem 1.25rem;
  }

  /* Hide desktop nav */
  .nav-links {
    display: none;
  }

  /* Keep header icons visible — they stay in the header */
  .header-icons {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    font-size: 1.05rem;
    margin-left: auto;
    margin-right: 0.25rem;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Smaller logo */
  .logo {
    margin-right: 0;
    height: 42px !important;
    max-height: 42px;
  }

  .logo-img {
    height: 42px !important;
    max-height: 42px !important;
    max-width: 130px !important;
  }

  .footer-logo-img {
    height: 42px !important;
    max-height: 42px !important;
    max-width: 130px !important;
  }

  /* Search dropdown full width */
  .search-dropdown {
    right: 1rem;
    left: 1rem;
    max-width: none;
  }

  .search-dropdown input {
    width: 100%;
  }

  /* Products: horizontal swipe with snap */
  .products-section {
    padding: 3.5rem 0 3rem;
    text-align: left;
  }

  .products-title {
    padding: 0 1.25rem;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  .products-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 1.25rem 1rem;
    scroll-padding-left: 1.25rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .products-grid::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    flex: 0 0 68%;
    max-width: 68%;
    scroll-snap-align: start;
    text-align: left;
  }

  .product-card:hover {
    transform: none;
  }

  /* Story: stack vertically */
  .story-row,
  .story-row-reverse {
    flex-direction: column;
    gap: 2rem;
  }

  .story-section {
    padding: 3.5rem 1.25rem;
    gap: 3.5rem;
  }

  .story-text h3 {
    font-size: 1.7rem;
  }

  /* Rituals: KEEP SIDE BY SIDE */
  .rituals-section {
    flex-direction: row;
    min-height: auto;
  }

  .ritual-box {
    min-height: 380px;
    padding: 1rem;
  }

  .ritual-content h2 {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }

  .ritual-content p {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
  }

  .ritual-link {
    font-size: 0.75rem;
    padding: 0.6rem 1rem;
    margin-top: 1.2rem;
    letter-spacing: 0.3px;
    gap: 0.5rem;
  }

  .ritual-link i {
    font-size: 0.7rem;
  }

  /* Journal */
  .journal-section {
    padding: 3.5rem 0;
  }

  .journal-header {
    padding: 0 1.25rem;
    margin-bottom: 1.75rem;
  }

  .journal-title {
    font-size: 1.8rem;
  }

  .journal-posts {
    padding: 0 1.25rem 1rem;
    scroll-padding-left: 1.25rem;
  }

  .journal-card {
    min-width: 260px;
  }

  /* Hero */
  .hero-overlay h1 {
    font-size: 3rem;
  }

  /* ==================== COMPACT FOOTER (TABLET & PHONE) ==================== */
  .footer {
    flex-direction: column;
    padding: 2.5rem 1.25rem 1.25rem;
    gap: 1.75rem;
  }

  .footer-left {
    flex: 1 1 auto;
    width: 100%;
  }

  .footer-logo {
    margin-bottom: 1rem;
  }

  .email-box {
    max-width: 100%;
    gap: 0.6rem;
    margin-bottom: 0;
  }

  .email-input {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }

  .privacy-check {
    font-size: 0.75rem;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1.25rem;
    width: 100%;
  }

  .footer-col {
    gap: 0.35rem;
  }

  .footer-col h4 {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ddd;
  }

  .footer-col a {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    text-align: left;
    margin-top: 1.5rem;
    padding-top: 1rem;
    font-size: 0.7rem;
  }
}

/* ==================== HIDE DRAWER & HAMBURGER ON DESKTOP ==================== */
@media (min-width: 969px) {
  .mobile-drawer,
  .mobile-drawer-overlay,
  .hamburger {
    display: none !important;
  }
}

/* ==================== SMALL PHONE (≤480px) ==================== */
@media (max-width: 480px) {

  .site-header {
    padding: 0.9rem 1rem;
  }

  .site-header.scrolled {
    padding: 0.7rem 1rem;
  }

  .header-icons {
    gap: 0.85rem;
    font-size: 1rem;
    margin-right: 0.15rem;
  }

  .hamburger {
    font-size: 1.35rem;
  }

  .logo {
    height: 36px !important;
    max-height: 36px;
  }

  .logo-img {
    height: 36px !important;
    max-height: 36px !important;
    max-width: 110px !important;
  }

  .footer-logo-img {
    height: 36px !important;
    max-height: 36px !important;
    max-width: 110px !important;
  }

  .product-card {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .ritual-box {
    min-height: 320px;
    padding: 0.75rem;
  }

  .ritual-content h2 {
    font-size: 1.3rem;
    letter-spacing: 0.5px;
  }

  .ritual-content p {
    font-size: 0.75rem;
    margin-top: 0.4rem;
  }

  .ritual-link {
    font-size: 0.7rem;
    padding: 0.5rem 0.85rem;
    margin-top: 1rem;
  }

  .hero-overlay h1 {
    font-size: 2.4rem;
  }

  .hero-overlay p {
    font-size: 1rem !important;
  }

  .products-title,
  .journal-title {
    font-size: 1.8rem;
  }

  .story-text h3 {
    font-size: 1.6rem;
  }

  .journal-card {
    min-width: 240px;
  }

  /* Even more compact footer on phones */
  .footer {
    padding: 2rem 1rem 1rem;
    gap: 1.5rem;
  }

  .footer-logo {
    margin-bottom: 0.75rem;
  }

  .email-input {
    font-size: 0.85rem;
    padding: 0.65rem 0.9rem;
  }

  .privacy-check {
    font-size: 0.7rem;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1rem;
  }

  .footer-col {
    gap: 0.3rem;
  }

  .footer-col h4 {
    font-size: 0.72rem;
    margin-bottom: 0.35rem;
  }

  .footer-col a {
    font-size: 0.75rem;
  }

  .footer-bottom {
    margin-top: 1.25rem;
    padding-top: 0.85rem;
    font-size: 0.65rem;
    gap: 0.3rem;
  }

  .mobile-drawer {
    max-width: 100%;
  }
}