/** Shopify CDN: Minification failed

Line 50:0 All "@import" rules must come first

**/
/* ================================================
   HERBORA GLOBAL CUSTOM STYLES
   File: assets/herbora-global.css
   
   HOW TO USE:
   1. Upload this file to Assets folder in Shopify theme
   2. Open layout/theme.liquid
   3. Add this line just BEFORE </head>:
      {{ 'herbora-global.css' | asset_url | stylesheet_tag }}
   4. Save
   ================================================ */

/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
  /* Brand Colors */
  --h-green: #2C5F2E;
  --h-gold: #C8A84B;
  --h-sage: #4A7C59;
  --h-light: #F8F5F0;
  --h-dark: #1C1C1C;
  --h-sage-light: #E8F0E9;
  --h-white: #FFFFFF;

  /* Typography */
  --h-font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --h-font-sans: 'Lato', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --h-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --h-shadow: 0 4px 20px rgba(44, 95, 46, 0.12);
  --h-shadow-lg: 0 12px 48px rgba(44, 95, 46, 0.18);

  /* Borders */
  --h-radius: 6px;
  --h-radius-lg: 14px;
  --h-radius-full: 100px;
}

/* ============================================
   GOOGLE FONTS IMPORT
   (Add to head of theme.liquid instead for performance)
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Lato:wght@300;400;600;700&display=swap');

/* ============================================
   BODY & BASE
   ============================================ */
body {
  font-family: var(--h-font-sans);
  color: var(--h-dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--h-font-serif);
}

/* ============================================
   HEADER CUSTOMIZATION (Sense Theme)
   ============================================ */
.header {
  border-bottom: 1px solid rgba(44, 95, 46, 0.1) !important;
}

/* Make header sticky */
.header-wrapper {
  position: sticky !important;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

/* Header navigation links */
.header__menu-item {
  font-family: var(--h-font-sans) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
  color: var(--h-dark) !important;
  transition: color 0.2s ease !important;
}

.header__menu-item:hover,
.header__active-menu-item {
  color: var(--h-green) !important;
}

/* Dropdown menu */
.mega-menu,
.header__submenu {
  border: none !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12) !important;
  border-radius: 0 0 12px 12px !important;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--h-green) !important;
  color: #fff !important;
  font-family: var(--h-font-sans) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
  padding: 1px !important;
  text-align: center;
}

/* Hide announcement bar slider arrows */
.announcement-bar .slider-button,
.announcement-bar__link .icon-arrow,
.announcement-bar .icon-caret {
  display: none !important;
}

.announcement-bar a {
  color: var(--h-gold) !important;
  text-decoration: none;
}

.announcement-bar a:hover {
  text-decoration: underline;
}

/* ============================================
   PRODUCT CARDS (Sense Theme)
   ============================================ */
.card-wrapper {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}

.card-wrapper:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--h-shadow-lg) !important;
}

/* Product card image */
.card__media {
  border-radius: 12px 12px 0 0 !important;
  overflow: hidden !important;
}

/* Product title */
.card__heading a {
  font-family: var(--h-font-sans) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--h-dark) !important;
  transition: color 0.2s ease !important;
}

.card__heading a:hover {
  color: var(--h-green) !important;
}

/* Price */
.price__regular .price-item,
.price__sale .price-item--sale {
  color: var(--h-green) !important;
  font-family: var(--h-font-sans) !important;
  font-weight: 700 !important;
}

.price__sale .price-item--regular {
  color: #aaa !important;
  font-weight: 400 !important;
}

/* Add to Cart button */
.product-form__submit,
.quick-add__submit {
  background: var(--h-green) !important;
  color: #fff !important;
  border: 2px solid var(--h-green) !important;
  font-family: var(--h-font-sans) !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  letter-spacing: 0.5px !important;
  border-radius: var(--h-radius) !important;
  transition: all 0.28s ease !important;
  padding: 14px 24px !important;
}

.product-form__submit:hover,
.quick-add__submit:hover {
  background: var(--h-sage) !important;
  border-color: var(--h-sage) !important;
  transform: translateY(-1px) !important;
  box-shadow: var(--h-shadow) !important;
}

/* Badge / label */
.badge {
  background: var(--h-gold) !important;
  color: var(--h-dark) !important;
  font-family: var(--h-font-sans) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  border-radius: 4px !important;
}

.badge--sale {
  background: #e74c3c !important;
  color: #fff !important;
}

/* ============================================
   COLLECTION PAGE
   ============================================ */
.collection-hero__title,
.collection__title {
  font-family: var(--h-font-serif) !important;
  color: var(--h-dark) !important;
  font-weight: 700 !important;
}

.facets__heading,
.filter-and-sort__filter-heading {
  font-family: var(--h-font-sans) !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: var(--h-dark) !important;
}

/* ============================================
   PRODUCT PAGE
   ============================================ */
