/** Shopify CDN: Minification failed

Line 597:17 The "-" operator only works if there is whitespace on both sides

**/
/* ==========================================================================
   ARUNA INDIA — Brand Stylesheet
   Palette: Cream #F2EFE6 · Taupe #B6A88E · Deep Forest Green #101E06
   Type: Italiana (display) / Caladea (Cambria-compatible, accent) / Carlito (Calibri-compatible, body)

   Note: Calibri and Cambria are proprietary Microsoft fonts and can't be
   legally self-hosted or served from a webfont CDN. Caladea and Carlito are
   free, open-license fonts built to be metrically identical to them — same
   letter shapes and spacing, just legally embeddable everywhere.

   Fonts are loaded via <link> tags in layout/theme.liquid, not @import here —
   Shopify's Custom CSS field doesn't support @import, and link tags load faster.
   ========================================================================== */

:root {
  --forest: #101E06;
  --forest-light: #1C3410;
  --forest-soft: #24401A;
  --cream: #F2EFE6;
  --cream-dim: #E9E4D6;
  --taupe: #B6A88E;
  --taupe-deep: #8B7C60;
  --white: #FFFFFF;
  --ink-soft: #5F6559;

  --font-display: 'Italiana', 'Georgia', serif;
  --font-accent: 'Caladea', 'Cambria', 'Georgia', serif;
  --font-body: 'Carlito', 'Calibri', -apple-system, sans-serif;

  --container: 1360px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--forest);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--taupe-deep);
  outline-offset: 3px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe-deep);
  margin: 0 0 14px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.01em;
}

.btn-outline {
  display: inline-block;
  padding: 14px 34px;
  border: 1px solid currentColor;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--font-body);
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease;
}
.btn-outline.on-forest:hover {
  background: var(--cream);
  color: var(--forest);
}
.btn-outline.on-cream:hover {
  background: var(--forest);
  color: var(--cream);
}

/* ---------------- Announcement bar ---------------- */
.announcement-bar {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 10px 16px;
}

/* ---------------- Search drawer ---------------- */
.search-drawer {
  display: none;
  align-items: center;
  gap: 10px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter);
  background: var(--cream);
  border-bottom: 1px solid rgba(16,30,6,0.08);
}
.search-drawer.open { display: flex; }
.search-drawer input[type="search"] {
  flex: 1; font-family: var(--font-body); font-size: 15px;
  border: none; border-bottom: 1px solid var(--taupe-deep); background: none;
  padding: 8px 2px; color: var(--forest);
}
.search-drawer button {
  font-family: var(--font-body); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  background: none; border: 1px solid var(--forest); padding: 8px 18px; cursor: pointer; color: var(--forest);
}

/* ---------------- Header / Nav ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--gutter);
  padding: 22px var(--gutter);
  background: var(--cream);
  border-bottom: 1px solid rgba(16, 30, 6, 0.08);
  transition: background 0.35s ease, border-color 0.35s ease;
}

.site-header.header--transparent {
  background: transparent;
  border-bottom-color: transparent;
}
.site-header.header--transparent::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 170px;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.28) 55%, rgba(0,0,0,0) 100%);
  z-index: -1;
  pointer-events: none;
}
.site-header.header--transparent .nav-left a,
.site-header.header--transparent .nav-right a,
.site-header.header--transparent .nav-right button,
.site-header.header--transparent .menu-toggle {
  color: var(--cream);
  text-shadow: 0 1px 4px rgba(16,30,6,0.35);
}
.site-header.header--transparent .logo img {
  filter: brightness(0) invert(1);
  background: transparent;
}

.has-transparent-header .hero { margin-top: -86px; }

@media (max-width: 900px) {
  .has-transparent-header .hero { margin-top: -66px; }
}

.logo {
  font-family: var(--font-display);
  font-size: 80px;
  text-align: center;
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.logo img { height: 80px; width: auto; display: block; }
.logo span { color: var(--taupe-deep); }

.nav-left, .nav-right {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-left { justify-content: flex-start; }
.nav-right { justify-content: flex-end; }

.nav-left a, .nav-right a, .nav-right button {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: none;
  border: none;
  font-family: var(--font-body);
  color: var(--forest);
  cursor: pointer;
  position: relative;
  padding: 4px 0;
}
.nav-left a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%;
  height: 1px;
  background: var(--forest);
  transition: width 0.25s ease;
}
.nav-left a:hover::after { width: 100%; }

.menu-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--forest); }

@media (max-width: 900px) {
  .site-header { grid-template-columns: auto 1fr auto; padding: 16px var(--gutter); }
  .nav-left { display: none; }
  .menu-toggle { display: block; }
  .logo { font-size: 21px; text-align: left; }
  .logo img { height: 34px; }
}
@media (max-width: 480px) {
  .nav-right { gap: 14px; }
  .nav-right .nav-hide-mobile { display: none; }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-bottom: 1px solid rgba(16,30,6,0.08);
  padding: 8px var(--gutter) 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 0;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(16,30,6,0.06);
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  height: 86vh;
  min-height: 520px;
  overflow: hidden;
}
.hero img { width: 100%; height: 100%; object-fit: cover; }
.hero-video-wrap { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-video-wrap video.hero-video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,30,6,0.15) 0%, rgba(16,30,6,0.45) 100%);
}
.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--cream); z-index: 2; padding: 0 20px;
}
.hero-content .eyebrow { color: var(--taupe); }
.hero-content h1, .hero-content .hero-heading {
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.12;
  margin-bottom: 32px;
  max-width: 16em;
}
.hero-content .hero-heading p {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 0;
}
.hero-content .btn-outline { color: var(--cream); }


/* ---------------- Intro strip ---------------- */
.intro-strip {
  max-width: 880px;
  margin: 0 auto;
  padding: 110px var(--gutter) 90px;
  text-align: center;
}
.accent-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.5;
  color: var(--forest);
  margin: 0;
}

