/** Shopify CDN: Minification failed

Line 595:21 Unexpected "*"

**/
/* ==========================================================================
   SEEBOrganics — Full Site Polish
   Drop this into Shopify: Online Store > Themes > Edit Code > Assets
   Then add to theme.liquid before </head>:
   {{ 'custom-polish.css' | asset_url | stylesheet_tag }}
   ========================================================================== */

/* ---------- 1. TYPOGRAPHY REFINEMENT ---------- */

/* Tighten heading letter-spacing for luxury feel */
h1, h2, h3, h4, h5, h6,
.h0, .h1, .h2, .h3, .h4, .h5,
.title,
.card__heading,
.banner__heading {
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, .h1, .h0 {
  letter-spacing: -0.015em;
}

/* Body text — softer, more breathable */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

p {
  line-height: 1.7;
  max-width: 72ch;
}

/* Small text / captions get a touch more spacing */
.caption,
.price,
.card__information,
.product__text {
  letter-spacing: 0.04em;
}

/* Uppercase labels — refined tracking */
.badge,
.card__badge,
.announcement-bar__message,
.header__menu-item span {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85em;
}


/* ---------- 2. BUTTON SYSTEM ---------- */

/* Base button transitions */
.button,
.shopify-challenge__button,
.customer button,
button.shopify-payment-button__button,
.shopify-payment-button__button--unbranded,
.cart__checkout-button,
.form__submit {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    filter 0.3s ease;
  will-change: transform, box-shadow;
  isolation: isolate;
}

/* Shimmer sweep on hover */
.button::after,
.cart__checkout-button::after,
.form__submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 100%
  );
  transition: left 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.button:hover::after,
.cart__checkout-button:hover::after,
.form__submit:hover::after {
  left: 100%;
}

/* Primary button hover */
.button:hover,
.shopify-challenge__button:hover,
.customer button:hover,
button.shopify-payment-button__button:hover,
.cart__checkout-button:hover,
.form__submit:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 12px rgba(var(--color-button), 0.25),
    0 1px 3px rgba(var(--color-button), 0.1);
  filter: brightness(1.06);
}

/* Button press */
.button:active,
.shopify-challenge__button:active,
.customer button:active,
button.shopify-payment-button__button:active,
.cart__checkout-button:active,
.form__submit:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 1px 4px rgba(var(--color-button), 0.15);
  transition-duration: 0.1s;
}

/* Secondary / outline button */
.button--secondary:hover {
  box-shadow:
    0 4px 12px rgba(var(--color-foreground), 0.1),
    0 1px 3px rgba(var(--color-foreground), 0.06);
  border-color: rgba(var(--color-foreground), 0.3);
}

/* Focus states — accessible glow */
.button:focus-visible,
.shopify-payment-button__button:focus-visible {
  outline: 2px solid rgba(var(--color-button), 0.5);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(var(--color-button), 0.15);
}