.product__title {
  font-family: var(--h-font-serif) !important;
  font-size: clamp(24px, 4vw, 36px) !important;
  font-weight: 700 !important;
  color: var(--h-dark) !important;
  line-height: 1.25 !important;
}

.product__vendor {
  color: var(--h-sage) !important;
  font-family: var(--h-font-sans) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
}

/* Variant selector (swatch buttons) */
.variant-input-wrapper label,
.swatch-input__label {
  border-color: rgba(44, 95, 46, 0.25) !important;
  font-family: var(--h-font-sans) !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
}

.variant-input-wrapper input:checked+label,
.swatch-input__input:checked+.swatch-input__label {
  border-color: var(--h-green) !important;
  background: var(--h-green) !important;
  color: #fff !important;
}

/* ============================================
   QUANTITY SELECTOR
   ============================================ */
.quantity {
  border: 1.5px solid rgba(44, 95, 46, 0.2) !important;
  border-radius: var(--h-radius) !important;
}

.quantity__button {
  color: var(--h-green) !important;
  font-weight: 700 !important;
}

/* ============================================
   CART
   ============================================ */
.cart__title {
  font-family: var(--h-font-serif) !important;
  color: var(--h-dark) !important;
}

.cart-items th {
  font-family: var(--h-font-sans) !important;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #999 !important;
  font-weight: 600 !important;
}

.cart__checkout-button {
  background: var(--h-green) !important;
  font-family: var(--h-font-sans) !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  border-radius: var(--h-radius) !important;
}

.cart__checkout-button:hover {
  background: var(--h-sage) !important;
}

/* ============================================
   FORMS (Contact, Inputs)
   ============================================ */
.field__input,
.customer input,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  border-color: rgba(44, 95, 46, 0.2) !important;
  border-radius: var(--h-radius) !important;
  font-family: var(--h-font-sans) !important;
  font-size: 14px !important;
  transition: border-color 0.2s ease !important;
}

.field__input:focus,
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: var(--h-green) !important;
  box-shadow: 0 0 0 3px rgba(44, 95, 46, 0.08) !important;
  outline: none !important;
}