/* ---------------- Category grid ---------------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--cream);
  padding: 0 var(--gutter) 120px;
}
.category-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: block;
}
.category-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.category-tile:hover img { transform: scale(1.045); }
.category-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,30,6,0) 45%, rgba(16,30,6,0.62) 100%);
}
.tile-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 22px;
  color: var(--cream);
  z-index: 2;
  text-align: center;
}
.tile-caption h3 {
  font-size: 19px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.tile-caption span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
  border-bottom: 1px solid var(--taupe);
  padding-bottom: 3px;
}

@media (max-width: 900px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; padding: 0 3px 60px; }
}

/* ---------------- Craft strip ---------------- */
.craft-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  background: var(--forest);
}
.craft-strip img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.craft-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px clamp(30px, 6vw, 90px);
  color: var(--cream);
}
.craft-text h2 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 22px; color: var(--cream); }
.craft-text p.body { color: var(--taupe); max-width: 32em; line-height: 1.7; font-size: 15px; }

@media (max-width: 900px) {
  .craft-strip { grid-template-columns: 1fr; }
  .craft-strip img { min-height: 320px; }
}

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--forest);
  color: var(--cream);
  padding: 80px var(--gutter) 30px;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(242,239,230,0.14);
}
.footer-logo { font-family: var(--font-display); font-size: 26px; margin-bottom: 16px; }
.footer-logo img { height: 46px; width: auto; display: block; }
.footer-tagline { color: var(--taupe); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-col h4 {
  font-family: var(--font-body); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--taupe); margin: 0 0 18px; font-weight: 700;
}
.footer-col a, .footer-col p {
  display: block; font-size: 14px; color: var(--cream-dim); margin-bottom: 12px; opacity: 0.88;
}
.footer-col a:hover { opacity: 1; text-decoration: underline; }
.newsletter-form { display: flex; margin-top: 6px; border-bottom: 1px solid var(--taupe); max-width: 280px; }
.newsletter-form input {
  flex: 1; background: none; border: none; color: var(--cream);
  font-family: var(--font-body); font-size: 13px; padding: 8px 0;
}
.newsletter-form input::placeholder { color: rgba(242,239,230,0.5); }
.newsletter-form button {
  background: none; border: none; color: var(--taupe); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
}
.footer-bottom {
  max-width: var(--container);
  margin: 24px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11.5px; color: rgba(242,239,230,0.55); flex-wrap: wrap; gap: 10px;
}
.footer-bottom .socials { display: flex; gap: 18px; }
.footer-bottom .socials a { color: rgba(242,239,230,0.7); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------------- Video feature section ---------------- */
.video-feature { padding: 100px var(--gutter) 60px; }
.video-feature-frame {
  max-width: var(--container);
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--forest);
}
.video-feature-frame img,
.video-feature-frame video.video-feature-video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.video-feature-caption {
  max-width: var(--container);
  margin: 18px auto 0;
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------------- Press strip ---------------- */
.press-strip {
  padding: 56px var(--gutter);
  text-align: center;
  border-top: 1px solid rgba(16,30,6,0.08);
  border-bottom: 1px solid rgba(16,30,6,0.08);
}
.press-eyebrow {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--taupe-deep); margin: 0 0 26px;
}
.press-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 20px 52px; max-width: var(--container); margin: 0 auto;
}
.press-name {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--forest);
  opacity: 0.55;
  letter-spacing: 0.02em;
  transition: opacity 0.25s ease;
}
.press-name:hover { opacity: 0.95; }

