/** Shopify CDN: Minification failed

Line 1002:0 Expected "}" to go with "{"

**/
/* ==========================================================================
   CSS Variables & Theme
   ========================================================================== */
   :root {
    /* Brand Colors derived from logo */
    --brand-primary: #83804F; /* Olive gold */
    --brand-light: #D6C7B2;   /* Aesthetic warm latte brown */
    --brand-dark: #1A1A1A;    /* Dark text */
    --brand-mid: #A5A27A;     /* Mid tone overlay/buttons */
    
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #6b6b6b;
    --card-bg: #ffffff;
    --page-bg: var(--brand-light);
  
    /* Typography */
    --font-serif: 'DM Serif Display', serif;
    --font-sans: 'DM Sans', sans-serif;
  
    /* Spacing & Radius */
    --border-radius-lg: 28px;
    --border-radius-md: 20px;
    --border-radius-sm: 16px;
    --border-radius-pill: 999px;
  }
  
  /* ==========================================================================
     Reset & Base Styles
     ========================================================================== */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-sans);
    background-color: var(--page-bg) !important;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4, h5, h6, blockquote {
    font-family: var(--font-serif);
    font-weight: normal;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  button, input {
    font-family: var(--font-sans);
    border: none;
    outline: none;
  }
  
  ul {
    list-style: none;
  }
  
  .section-padding {
    padding: 32px 5%;
  }
  
  /* Prevent double padding between adjacent padded sections */
  .shopify-section:has(.section-padding) + .shopify-section:has(.section-padding) .section-padding {
    padding-top: 0 !important;
  }
  
  @media (min-width: 768px) {
    .section-padding {
      padding: 60px 5%;
    }
  }
  
  @media (min-width: 1024px) {
    .section-padding {
      padding: 80px 8%;
    }
  }
  
  /* ==========================================================================
     Components
     ========================================================================== */
  .btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius-pill);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    position: relative;
    z-index: 2;
  }
  
  .btn:active {
    transform: scale(0.97);
  }
  
  .btn-primary {
    background-color: var(--white);
    color: var(--text-dark);
  }
  .btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  
  .btn-primary-dark {
    background-color: var(--brand-primary);
    color: var(--white);
  }
  .btn-primary-dark:hover {
    background-color: var(--brand-dark);
  }
  
  .btn-small {
    padding: 8px 24px;
    background-color: var(--brand-primary);
    color: var(--white);
    font-size: 14px;
  }
  
  .btn-outline {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 12px 28px;
  }
  
  .btn-outline-white {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
  }
  .btn-outline-white:hover {
    background-color: var(--white);
    color: var(--brand-primary);
  }
  
  /* ==========================================================================
     Animations
     ========================================================================== */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .stagger-children .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
  .stagger-children .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
  .stagger-children .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
  .stagger-children .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
  
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  
  /* ==========================================================================
     Section 1: Navbar
     ========================================================================== */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 5%;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  }
  
  .navbar.scrolled {
    background: rgba(250, 245, 240, 0.85); /* brand-light with opacity */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 5%;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .brand-logo img {
    height: 32px;
    width: auto;
  }
  
  .brand-name {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--white);
    transition: color 0.3s ease;
  }
  
  .navbar.scrolled .brand-name {
    color: var(--text-dark);
  }
  
  .nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .nav-links {
    display: none;
    background: var(--white);
    border-radius: var(--border-radius-pill);
    padding: 6px 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  
  @media (min-width: 768px) {
    .nav-links {
      display: flex;
      gap: 4px;
    }
  }
  
  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--border-radius-pill);
    transition: background 0.2s ease, color 0.2s ease;
  }
  
  .nav-links a:hover {
    background: var(--page-bg);
  }
  
  .cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--brand-primary);
    color: var(--white);
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  .cart-btn:hover {
    transform: scale(1.05);
  }
  
  /* ==========================================================================
     Section 2: Hero
     ========================================================================== */
  .hero {
    padding: 0;
  }
  
  .hero-card {
    position: relative;
    width: calc(100% - 32px);
    max-width: 1400px;
    aspect-ratio: 3/4;
    height: auto;
    margin: 16px auto 0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Move content to the bottom */
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
  }
  
  @media (min-width: 768px) {
    .hero-card {
      aspect-ratio: 16/9;
      height: auto;
      min-height: 60vh;
      width: calc(100% - 64px);
      margin: 32px auto 0;
      padding-bottom: 60px;
    }
  }
  
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; /* Keep logo centered */
    z-index: -2;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
    z-index: -1;
  }
  
  .hero-content {
    max-width: 800px;
    padding: 0 20px;
    color: var(--white);
    z-index: 1;
    margin-top: 0;
  }
  
  .hero-content h1 {
    font-family: var(--font-serif);
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    font-weight: 400;
    letter-spacing: -0.02em;
  }
  
  @media (min-width: 768px) {
    .hero-content h1 { font-size: 56px; margin-bottom: 24px; }
  }
  @media (min-width: 1024px) {
    .hero-content h1 { font-size: 72px; }
  }
  
  .hero-content p {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
  }
  
  @media (min-width: 768px) {
    .hero-content p { font-size: 16px; margin-bottom: 40px; }
  }
  
  .hero-press {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    overflow: hidden;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
    z-index: 1;
  }
  
  .marquee-track {
    display: flex;
    width: 200%;
    animation: marquee 30s linear infinite;
    gap: 40px;
  }
  
  .marquee-track span {
    color: var(--white);
    opacity: 0.6;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
  }
  
  /* ==========================================================================
     Section 3: Brand Intro
     ========================================================================== */
  .brand-intro {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  @media (min-width: 768px) {
    .brand-intro {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
  }
  
  .intro-left {
    flex: 0 0 60%;
  }
  
  .intro-left h2 {
    font-size: 40px;
    line-height: 1.2;
    color: var(--brand-dark);
  }
  
  @media (min-width: 768px) {
    .intro-left h2 { font-size: 52px; }
  }
  @media (min-width: 1024px) {
    .intro-left h2 { font-size: 64px; }
  }
  
  .intro-right {
    flex: 0 0 35%;
  }
  
  .intro-right p {
    font-size: 16px;
    color: var(--text-muted);
  }
  
  .divider {
    height: 1px;
    background-color: rgba(0,0,0,0.05);
    margin: 0 5%;
  }
  
  /* ==========================================================================
     Section 4: Featured Products Grid
     ========================================================================== */
  .product-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 24px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .product-grid::-webkit-scrollbar {
    display: none;
  }
  
  @media (min-width: 1024px) {
    .product-grid {
      display: grid;
      overflow-x: visible;
      grid-template-columns: repeat(12, 1fr);
      grid-auto-rows: 400px;
      gap: 24px;
    }
    
    /* Row 1 */
    .product-grid > :nth-child(1) { grid-column: span 7; }
    .product-grid > :nth-child(2) { grid-column: span 5; }
    /* Row 2 */
    .product-grid > :nth-child(3) { grid-column: span 4; }
    .product-grid > :nth-child(4) { grid-column: span 4; }
    .product-grid > :nth-child(5) { grid-column: span 4; }
    /* Row 3 */
    .product-grid > :nth-child(6) { grid-column: span 5; }
    .product-grid > :nth-child(7) { grid-column: span 7; }
  }
  
  .product-card {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    min-height: 340px;
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
  
  .full-card-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
  
  @media (min-width: 1024px) {
    .product-card {
      flex: auto;
      min-height: 300px;
    }
  }
  
  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  }
  
  .type-a {
    background-color: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  
  .type-a .img-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: var(--border-radius-md);
    background-color: rgba(255, 255, 255, 0.4); /* Subtle frosted look */
    transition: transform 0.3s ease;
  }
  
  .type-a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .type-a .card-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
  }
  
  .type-a h3 {
    font-size: 20px;
    line-height: 1.3;
    min-height: 52px; /* Enforce 2 lines height */
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .type-a .price {
    font-size: 14px;
    color: var(--text-muted);
  }
  
  .type-b {
    background-color: var(--brand-mid);
  }
  
  .type-b .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .type-b:hover .bg-img {
    transform: scale(1.03);
  }
  
  .type-b .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    text-align: center;
    color: var(--white);
  }
  
  .type-b h3 {
    font-size: 36px;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  /* ==========================================================================
     Section 5: Categories Strip
     ========================================================================== */
  .categories-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    text-align: center;
  }
  
  .category-strip {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 24px;
    scrollbar-width: none; /* Firefox */
  }
  
  .category-strip::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  
  .category-pill {
    flex: 0 0 auto;
    background-color: rgba(139, 134, 74, 0.08); /* brand-primary with low opacity */
    padding: 16px 24px;
    border-radius: var(--border-radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    min-width: 140px;
  }
  
  .category-pill:hover {
    background-color: rgba(139, 134, 74, 0.15);
  }
  
  .category-pill .icon {
    font-size: 24px;
  }
  
  .category-pill span:not(.icon) {
    font-weight: 500;
    font-size: 14px;
  }
  
  /* ==========================================================================
     Section 6: Brand Story
     ========================================================================== */
  .brand-story {
    background-color: var(--brand-primary);
    color: var(--white);
  }
  
  .story-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }
  
  .story-content blockquote {
    font-size: 36px;
    font-style: italic;
    line-height: 1.3;
    margin-bottom: 60px;
  }
  
  @media (min-width: 768px) {
    .story-content blockquote { font-size: 48px; }
  }
  
  .story-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
  }
  
  @media (min-width: 768px) {
    .story-grid {
      flex-direction: row;
      align-items: center;
    }
    .story-left, .story-right {
      flex: 1;
    }
  }
  
  .story-left p {
    font-size: 16px;
    opacity: 0.8;
  }
  
  .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .tag {
    font-size: 14px;
    opacity: 0.9;
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: var(--border-radius-pill);
  }
  
  /* ==========================================================================
     Section 7: Social Proof (Masonry)
     ========================================================================== */
  .social-header {
    text-align: center;
    margin-bottom: 48px;
  }
  
  .social-header h2 {
    font-size: 40px;
    margin-bottom: 8px;
  }
  
  .social-header p {
    color: var(--text-muted);
  }
  
  .masonry-grid {
    column-count: 2;
    column-gap: 20px;
    margin-bottom: 40px;
  }
  
  @media (min-width: 768px) {
    .masonry-grid {
      column-count: 3;
    }
  }
  
  .masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
  }
  
  .masonry-item img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .masonry-item:hover img {
    transform: scale(1.05);
  }
  
  .social-footer {
    text-align: center;
  }
  
  .instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-primary);
    font-weight: 500;
  }
  
  /* ==========================================================================
     Section 8: Newsletter
     ========================================================================== */
  .newsletter-card {
    background-color: var(--brand-primary);
    border-radius: var(--border-radius-lg);
    padding: 60px 20px;
    text-align: center;
    color: var(--white);
    max-width: 1000px;
    margin: 0 auto;
  }
  
  @media (min-width: 768px) {
    .newsletter-card {
      padding: 80px;
    }
  }
  
  .newsletter-card h2 {
    font-size: 36px;
    margin-bottom: 16px;
  }
  
  @media (min-width: 768px) {
    .newsletter-card h2 { font-size: 48px; }
  }
  
  .newsletter-card p {
    opacity: 0.9;
    margin-bottom: 40px;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto 16px;
  }
  
  @media (min-width: 480px) {
    .newsletter-form {
      flex-direction: row;
      background: var(--white);
      border-radius: var(--border-radius-pill);
      padding: 6px;
    }
  }
  
  .newsletter-form input {
    flex-grow: 1;
    padding: 14px 24px;
    border-radius: var(--border-radius-pill);
    border: none;
    font-size: 16px;
  }
  
  @media (min-width: 480px) {
    .newsletter-form input {
      border-radius: var(--border-radius-pill) 0 0 var(--border-radius-pill);
      background: transparent;
    }
  }
  
  .micro-copy {
    font-size: 12px;
    opacity: 0.6;
  }
  
  /* ==========================================================================
     Section 9: Footer
     ========================================================================== */
  .footer {
    background-color: var(--brand-dark);
    color: var(--white);
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  @media (min-width: 768px) {
    .footer-grid {
      grid-template-columns: 2fr 1fr 1fr 1fr;
    }
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }
  
  .footer-logo img {
    height: 32px;
    filter: brightness(0) invert(1);
  }
  
  .footer-logo span {
    font-family: var(--font-serif);
    font-size: 20px;
  }
  
  .brand-col p {
    opacity: 0.6;
    font-size: 14px;
  }
  
  .footer-col h4 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
  }
  
  .footer-col a {
    display: block;
    font-size: 14px;
    opacity: 0.6;
    margin-bottom: 12px;
    transition: opacity 0.2s ease;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  
  .footer-col a:hover {
    opacity: 1;
  }
  
  .social-icons {
    display: flex;
    gap: 12px;
  }
  
  .social-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-pill);
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
  }
  
  .social-btn:hover {
    background: var(--white);
    color: var(--brand-dark);
    opacity: 1;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 5% calc(24px + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
  }
  
  @media (min-width: 768px) {
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
    }
  }
  
  .legal-links {
    display: flex;
    justify-content: center;
    gap: 24px;
  }

  /* RISHORA CUSTOM: Dropdown 3D & Button Interactions */
  .header__submenu {
    transform-origin: top center;
    animation: dropdown3D 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  @keyframes dropdown3D {
    from { opacity: 0; transform: perspective(1000px) rotateX(-15deg) translateY(-15px); }
    to { opacity: 1; transform: perspective(1000px) rotateX(0) translateY(0); }
  }

  .btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s ease, box-shadow 0.3s ease;
  }
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.15);
  }
  .underline-links-hover a {
    position: relative;
    text-decoration: none !important;
  }
  .underline-links-hover a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: currentColor;
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .underline-links-hover a:hover::after {