/* Labels */
.field__label {
  font-family: var(--h-font-sans) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  color: var(--h-dark) !important;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination__item {
  border-radius: 8px !important;
  font-family: var(--h-font-sans) !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
}

.pagination__item--current {
  background: var(--h-green) !important;
  color: #fff !important;
  border-color: var(--h-green) !important;
}

.pagination__item:hover:not(.pagination__item--current) {
  border-color: var(--h-green) !important;
  color: var(--h-green) !important;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  font-family: var(--h-font-sans) !important;
  font-size: 12px !important;
}

.breadcrumbs__item:not(:last-child) {
  color: #999 !important;
}

.breadcrumbs__item:last-child {
  color: var(--h-green) !important;
  font-weight: 600 !important;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.article-card__title {
  font-family: var(--h-font-serif) !important;
  font-weight: 700 !important;
  color: var(--h-dark) !important;
}

.article-card:hover .article-card__title {
  color: var(--h-green) !important;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.herbora-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--h-green);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(44, 95, 46, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
}

.herbora-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.herbora-scroll-top:hover {
  background: var(--h-sage);
  transform: translateY(-2px);
}

/* ============================================
   WHATSAPP BUTTON (Floating)
   ============================================ */
.herbora-whatsapp-btn {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px 10px 12px;
  border-radius: 100px;
  font-family: var(--h-font-sans);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
  overflow: hidden;
  max-width: 44px;
  white-space: nowrap;
}

.herbora-whatsapp-btn:hover {
  max-width: 200px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.herbora-whatsapp-btn .wa-text {
  opacity: 0;
  transition: opacity 0.2s ease 0.1s;
  width: 0;
}

.herbora-whatsapp-btn:hover .wa-text {
  opacity: 1;
  width: auto;
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--h-sage-light, #E8F0E9);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--h-green, #2C5F2E), var(--h-gold, #C8A84B));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--h-green, #2C5F2E);
}

/* ============================================
   SELECTION COLOR
   ============================================ */
::selection {
  background: rgba(200, 168, 75, 0.25);
  color: var(--h-dark);
}

/* ============================================
   GLOBAL BUTTONS
   ============================================ */
.h-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--h-radius);
  font-family: var(--h-font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.h-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.h-btn:hover::before {
  opacity: 1;
}

.h-btn--gold {
  background: var(--h-gold);
  color: var(--h-dark) !important;
  border-color: var(--h-gold);
}

.h-btn--gold::before {
  background: rgba(255, 255, 255, 0.12);
}

.h-btn--gold:hover {
  color: var(--h-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 168, 75, 0.4);
}

.h-btn--green {
  background: var(--h-green);
  color: var(--h-white) !important;
  border-color: var(--h-green);
}

.h-btn--green:hover {
  background: var(--h-sage);
  border-color: var(--h-sage);
  color: var(--h-white) !important;
  transform: translateY(-2px);
  box-shadow: var(--h-shadow);
}

.h-btn--outline {
  background: transparent;
  color: var(--h-white) !important;
  border-color: rgba(255, 255, 255, 0.45);
}

.h-btn--outline:hover {
  border-color: var(--h-white);
  color: var(--h-white) !important;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.h-btn--outline-green {
  background: transparent;
  color: var(--h-green) !important;
  border-color: var(--h-green);
}

.h-btn--outline-green:hover {
  background: var(--h-green);
  color: var(--h-white) !important;
  transform: translateY(-2px);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.h-text-green {
  color: var(--h-green) !important;
}

.h-text-gold {
  color: var(--h-gold) !important;
}

.h-bg-green {
  background: var(--h-green) !important;
}

.h-bg-light {
  background: var(--h-light) !important;
}

.h-mt-0 {
  margin-top: 0 !important;
}

.h-mb-0 {
  margin-bottom: 0 !important;
}

.h-text-center {
  text-align: center !important;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 768px) {
  .h-hide-mobile {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .h-hide-desktop {
    display: none !important;
  }
}

/* ============================================
   PAGE TRANSITIONS (optional)
   ============================================ */
.shopify-section {
  animation: herbora-fadein 0.4s ease both;
}

@keyframes herbora-fadein {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
/* ============================================
   PRINT STYLES
   ============================================ */
@media print {

  .header,
  .footer,
  .herbora-newsletter,
  .herbora-whatsapp-btn,
  .herbora-scroll-top {
    display: none !important;
  }
}

/* ============================================
   CART NOTIFICATION OVERRIDES
   ============================================ */
.cart-notification {
  background: var(--h-white) !important;
  padding: 24px !important;
  border-radius: 0 0 12px 12px !important;
  overflow: hidden !important;
  box-shadow: 0 16px 48px rgba(44, 95, 46, 0.2) !important;
  border: 1px solid var(--h-gold) !important;
  border-top: none !important;
}

.cart-notification__header {
  border-bottom: 1px solid rgba(44, 95, 46, 0.1) !important;
  padding-bottom: 16px !important;
  margin-bottom: 16px !important;
}

.cart-notification__heading {
  font-family: var(--h-font-sans) !important;
  color: var(--h-green) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.cart-notification__heading svg {
  color: var(--h-green) !important;
  width: 18px !important;
  height: 18px !important;
}

.cart-notification-product__name {
  font-family: var(--h-font-serif) !important;
  color: var(--h-dark) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.cart-notification-product__name:hover {
  color: var(--h-green) !important;
}

.cart-notification-product__option {
  color: #666 !important;
  font-family: var(--h-font-sans) !important;
  font-size: 13px !important;
}

.cart-notification__links {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  text-align: center !important;
}

/* Layout for View Cart & Checkout */
.cart-notification__links>* {
  margin: 0 !important;
  /* Reset Sense margins */
}

/* Base button styles inside cart notification */
.cart-notification__links .button {
  font-family: var(--h-font-sans) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  padding: 12px 24px !important;
  border-radius: var(--h-radius) !important;
  box-shadow: none !important;
  text-transform: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 44px !important;
  transition: all 0.28s ease !important;
}

/* Remove default Sense theme double borders */
.cart-notification__links .button::after,
.cart-notification__links .button::before {
  display: none !important;
  box-shadow: none !important;
}

/* View Cart Button (usually a link) */
.cart-notification__links a.button {
  background: var(--h-green) !important;
  color: var(--h-white) !important;
  border: 2px solid var(--h-green) !important;
}

.cart-notification__links a.button:hover {
  background: var(--h-sage) !important;
  border-color: var(--h-sage) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 95, 46, 0.2) !important;
}

/* Checkout Button */
.cart-notification__links form>.button,
.cart-notification__links .button[name="checkout"] {
  background: var(--h-gold) !important;
  color: var(--h-dark) !important;
  border: 2px solid var(--h-gold) !important;
}

.cart-notification__links form>.button:hover,
.cart-notification__links .button[name="checkout"]:hover {
  background: var(--h-gold) !important;
  color: var(--h-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 168, 75, 0.3) !important;
}

/* Continue Shopping (Turn text link into Outline Button) */
.cart-notification__links button.link,
.cart-notification__links .link[type="button"] {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  background: transparent !important;
  color: var(--h-green) !important;
  border: 2px solid rgba(44, 95, 46, 0.2) !important;
  font-family: var(--h-font-sans) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  padding: 12px 24px !important;
  border-radius: var(--h-radius) !important;
  text-decoration: none !important;
  box-shadow: none !important;
  min-height: 44px !important;
  transition: all 0.28s ease !important;
  margin: 0 !important;
}

.cart-notification__links button.link:hover,
.cart-notification__links .link[type="button"]:hover {
  background: rgba(44, 95, 46, 0.05) !important;
  border-color: var(--h-green) !important;
  text-decoration: none !important;
}