/* ---------------- Founder story (asymmetric, offset frame) ---------------- */
.founder-story {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px var(--gutter);
}
.founder-story--reverse { grid-template-columns: 1.15fr 0.85fr; }
.founder-story--reverse .founder-image-col { order: 2; }
.founder-story--reverse .founder-text-col { order: 1; }

.founder-image-col { position: relative; }
.founder-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  z-index: 2;
}
.founder-frame img { width: 100%; height: 100%; object-fit: cover; }
.founder-image-col::before {
  content: "";
  position: absolute;
  top: 26px; left: -26px;
  width: 100%; height: 100%;
  border: 1.5px solid var(--taupe-deep);
  z-index: 1;
}
.founder-story--reverse .founder-image-col::before { left: auto; right: -26px; }

.founder-text-col h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 24px; }
.founder-body { font-size: 15.5px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 30px; max-width: 34em; }
.founder-quote {
  font-family: var(--font-accent); font-style: italic;
  font-size: clamp(19px, 2vw, 23px); color: var(--forest);
  border-left: 2px solid var(--taupe); padding-left: 22px; margin: 0 0 10px;
}
.founder-name { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--taupe-deep); padding-left: 24px; }

@media (max-width: 900px) {
  .founder-story, .founder-story--reverse { grid-template-columns: 1fr; padding: 80px var(--gutter); }
  .founder-story--reverse .founder-image-col, .founder-story--reverse .founder-text-col { order: initial; }
  .founder-image-col::before { display: none; }
}

/* ---------------- Statement (visual rhythm break) ---------------- */
.statement { padding: clamp(90px, 14vw, 160px) var(--gutter); text-align: center; }
.statement-text {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.25;
  max-width: 18em;
  margin: 0 auto;
}
.statement--forest { background: var(--forest); }
.statement--forest .statement-text { color: var(--cream); }
.statement--cream { background: var(--cream); }
.statement--cream .statement-text { color: var(--forest); }
.statement--taupe { background: var(--taupe); }
.statement--taupe .statement-text { color: var(--forest); }

/* ---------------- Best-sellers carousel ---------------- */
.bestsellers { padding: 110px 0 100px; }
.bestsellers .section-head { padding: 0 var(--gutter); }
.carousel-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px var(--gutter) 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--taupe) transparent;
}
.carousel-track::-webkit-scrollbar { height: 6px; }
.carousel-track::-webkit-scrollbar-thumb { background: var(--taupe); border-radius: 3px; }
.carousel-item {
  flex: 0 0 clamp(220px, 24vw, 300px);
  scroll-snap-align: start;
}

/* ---------------- Reveal on scroll ---------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------------- Section label row (shared) ---------------- */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  padding: 0 20px;
}
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); }

/* ---------------- Product grid (category / beachy pages) ---------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 22px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px var(--gutter) 120px;
}
.product-card { text-align: left; }
.product-card .img-wrap { position: relative; aspect-ratio: 3/3.85; overflow: hidden; background: var(--taupe); }
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover img { transform: scale(1.03); }
.product-card .p-name { margin-top: 14px; font-size: 14.5px; color: var(--forest); }
.product-card .p-price { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }

@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
}
.tile-caption h3 {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.01em;
}
/* Dropdown nav */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% -22px);
  left: 0;
  transform: translateY(0px);
  background: var(--forest);
  border: none;
  border-top: 2px solid var(--taupe);
  min-width: 220px;
  padding: 16px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 12px 24px;
  font-family: 'Caladea', 'Cambria', Georgia, serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--cream);
  transition: padding-left 0.2s ease, color 0.2s ease;
}
.nav-dropdown-menu a:hover {
  padding-left: 32px;
  color: var(--taupe);
}
.has-transparent-header #header-group,
.has-transparent-header #header-group *,
.has-transparent-header header-component,
.has-transparent-header .header-section,
.has-transparent-header .shopify-section-group-header-group {
  box-shadow: none !important;
  background-image: none !important;
}
.has-transparent-header #header-group::before,
.has-transparent-header #header-group::after,
.has-transparent-header header-component::before,
.has-transparent-header header-component::after {
  content: none !important;
  display: none !important;
  background: none !important;
}
.has-transparent-header #header-group {
  background: transparent !important;
}
.button,
.button-primary,
.button-secondary {
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 0;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.product-media-container img {
  object-fit: cover !important;
  object-position: top center !important;
}