/* Quantity buttons in cart */
.quantity__button {
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.quantity__button:hover {
  background-color: rgba(var(--color-foreground), 0.08);
  transform: scale(1.1);
}


/* ---------- 3. PRODUCT CARDS ---------- */

.card-wrapper,
.card--standard,
.card--card {
  transition:
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.card-wrapper:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 40px rgba(var(--color-shadow), 0.1),
    0 4px 12px rgba(var(--color-shadow), 0.06);
}

/* Image zoom on hover */
.card__media .media img,
.card__media .media svg {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-wrapper:hover .card__media .media img,
.card-wrapper:hover .card__media .media svg {
  transform: scale(1.05);
}

.card__media .media {
  overflow: hidden;
}

/* Card heading underline animation */
.card__heading a {
  position: relative;
  display: inline;
  background-image: linear-gradient(
    rgba(var(--color-foreground), 0.3),
    rgba(var(--color-foreground), 0.3)
  );
  background-size: 0% 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
}

.card-wrapper:hover .card__heading a {
  background-size: 100% 1px;
}

/* Price styling */
.price-item--regular,
.price-item--sale {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.price-item--sale {
  color: rgb(var(--color-foreground));
}

/* Badge polish */
.card__badge .badge {
  font-size: 0.7rem;
  padding: 0.4em 0.8em;
  letter-spacing: 0.12em;
  border-radius: 2px;
}


/* ---------- 4. NAVIGATION & HEADER ---------- */

/* Header refinement */
.header {
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Sticky header shadow */
.shopify-section-header-sticky .header {
  box-shadow: 0 1px 0 rgba(var(--color-foreground), 0.06);
}

/* Nav link hover */
.header__menu-item,
.list-menu__item--link {
  position: relative;
  transition: color 0.25s ease;
}

/* Elegant underline on nav items */
.header__menu-item > span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: currentColor;
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header__menu-item:hover > span::after {
  width: 100%;
  left: 0%;
}

/* Header icons (cart, search, account) */
.header__icon,
.header__icon--cart {
  transition: transform 0.25s ease, color 0.25s ease;
}

.header__icon:hover,
.header__icon--cart:hover {
  transform: scale(1.08);
  color: rgba(var(--color-foreground), 1);
}

/* Cart count badge pulse */
.cart-count-bubble {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.header__icon--cart:hover .cart-count-bubble {
  transform: scale(1.15);
}

/* Dropdown menus */
.header__submenu,
.mega-menu__content {
  animation: menuReveal 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes menuReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mega menu items stagger */
.mega-menu__link {
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mega-menu__link:hover {
  padding-left: 4px;
  color: rgba(var(--color-foreground), 1);
}


/* ---------- 5. ANNOUNCEMENT BAR ---------- */

.announcement-bar {
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  transition: background-color 0.3s ease;
}

.announcement-bar__link:hover {
  opacity: 0.85;
}


/* ---------- 6. HERO / BANNER SECTIONS ---------- */

.banner__content {
  animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Banner button extra punch */
.banner__buttons .button {
  backdrop-filter: blur(4px);
}

/* Image overlay for text readability */
.banner__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.25) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}


/* ---------- 7. COLLECTION PAGE ---------- */

/* Collection title entrance */
.collection-hero__title {
  animation: fadeUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* Filter/sort refinement */
.facets__wrapper {
  border-bottom: 1px solid rgba(var(--color-foreground), 0.08);
  padding-bottom: 1.2rem;
}

.facet-checkbox input[type='checkbox'] {
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

/* Grid items stagger animation on load */
.collection .grid__item {
  animation: cardFadeIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.collection .grid__item:nth-child(1) { animation-delay: 0.05s; }
.collection .grid__item:nth-child(2) { animation-delay: 0.1s; }
.collection .grid__item:nth-child(3) { animation-delay: 0.15s; }
.collection .grid__item:nth-child(4) { animation-delay: 0.2s; }
.collection .grid__item:nth-child(5) { animation-delay: 0.25s; }
.collection .grid__item:nth-child(6) { animation-delay: 0.3s; }
.collection .grid__item:nth-child(7) { animation-delay: 0.35s; }
.collection .grid__item:nth-child(8) { animation-delay: 0.4s; }

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ---------- 8. PRODUCT PAGE ---------- */

/* Product media transitions */
.product__media-item .media img {
  transition: transform 0.5s ease;
}

.product__media-item:hover .media img {
  transform: scale(1.03);
}

/* Variant pills */
.product-form__input .field__label,
variant-radios label {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

variant-radios label:hover {
  border-color: rgba(var(--color-foreground), 0.5);
  box-shadow: 0 2px 8px rgba(var(--color-foreground), 0.08);
}

/* Product info stagger */
.product__info-wrapper > * {
  animation: fadeUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.product__info-wrapper > *:nth-child(1) { animation-delay: 0.1s; }
.product__info-wrapper > *:nth-child(2) { animation-delay: 0.15s; }
.product__info-wrapper > *:nth-child(3) { animation-delay: 0.2s; }
.product__info-wrapper > *:nth-child(4) { animation-delay: 0.25s; }
.product__info-wrapper > *:nth-child(5) { animation-delay: 0.3s; }

/* Accordion / collapsible tabs */
.product__accordion .accordion__content {
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.3s ease;
}

details[open] summary .icon-caret {
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}


/* ---------- 9. CART DRAWER ---------- */

.cart-drawer {
  animation: drawerSlide 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes drawerSlide {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Cart items */
.cart-item {
  transition: background-color 0.2s ease;
  border-radius: 8px;
  padding: 0.8rem;
}

.cart-item:hover {
  background-color: rgba(var(--color-foreground), 0.02);
}

/* Cart item image */
.cart-item__media img {
  transition: transform 0.3s ease;
  border-radius: 6px;
}

.cart-item:hover .cart-item__media img {
  transform: scale(1.04);
}

/* Remove button */
cart-remove-button a {
  transition: color 0.2s ease, transform 0.2s ease;
}

cart-remove-button a:hover {
  color: rgba(var(--color-foreground), 1);
  transform: scale(1.1);
}


/* ---------- 10. FORMS & INPUTS ---------- */

.field__input,
.select__select,
.customer .field input,
.customer .field textarea,
.form__comment textarea {
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.field__input:focus,
.select__select:focus,
.customer .field input:focus,
.customer .field textarea:focus,
.form__comment textarea:focus {
  border-color: rgba(var(--color-foreground), 0.4);
  box-shadow: 0 0 0 3px rgba(var(--color-foreground), 0.06);
  outline: none;
}

.field__input:hover,
.select__select:hover {
  border-color: rgba(var(--color-foreground), 0.25);
}

/* Newsletter form */
.newsletter-form__field-wrapper .field__input {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}


/* ---------- 11. FOOTER ---------- */

/* Footer links */
.footer-block__details-content a {
  position: relative;
  transition: color 0.2s ease;
}

.footer-block__details-content a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.footer-block__details-content a:hover::after {
  width: 100%;
}

.footer-block__details-content a:hover {
  color: rgba(var(--color-foreground), 1);
}

/* Social icons */
.social-icons__link {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
}

.social-icons__link:hover {
  transform: translateY(-3px) scale(1.1);
  opacity: 1;
}

/* Payment icons subtle presence */
.footer__payment .list--payment .list-payment__item {
  transition: opacity 0.2s ease;
  opacity: 0.6;
}

.footer__payment .list--payment .list-payment__item:hover {
  opacity: 1;
}


/* ---------- 12. GLOBAL SPACING & RHYTHM ---------- */

/* Slightly more generous section spacing for luxury feel */
@media screen and (min-width: 750px) {
  .section-template--*:not(:first-child) {
    margin-top: calc(var(--spacing-sections-desktop) * 1.1);
  }
}

/* Content max-width for readability */
.rich-text__wrapper,
.rich-text__text {
  max-width: 68ch;
  margin-left: auto;
  margin-right: auto;
}


/* ---------- 13. SCROLL ANIMATIONS (for browsers that support it) ---------- */

@media (prefers-reduced-motion: no-preference) {
  .scroll-trigger {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .scroll-trigger.scroll-trigger--active,
  .scroll-trigger.animate--slide-in {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ---------- 14. MICRO-INTERACTIONS ---------- */

/* Smooth image loading placeholder */
.media img {
  transition: opacity 0.4s ease;
}

img[loading='lazy'] {
  opacity: 0;
}

img[loading='lazy'].loaded,
img[loading='lazy']:not([src='']) {
  opacity: 1;
}

/* Selection highlight */
::selection {
  background: rgba(var(--color-button), 0.15);
  color: rgb(var(--color-foreground));
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Focus ring consistency */
*:focus-visible {
  outline: 2px solid rgba(var(--color-foreground), 0.4);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Scrollbar refinement (Webkit) */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(var(--color-foreground), 0.03);
}

::-webkit-scrollbar-thumb {
  background: rgba(var(--color-foreground), 0.15);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--color-foreground), 0.3);
}


/* ---------- 15. LOADING & SKELETON STATES ---------- */

.loading__spinner {
  transition: opacity 0.3s ease;
}

/* Skeleton shimmer for async-loaded content */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton {
  background: linear-gradient(
    90deg,
    rgba(var(--color-foreground), 0.04) 25%,
    rgba(var(--color-foreground), 0.08) 50%,
    rgba(var(--color-foreground), 0.04) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.8s infinite;
}


/* ---------- 16. RESPONSIVE TOUCH REFINEMENTS ---------- */

@media (hover: none) and (pointer: coarse) {
  /* Disable hover transforms on touch — they stick on tap */
  .card-wrapper:hover {
    transform: none;
    box-shadow: none;
  }

  .card-wrapper:hover .card__media .media img {
    transform: none;
  }

  /* Bigger touch targets */
  .button {
    min-height: 48px;
    min-width: 48px;
  }

  .quantity__button {
    min-height: 44px;
    min-width: 44px;
  }

  /* No shimmer sweep on mobile — saves GPU */
  .button::after,
  .cart__checkout-button::after {
    display: none;
  }
}

/* ---------- 17. REDUCED MOTION RESPECT ---------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .card-wrapper:hover {
    transform: none;
  }

  .button:hover {
    transform: none;
  }
}
/* ===== Shop Now CTA — High Impact ===== */
.btn-primary,
a.btn.btn-primary {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 14px 40px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(var(--color-button), 1);
  background: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  border-radius: var(--buttons-radius, 4px);
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease,
    letter-spacing 0.3s ease,
    background-color 0.3s ease;
  will-change: transform;
  isolation: isolate;
}

/* Shimmer sweep */
.btn-primary::before,
a.btn.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  transition: left 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

/* Hover — lift + glow + shimmer */
.btn-primary:hover,
a.btn.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  letter-spacing: 0.18em;
  box-shadow:
    0 6px 20px rgba(var(--color-button), 0.35),
    0 2px 6px rgba(var(--color-button), 0.15);
}

.btn-primary:hover::before,
a.btn.btn-primary:hover::before {
  left: 100%;
}

/* Press */
.btn-primary:active,
a.btn.btn-primary:active {
  transform: translateY(0) scale(0.96);
  box-shadow: 0 2px 6px rgba(var(--color-button), 0.2);
  transition-duration: 0.1s;
}

/* Focus ring */
.btn-primary:focus-visible,
a.btn.btn-primary:focus-visible {
  outline: 2px solid rgba(var(--color-button), 0.5);
  outline-offset: 4px;
}

/* Kill hover effects on touch */
@media (hover: none) and (pointer: coarse) {
  .btn-primary:hover,
  a.btn.btn-primary:hover {
    transform: none;
    letter-spacing: 0.14em;
    box-shadow: none;
  }
  .btn-primary::before,
  a.btn.btn-primary::before {
    display: none;
  }
}/* ===== Shop Now — Forest Green Override ===== */
.btn-primary,
a.btn.btn-primary {
  background: #3e5345;
  border-color: #3e5345;
  color: #ffffff;
}

.btn-primary:hover,
a.btn.btn-primary:hover {
  background: #4a6352;
  border-color: #4a6352;
  box-shadow:
    0 6px 20px rgba(62, 83, 69, 0.4),
    0 2px 6px rgba(62, 83, 69, 0.2);
}

.btn-primary:active,
a.btn.btn-primary:active {
  background: #354a3c;
  border-color: #354a3c;
  box-shadow: 0 2px 6px rgba(62, 83, 69, 0.25);
}
/* ===== Trust Badges — Motion & Polish ===== */

/* Staggered fade-in on page load */
.grid-3 > div {
  opacity: 0;
  transform: translateY(24px);
  animation: trustFadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.grid-3 > div:nth-child(1) { animation-delay: 0.1s; }
.grid-3 > div:nth-child(2) { animation-delay: 0.25s; }
.grid-3 > div:nth-child(3) { animation-delay: 0.4s; }

@keyframes trustFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover — card lifts, icon animates */
.grid-3 > div {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease;
  border-radius: 12px;
  cursor: default;
}

.grid-3 > div:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(62, 83, 69, 0.1),
              0 4px 8px rgba(62, 83, 69, 0.06);
}

/* Icon — float + color pulse on hover */
.grid-3 > div iconify-icon {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              color 0.3s ease;
}

.grid-3 > div:hover iconify-icon {
  transform: translateY(-4px) scale(1.15);
  color: #3e5345;
}

/* Heading — subtle underline wipe */
.grid-3 > div h4 {
  position: relative;
  display: inline-block;
}

.grid-3 > div h4::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #3e5345;
  border-radius: 1px;
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              left 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.grid-3 > div:hover h4::after {
  width: 60%;
  left: 20%;
}

/* Description text fades to full contrast on hover */
.grid-3 > div p {
  transition: color 0.3s ease;
}

.grid-3 > div:hover p {
  color: #444444;
}

/* Kill hover motion on touch devices */
@media (hover: none) and (pointer: coarse) {
  .grid-3 > div:hover {
    transform: none;
    box-shadow: none;
  }
  .grid-3 > div:hover iconify-icon {
    transform: none;
  }
  .grid-3 > div:hover h4::after {
    width: 0;
  }
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  .grid-3 > div {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
/* ===== Featured Products Grid — Motion & Polish ===== */

/* Staggered entrance */
.fp-product-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fpCardIn 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.fp-product-card:nth-child(1) { animation-delay: 0.1s; }
.fp-product-card:nth-child(2) { animation-delay: 0.25s; }
.fp-product-card:nth-child(3) { animation-delay: 0.4s; }
.fp-product-card:nth-child(4) { animation-delay: 0.55s; }

@keyframes fpCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card hover — lift + shadow */
.fp-product-card {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease;
  border-radius: 10px;
}

.fp-product-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 16px 40px rgba(62, 83, 69, 0.12),
    0 4px 10px rgba(62, 83, 69, 0.06);
}

/* Image — zoom + slight brightness lift */
.fp-product-image-wrapper {
  overflow: hidden;
  border-radius: 8px;
}

.fp-product-image {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.4s ease;
}

.fp-product-card:hover .fp-product-image {
  transform: scale(1.07);
  filter: brightness(1.04);
}

/* Product name — fade to full black + underline wipe */
.fp-product-name {
  position: relative;
  transition: color 0.3s ease;
}

.fp-product-name::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #3e5345;
  border-radius: 1px;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fp-product-card:hover .fp-product-name {
  color: #3e5345;
}

.fp-product-card:hover .fp-product-name::after {
  width: 50%;
}

/* Price — subtle scale pulse on hover */
.fp-product-price {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              color 0.3s ease;
}

.fp-product-card:hover .fp-product-price {
  transform: scale(1.05);
  color: #3e5345;
}

/* Sale price strikethrough gets dimmer on hover for contrast */
.fp-product-card:hover .fp-product-price s {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

/* Kill motion on touch */
@media (hover: none) and (pointer: coarse) {
  .fp-product-card:hover {
    transform: none;
    box-shadow: none;
  }
  .fp-product-card:hover .fp-product-image {
    transform: none;
    filter: none;
  }
  .fp-product-card:hover .fp-product-name::after {
    width: 0;
  }
  .fp-product-card:hover .fp-product-price {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fp-product-card {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
/* Enterprise Landing Page Readability Overrides */
.enterprise-landing-page p {
  font-size: 1.8rem !important; /* Larger body text for 55+ audience */
  line-height: 1.8;
  color: #333;
}

.enterprise-landing-page h3 {
  font-size: 2.4rem;
  margin-top: 2rem;
  color: #3e5345;
}

/* Ensure trust badges stack nicely on mobile */
@media screen and (max-width: 749px) {
  .enterprise-landing-page .grid-3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .enterprise-landing-page h1 {
    font-size: 3.2rem !important;
  }
}