/** Shopify CDN: Minification failed

Line 2371:10 Expected identifier but found whitespace
Line 2371:11 Unexpected "0.3"

**/
/* ========================================
   FOREVER RETIRED - CUSTOM STYLES
   ======================================== */

/* CSS Custom Properties */
:root {
  --forever-green: #2D4C2A;
  --forever-beige: #E9E4D4;
  --forever-white: #FFFFFF;
  --forever-dark: #1A2E1A;
  --forever-light: #F5F3ED;
  --forever-accent: #6B8E63;
  --forever-text: #2C3E2A;
  --forever-border: rgba(233, 228, 212, 0.5);
  --forever-shadow: rgba(45, 76, 42, 0.1);
  --forever-shadow-dark: rgba(45, 76, 42, 0.2);
  --laurel-green : #A4B095;
  
  /* Typography Scale */
  --font-size-xs: 0.75rem;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 20px;
  --font-size-xl: 18px;
  --font-size-2xl: 22px;
  --font-size-3xl: 24px;
  --font-size-4xl: 26px;
  --font-size-5xl: 30px;
  --font-size-6xl: 36px;
  
  /* Spacing Scale */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  --spacing-4xl: 8rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ========================================
   GLOBAL STYLES & TYPOGRAPHY
   ======================================== */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.6;
  color: var(--forever-text);
  background-color: var(--forever-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  /* color: var(--forever-green); */
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--forever-text);
}

/* ========================================
   SECTION SPACING - GLOBAL
   ======================================== */
.section-new-arrivals {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.section-new-arrivals::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

/* Section Header */
.new-arrivals__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.new-arrivals__header-content {
  flex: 1;
}

.new-arrivals__main-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.new-arrivals__subtitle {
  font-size: 1.125rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
  max-width: 500px;
}

.new-arrivals__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.new-arrivals__view-all::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.new-arrivals__view-all:hover::before {
  left: 100%;
}

.new-arrivals__view-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.new-arrivals__view-all svg {
  transition: transform 0.3s ease;
}

.new-arrivals__view-all:hover svg {
  transform: translateX(4px);
}

/* Main Content Layout */
.new-arrivals__content {
  display: grid;
  gap: 2rem;
  align-items: start;
}

/* Banner Styles */
.new-arrivals__banner-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-arrivals__banner-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.new-arrivals__banner-wrapper--left {
  grid-column: 1;
}

.new-arrivals__banner-wrapper--right {
  grid-column: 2;
}

.new-arrivals__banner {
  position: relative;
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.new-arrivals__banner-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.new-arrivals__banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.new-arrivals__banner-wrapper:hover .new-arrivals__banner-image img {
  transform: scale(1.05);
}

.new-arrivals__banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(71, 85, 105, 0.4) 100%);
  z-index: 1;
}

.new-arrivals__banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  color: white;
  z-index: 2;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
}

.new-arrivals__banner-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.new-arrivals__banner-text {
  font-size: 1.125rem;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.new-arrivals__banner-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: rgba(255, 255, 255, 0.95);
  color: #1e293b;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.new-arrivals__banner-button:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.new-arrivals__banner-button svg {
  transition: transform 0.3s ease;
}

.new-arrivals__banner-button:hover svg {
  transform: translateX(4px);
}

/* Products Section */
.new-arrivals__products {
  position: relative;
}

/* Enhanced Product Cards */
.section-featured-products-custom .product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.section-featured-products-custom .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card__image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.product-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card__image {
  transform: scale(1.1);
}

.product-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #f1f5f9;
  color: #94a3b8;
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.product-card__badge--new-arrival {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}



.product-card__content-custom {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__category {
  margin-bottom: 0.5rem;
}

.product-type {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #f1f5f9;
  color: #64748b;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card__title {
  margin: 0 0 1rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

.product-card__title a {
  color: #1e293b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-card__title a:hover {
  color: #3b82f6;
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.product-card__price--sale {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ef4444;
}

.product-card__price--compare {
  font-size: 1rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.product-card__price--regular {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
}

.product-card__discount-badge {
  padding: 0.25rem 0.5rem;
  background: #fef2f2;
  color: #dc2626;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-card__actions-custom {
  margin-top: auto;
}

.product-card__add-to-cart {
  width: 100%;
  padding: 0.875rem 1rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.product-card__add-to-cart:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.product-card__add-to-cart:disabled {
  background: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
  box-shadow: none;
} 

/* Enhanced Slider Navigation */
.section-featured-products-custom .swiper-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.section-featured-products-custom .swiper-button {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: white;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.section-featured-products-custom .swiper-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}

.section-featured-products-custom .swiper-button:hover::before {
  opacity: 1;
}

.section-featured-products-custom .swiper-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.section-featured-products-custom .swiper-button svg {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.section-featured-products-custom .swiper-button:hover svg {
  color: white;
}

.footer__newsletter-text p{
  color: #efe8d5;
}
.section-footer__content p{
  color:#efe8d5;
}
.product-card__media img{
      background: #efe8d5;
      border-radius:10px;
}
.pulse{
  color:#efe8d5!important;
}
/* Responsive Layout */
@media (min-width: 1024px) {
  .new-arrivals__content {
    grid-template-columns: 1fr 2fr;
  }
  
  .new-arrivals__banner-wrapper--right {
    grid-column: 1;
    grid-row: 1;
  }
  
  .new-arrivals__products {
    grid-column: 2;
  }
}

@media (max-width: 1023px) {
  .new-arrivals__content {
    grid-template-columns: 1fr;
  }
  
  .new-arrivals__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .new-arrivals__banner-content {
    padding: 2rem;
  }
  
  .new-arrivals__banner-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .new-arrivals__header {
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
  
  .new-arrivals__banner-content {
    padding: 1.5rem;
  }
  
  .new-arrivals__banner-title {
    font-size: 1.5rem;
  }
  
  .new-arrivals__banner-text {
    font-size: 1rem;
  }
  
  .product-card__content-custom {
    padding: 1rem;
  }
  
  .swiper-buttons {
    margin-top: 1.5rem;
  }
  
  .swiper-button {
    width: 40px;
    height: 40px;
  }
}

/* Loading States */
.product-card--loading {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Focus States for Accessibility */
.product-card__add-to-cart:focus,
.swiper-button:focus,
.new-arrivals__view-all:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .new-arrivals__main-title {
    -webkit-text-fill-color: #000000;
    background: none;
  }
  
  .product-card {
    border: 2px solid #000000;
  }
  
  .swiper-button {
    border: 2px solid #000000;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .product-card,
  .new-arrivals__banner-wrapper,
  .swiper-button,
  .new-arrivals__view-all {
    transition: none;
  }
  
  .product-card:hover .product-card__image {
    transform: none;
  }
  
  .badge-pulse {
    animation: none;
  }
}

/* ========================================
   BRAND MISSION SECTION
   ======================================== */
.section-brand-mission {
  background: var(--gradient-background);
  color: var(--forever-dark);
  padding: var(--spacing-3xl) 0;
}

.brand-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.brand-mission__content {
  display: contents;
}

.brand-mission__content.image-left {
  display: contents;
}

.brand-mission__content.image-right {
  display: contents;
}

.brand-mission__text {
  max-width: 600px;
}

.brand-mission__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--forever-green);
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.brand-mission__description {
  font-size: var(--font-size-lg);
  line-height: 1.7;
  color: var(--forever-dark);
  margin-bottom: var(--spacing-lg);
}

.brand-mission__description p {
  margin-bottom: var(--spacing-md);
}

.brand-mission__additional {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--forever-dark);
  opacity: 0.8;
}

.brand-mission__image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px var(--forever-shadow);
  transition: transform var(--transition-normal);
  width: 100%;
  height: auto;
}

.brand-mission__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-normal);
}

.brand-mission__image:hover {
  transform: translateY(-8px);
}

.brand-mission__image:hover .brand-mission__img {
  transform: scale(1.05);
}

/* ========================================
   LIFESTYLE EXPLANATION SECTION
   ======================================== */
.section-lifestyle-explanation {
  background: var(--gradient-background);
  color: var(--forever-dark);
  padding: var(--spacing-3xl) 0;
}

.lifestyle-explanation__header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.lifestyle-explanation__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--forever-green);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

.lifestyle-explanation__subtitle {
  font-size: var(--font-size-xl);
  color: var(--forever-dark);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.lifestyle-explanation__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
}

.lifestyle-feature {
  background: var(--forever-light);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px var(--forever-shadow);
  border: 1px solid var(--forever-border);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.lifestyle-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forever-green), var(--forever-accent));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.lifestyle-feature:hover::before {
  transform: scaleX(1);
}

.lifestyle-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--forever-shadow-dark);
}

.lifestyle-feature__icon {
  margin-bottom: var(--spacing-md);
}

.lifestyle-feature__icon-text {
  font-size: 3rem;
  display: block;
  margin-bottom: var(--spacing-sm);
  filter: grayscale(0.3);
  transition: filter var(--transition-normal);
}

.lifestyle-feature:hover .lifestyle-feature__icon-text {
  filter: grayscale(0);
}

.lifestyle-feature__icon-img {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-sm);
  display: block;
  transition: transform var(--transition-normal);
}

.lifestyle-feature:hover .lifestyle-feature__icon-img {
  transform: scale(1.1);
}

.lifestyle-feature__title {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--forever-green);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

.lifestyle-feature__description {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--forever-dark);
  margin-bottom: var(--spacing-md);
  opacity: 0.9;
}

.lifestyle-feature__link {
  color: var(--forever-green);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
  position: relative;
}

.lifestyle-feature__link::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform var(--transition-normal);
}

.lifestyle-feature__link:hover {
  color: var(--forever-dark);
}

.lifestyle-feature__link:hover::after {
  transform: translateX(4px);
}

.lifestyle-explanation__footer {
  text-align: center;
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: var(--forever-dark);
  opacity: 0.8;
  max-width: 800px;
  margin: 0 auto;
}

/* ========================================
   FOUNDER'S STORY SECTION
   ======================================== */
.section-founders-story {
  background: var(--gradient-background);
  color: var(--forever-dark);
  padding: var(--spacing-3xl) 0;
}

.founders-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.founders-story__content {
  display: contents;
}

.founders-story__content.image-left {
  display: contents;
}

.founders-story__content.image-right {
  display: contents;
}

.founders-story__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--forever-green);
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
}

.founders-story__story {
  font-size: var(--font-size-lg);
  line-height: 1.7;
  color: var(--forever-dark);
  margin-bottom: var(--spacing-lg);
}

.founders-story__story p {
  margin-bottom: var(--spacing-md);
}

.founders-story__additional {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--forever-dark);
  opacity: 0.8;
  margin-bottom: var(--spacing-lg);
}

.founders-story__name {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--forever-green);
  margin-bottom: var(--spacing-xs);
  font-style: italic;
}

.founders-story__title-subtitle {
  font-size: var(--font-size-base);
  color: var(--forever-dark);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.founders-story__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px var(--forever-shadow-dark);
  transition: transform var(--transition-normal);
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  background: var(--forever-light);
  border: 1px solid var(--forever-border);
}

.founders-story__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform var(--transition-normal);
}

.founders-story__image:hover {
  transform: translateY(-8px);
}

.founders-story__image:hover .founders-story__img {
  transform: scale(1.03);
}

/* ========================================
   VISUAL TIMELINE SECTION
   ======================================== */
.section-visual-timeline {
  background: var(--gradient-background);
  color: var(--forever-dark);
  padding: var(--spacing-3xl) 0;
}

.visual-timeline__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--forever-green);
  text-align: center;
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

.visual-timeline__subtitle {
  font-size: var(--font-size-xl);
  color: var(--forever-dark);
  text-align: center;
  opacity: 0.8;
  margin-bottom: var(--spacing-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.visual-timeline__container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.visual-timeline__container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--forever-beige);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--spacing-2xl);
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item__marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--forever-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 20px var(--forever-shadow-dark);
  transition: all var(--transition-normal);
}

.timeline-item:hover .timeline-item__marker {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 25px var(--forever-shadow-dark);
}

.timeline-item__year {
  color: var(--forever-white);
  font-weight: 700;
  font-size: var(--font-size-sm);
}

.timeline-item__content {
  width: 45%;
  padding: var(--spacing-lg);
  background: var(--forever-light);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px var(--forever-shadow);
  border: 1px solid var(--forever-border);
  transition: all var(--transition-normal);
}

.timeline-item:hover .timeline-item__content {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px var(--forever-shadow-dark);
}

.timeline-item:nth-child(odd) .timeline-item__content {
  margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-item__content {
  margin-left: 55%;
}

.timeline-item__title {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--forever-green);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

.timeline-item__description {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--forever-dark);
  margin-bottom: var(--spacing-md);
  opacity: 0.9;
}

.timeline-item__image {
  margin-bottom: var(--spacing-md);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.timeline-item__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-normal);
}

.timeline-item__image:hover .timeline-item__img {
  transform: scale(1.05);
}

.timeline-item__link {
  color: var(--forever-green);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
  position: relative;
}

.timeline-item__link::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform var(--transition-normal);
}

.timeline-item__link:hover {
  color: var(--forever-dark);
}

.timeline-item__link:hover::after {
  transform: translateX(4px);
}

/* ========================================
   ABOUT HERO SECTION
   ======================================== */
.section-about-hero {
  background: linear-gradient(135deg, var(--forever-light) 0%, var(--forever-white) 100%);
  color: var(--forever-dark);
  /* padding: var(--spacing-4xl) 0 var(--spacing-3xl); */
  position: relative;
  overflow: hidden;
}

.section-about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tennis" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23E9E4D4" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23tennis)"/></svg>');
  opacity: 0.3;
}

.about-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: 80vh;
}

/* Image positioning classes removed - using background image instead */

.about-hero__content {
  max-width: 950px;
  padding: var(--spacing-2xl);
  text-align: center;
  margin: 0 auto;
  z-index: 2;
}
.about-hero__title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--spacing-xl);
  line-height: 1.1;
  letter-spacing: -0.03em;
  position: relative;
  text-shadow: 0 2px 4px rgba(45, 76, 42, 0.1);
}

.about-hero__title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--forever-green), var(--forever-beige));
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(45, 76, 42, 0.2);
}

.about-hero__subtitle {
  font-size: var(--font-size-2xl);
  color: var(--forever-green);
  margin-bottom: var(--spacing-xl);
  line-height: 1.4;
  font-weight: 600;
  opacity: 0.95;
}

.about-hero__description {
  font-size: var(--font-size-lg);
  line-height: 1.7;
  color: var(--forever-text);
  margin-bottom: var(--spacing-2xl);
  opacity: 0.85;
  font-weight: 500;
}
.about-hero__description p{
  color: #fff;
}
.about-hero__actions {
  margin-bottom: var(--spacing-2xl);
  display: none;
}
.new-arrivals-custom-slider{
  padding: 10px 0!important;
}
.about-hero__button {
  display: inline-block;
  padding: var(--spacing-lg) var(--spacing-2xl);
  font-size: var(--font-size-base);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  min-width: 180px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(45, 76, 42, 0.2);
}

.about-hero__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left var(--transition-slow);
}

.about-hero__button:hover::before {
  left: 100%;
}

.about-hero__button.button--filled {
  background: var(--forever-green);
  color: var(--forever-white);
  border: 2px solid var(--forever-green);
}

.about-hero__button.button--filled:hover {
  background: var(--forever-beige);
  border-color: var(--forever-beige);
  color: var(--forever-green);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(45, 76, 42, 0.3);
}

.about-hero__button.button--outlined {
  background: transparent;
  color: var(--forever-green);
  border: 2px solid var(--forever-green);
}

.about-hero__button.button--outlined:hover {
  background: var(--forever-green);
  color: var(--forever-white);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(45, 76, 42, 0.3);
  border-color: var(--forever-green);
}

.about-hero__button.button--text {
  background: transparent;
  color: var(--forever-green);
  border: none;
  padding: var(--spacing-sm) 0;
}

.about-hero__button.button--text:hover {
  color: var(--forever-dark);
}
.about-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-hero__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2c3e2a;
  opacity: .6;
  z-index: 1;
  height: 100%;
  width: 100%;
  pointer-events: none;
  display: block !important;
}

.about-hero__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-normal);
  aspect-ratio: 4/3;
  object-fit: cover;
}
/* ========================================
   ABOUT CTA SECTION
   ======================================== */
.section-about-cta {
  background: linear-gradient(135deg, var(--forever-green) 0%, var(--forever-dark) 100%);
  color: var(--forever-white);
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
}

.section-about-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="golf" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="2" fill="%23E9E4D4" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23golf)"/></svg>');
  opacity: 0.2;
}

.about-cta__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-cta__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--forever-white);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.about-cta__text {
  font-size: var(--font-size-xl);
  line-height: 1.6;
  color: var(--forever-beige);
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
}

.about-cta__buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.about-cta__button {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-xl);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 160px;
  position: relative;
  overflow: hidden;
}

.about-cta__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left var(--transition-slow);
}

.about-cta__button:hover::before {
  left: 100%;
}

.about-cta__button--primary {
  background: var(--forever-beige);
  color: var(--forever-green);
  border: 2px solid var(--forever-beige);
}

.about-cta__button--primary:hover {
  background: var(--forever-white);
  border-color: var(--forever-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(233, 228, 212, 0.3);
}

.about-cta__button--secondary {
  background: transparent;
  color: var(--forever-beige);
  border: 2px solid var(--forever-beige);
}

.about-cta__button--secondary:hover {
  background: var(--forever-beige);
  color: var(--forever-green);
  transform: translateY(-2px);
}

.about-cta__additional {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--forever-beige);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
  .brand-mission__content,
  .founders-story__content,
  .about-hero {
    gap: var(--spacing-xl);
  }
  
  .lifestyle-explanation__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
  }
}

@media (max-width: 768px) {
  /* Brand Mission Mobile */
  .brand-mission {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) 0;
  }
  
  .brand-mission__content {
    display: block;
  }
  
  .brand-mission__title {
    font-size: 2rem;
  }
  
  .brand-mission__image {
    order: -1;
    margin-bottom: var(--spacing-lg);
  }
  
  /* Lifestyle Explanation Mobile */
  .section-lifestyle-explanation {
    padding: var(--spacing-2xl) 0;
  }
  
  .lifestyle-explanation__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .lifestyle-feature {
    padding: var(--spacing-lg);
  }
  
  /* Founder's Story Mobile */
  .founders-story {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) 0;
  }
  
  .founders-story__content {
    display: block;
  }
  
  .founders-story__title {
    font-size: 2rem;
  }
  
  .founders-story__image {
    order: -1;
    margin-bottom: var(--spacing-lg);
    aspect-ratio: 16/9;
  }
  
  /* Visual Timeline Mobile */
  .visual-timeline__container::before {
    left: 10px;
  }
  
  .timeline-item {
    flex-direction: row !important;
    margin-left: 40px;
  }
  
  .timeline-item__marker {
         left: -30px;
        width: 30px;
        height: 30px;
        top: 20px;
  }
  .timeline-item__year{
        font-size: 8px;
  }
 
  .timeline-item__content {
    width: 100%;
    margin: 0 !important;
  }
  
  .section-visual-timeline {
    padding: 20px;
  }
  
  /* About Hero Mobile */
  .about-hero {
    min-height: 60vh;
    padding: var(--spacing-lg);
  }
  
  .section-about-hero {
    /* padding: var(--spacing-2xl) 0 var(--spacing-lg); */
  }
  
  .about-hero__title {
    font-size: 2.5rem;
  }
  
  .about-hero__subtitle {
    font-size: var(--font-size-xl);
  }
  
  
  .about-hero__content {
    padding: var(--spacing-lg);
    margin: 0 var(--spacing-md);
  }
  
  /* About CTA Mobile */
  .about-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .about-cta__button {
    width: 100%;
    max-width: 280px;
  }
  
  .section-about-cta {
    padding: var(--spacing-2xl) 0;
  }
  
  .about-cta__title {
    font-size: 2.5rem;
  }
  
  /* Featured Products Mobile */
  .featured-products__grid{
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
  }
  
  .featured-products__title,
  .new-arrivals__title {
    font-size: 2.5rem;
  }
  
  .featured-products__subtitle,
  .new-arrivals__subtitle {
    font-size: var(--font-size-lg);
  }
  
  .product-card__content-custom {
    padding: var(--spacing-md);
  }
}

@media (max-width: 480px) {
  .brand-mission__title,
  .founders-story__title,
  .about-hero__title,
  .about-cta__title {
    font-size: 1.75rem;
  }
  
  .lifestyle-explanation__title,
  .visual-timeline__title {
    font-size: 2rem;
  }
  
  .lifestyle-feature {
    padding: var(--spacing-md);
  }
  
  .timeline-item__content {
    padding: var(--spacing-md);
  }
  
  .about-hero__content {
    padding: var(--spacing-md);
    margin: 0 var(--spacing-sm);
  }
  
  /* Featured Products Small Screen */
  .featured-products__grid,
  .new-arrivals__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .featured-products__title,
  .new-arrivals__title {
    font-size: 2rem;
  }
  
  .product-card__actions-custom {
    flex-direction: column;
  }
  
  .product-card__add-to-cart,
  .product-card__out-of-stock {
    width: 100%;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.forever-text-green { color: var(--forever-green); }
.forever-text-beige { color: var(--forever-beige); }
.forever-text-white { color: var(--forever-white); }
.forever-text-dark { color: var(--forever-dark); }

.forever-bg-green { background-color: var(--forever-green); }
.forever-bg-beige { background-color: var(--forever-beige); }
.forever-bg-white { background-color: var(--forever-white); }
.forever-bg-dark { background-color: var(--forever-dark); }
.forever-bg-light { background-color: var(--forever-light); }

.forever-border { border-color: var(--forever-border); }
.forever-shadow { box-shadow: 0 10px 30px var(--forever-shadow); }
.forever-shadow-dark { box-shadow: 0 20px 40px var(--forever-shadow-dark); }

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease-out;
}

/* Hover Effects */
.hover-lift {
  transition: transform var(--transition-normal);
}

.hover-lift:hover {
  transform: translateY(-4px);
}

.hover-scale {
  transition: transform var(--transition-normal);
}

.hover-scale:hover {
  transform: scale(1.02);
}

/* ========================================
   SHOP NOW CTA SECTION
   ======================================== */
.section-shop-now-cta {
  background: linear-gradient(135deg, var(--forever-white) 0%, var(--forever-light) 100%);
  color: var(--forever-dark);
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
}

.section-shop-now-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="shop-pattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="%232D4C2A" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23shop-pattern)"/></svg>');
  opacity: 0.4;
}

.shop-now-cta {
  position: relative;
  z-index: 1;
  text-align: center;
}

.shop-now-cta__content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.shop-now-cta__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--forever-green);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.shop-now-cta__subtitle {
  font-size: var(--font-size-xl);
  color: var(--forever-dark);
  margin-bottom: var(--spacing-md);
  line-height: 1.4;
  opacity: 0.9;
}

.shop-now-cta__description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: var(--forever-dark);
  margin-bottom: var(--spacing-xl);
  opacity: 0.8;
}

.shop-now-cta__actions {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
  justify-content: center;
}

.shop-now-cta__button {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-xl);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 140px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.shop-now-cta__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left var(--transition-slow);
}

.shop-now-cta__button:hover::before {
  left: 100%;
}

.shop-now-cta__button--primary {
  background: var(--forever-green);
  color: var(--forever-white);
  border: 2px solid var(--forever-green);
}

.shop-now-cta__button--primary:hover {
  background: var(--forever-dark);
  border-color: var(--forever-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--forever-shadow-dark);
}

.shop-now-cta__button--secondary {
  background: transparent;
  color: var(--forever-green);
  border: 2px solid var(--forever-green);
}

.shop-now-cta__button--secondary:hover {
  background: var(--forever-green);
  color: var(--forever-white);
  transform: translateY(-2px);
}

.shop-now-cta__features {
  display: flex;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--spacing-xl);
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--forever-white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px var(--forever-shadow);
  border: 1px solid var(--forever-border);
  transition: all var(--transition-normal);
}

.cta-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--forever-shadow-dark);
}

.cta-feature__icon-text {
  font-size: 1.5rem;
  filter: grayscale(0.3);
  transition: filter var(--transition-normal);
}

.cta-feature:hover .cta-feature__icon-text {
  filter: grayscale(0);
}

.cta-feature__icon-img {
  width: 24px;
  height: 24px;
  display: block;
}

.cta-feature__text {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--forever-dark);
  white-space: nowrap;
}

.shop-now-cta__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.shop-now-cta__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========================================
   FEATURED PRODUCTS & NEW ARRIVALS SECTION
   ======================================== */
.section-featured-products-custom {
  background: linear-gradient(135deg, var(--forever-white) 0%, var(--forever-light) 100%);
  color: var(--forever-dark);
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
}

.section-featured-products-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tennis-court" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="25" height="25" fill="none" stroke="%23E9E4D4" stroke-width="0.5" opacity="0.1"/><circle cx="12.5" cy="12.5" r="1" fill="%232D4C2A" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23tennis-court)"/></svg>');
  opacity: 0.3;
}

/* Featured Products Section */
.featured-products {
  margin-bottom: var(--spacing-4xl);
  position: relative;
  z-index: 1;
}

.featured-products__header {
  text-align: center;
}

.featured-products__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--forever-green);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.featured-products__subtitle {
  font-size: var(--font-size-xl);
  color: var(--forever-dark);
  margin-bottom: var(--spacing-lg);
  opacity: 0.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.featured-products__view-all {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-xl);
  background: var(--forever-green);
  color: var(--forever-white);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
  border: 2px solid var(--forever-green);
}
.card-product-slider{
  padding: 10px 0!important;
  padding-bottom: 30px !important;
}
.featured-products__view-all:hover {
  background: var(--forever-beige);
  color: var(--forever-green);
  border-color: var(--forever-beige);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(45, 76, 42, 0.2);
}

/* New Arrivals Section */
.new-arrivals {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  padding: 20px;
}

.new-arrivals__header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.new-arrivals__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--forever-green);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.new-arrivals__subtitle {
  font-size: var(--font-size-xl);
  color: var(--forever-dark);
  margin-bottom: var(--spacing-lg);
  opacity: 0.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.new-arrivals__view-all {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-xl);
  background: var(--forever-green);
  color: var(--forever-white);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
  border: 2px solid var(--forever-green);
}

.new-arrivals__view-all:hover {
  background: var(--forever-beige);
  color: var(--forever-green);
  border-color: var(--forever-beige);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(45, 76, 42, 0.2);
}

/* Product Grid */
.featured-products__grid,
.new-arrivals__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Product Cards */
.section-featured-products-custom .product-card {
  background: var(--forever-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(45, 76, 42, 0.1);
  transition: all var(--transition-normal);
  border: 1px solid var(--forever-border);
  position: relative;
}

.section-featured-products-custom .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(45, 76, 42, 0.2);
  border-color: var(--forever-green);
}

.product-card--new {
  border: 2px solid var(--forever-beige);
}

.product-card--new:hover {
  border-color: var(--forever-green);
}

/* Product Image */
.product-card__image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 280px;
}

.product-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--forever-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__placeholder-text {
  color: var(--forever-dark);
  font-size: var(--font-size-sm);
  opacity: 0.6;
}

/* Product Badges */
.product-card__badge {
  position: absolute;
  top: var(--spacing-sm);
  left: var(--spacing-sm);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-card__badge--sale {
  background: var(--forever-green);
  color: var(--forever-white);
}

.product-card__badge--new {
  background: var(--forever-beige);
  color: var(--forever-green);
}

.product-card__badge--new-arrival {
  background: linear-gradient(135deg, var(--forever-green), var(--forever-beige));
  color: var(--forever-white);
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  left: auto;
}
/* Product Content */
.product-card__content-custom {
  padding: var(--spacing-md) var(--spacing-lg);
}

.product-card__type {
  display: inline-block;
  padding: calc(var(--spacing-xs) / 2) var(--spacing-xs);
  background: var(--forever-light);
  color: var(--forever-green);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--forever-green);
  margin-bottom: var(--spacing-xs);
  line-height: 1.3;
}

.product-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-normal);
}

.product-card__title a:hover {
  color: var(--forever-dark);
}

/* Product Price */
.product-card__price {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.product-card__price--regular {
  font-size: 16px;
  font-weight: 700;
  color: var(--forever-green);
}

.product-card__price--sale {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--forever-green);
}

.product-card__price--compare {
  font-size: var(--font-size-base);
  color: var(--forever-dark);
  text-decoration: line-through;
  opacity: 0.6;
}

/* Product Actions */
.product-card__actions-custom {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.product-card__add-to-cart {
  flex: 1;
  padding: 12px;
  background: var(--forever-green);
  color: var(--forever-white);
  border: 2px solid var(--forever-green);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-normal);
  font-size: var(--font-size-sm);
}

.product-card__add-to-cart:hover {
  background: var(--forever-beige);
  color: var(--forever-green);
  border-color: var(--forever-beige);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 76, 42, 0.2);
}

.product-card__out-of-stock {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: not-allowed;
  opacity: 0.6;
  background: var(--forever-light);
  color: var(--forever-dark);
  border: 2px solid var(--forever-border);
  font-size: var(--font-size-sm);
}

/* ========================================
   JOIN LIFESTYLE CTA SECTION
   ======================================== */
#JoinLifestyleCTA{
  background-image: url('/cdn/shop/files/Image_46ea3597-7233-4545-8115-2fccbad191f0.png?v=1758055068');
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  color: var(--forever-white);
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
}
/* .section-join-lifestyle-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="lifestyle-pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20 10 L30 20 L20 30 L10 20 Z" fill="%23E9E4D4" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23lifestyle-pattern)"/></svg>'); */
  opacity: 0.3;
} */

.join-lifestyle-cta {
  position: relative;
  z-index: 1;
}

.join-lifestyle-cta__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.join-lifestyle-cta__header {
  margin-bottom: var(--spacing-2xl);
}

.join-lifestyle-cta__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--forever-white);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.join-lifestyle-cta__subtitle {
  font-size: var(--font-size-xl);
  color: var(--forever-beige);
  margin-bottom: var(--spacing-md);
  line-height: 1.4;
  opacity: 0.9;
}

.join-lifestyle-cta__description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: var(--forever-beige);
  margin-bottom: var(--spacing-xl);
  opacity: 0.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.join-lifestyle-cta__benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.lifestyle-benefit {
  background: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(233, 228, 212, 0.2);
  transition: all var(--transition-normal);
}

.lifestyle-benefit:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(233, 228, 212, 0.4);
}

.lifestyle-benefit__icon {
  margin-bottom: var(--spacing-sm);
}

.lifestyle-benefit__icon-text {
  font-size: 2.5rem;
  display: block;
  margin-bottom: var(--spacing-sm);
  filter: grayscale(0.2);
  transition: filter var(--transition-normal);
}

.lifestyle-benefit:hover .lifestyle-benefit__icon-text {
  filter: grayscale(0);
}

.lifestyle-benefit__icon-img {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--spacing-sm);
  display: block;
}

.lifestyle-benefit__title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--forever-white);
  margin-bottom: var(--spacing-xs);
  line-height: 1.3;
}

.lifestyle-benefit__description {
  font-size: var(--font-size-base);
  line-height: 1.5;
  color: var(--forever-beige);
  opacity: 0.9;
}

.join-lifestyle-cta__actions {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  margin-bottom: var(--spacing-2xl);
  flex-wrap: wrap;
}

.join-lifestyle-cta__button {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-xl);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 140px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.join-lifestyle-cta__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left var(--transition-slow);
}

.join-lifestyle-cta__button:hover::before {
  left: 100%;
}

.join-lifestyle-cta__button--primary {
  background: var(--forever-beige);
  color: var(--forever-green);
  border: 2px solid var(--forever-beige);
}

.join-lifestyle-cta__button--primary:hover {
  background: var(--forever-white);
  border-color: var(--forever-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(233, 228, 212, 0.3);
}

.join-lifestyle-cta__button--secondary {
  background: transparent;
  color: var(--forever-beige);
  border: 2px solid var(--forever-beige);
}

.join-lifestyle-cta__button--secondary:hover {
  background: var(--forever-beige);
  color: var(--forever-green);
  transform: translateY(-2px);
}

.join-lifestyle-cta__social-proof {
  text-align: center;
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(233, 228, 212, 0.1);
}

.join-lifestyle-cta__social-text {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--forever-beige);
  opacity: 0.8;
  margin-bottom: var(--spacing-md);
}

.join-lifestyle-cta__social-image {
  max-width: 200px;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.join-lifestyle-cta__social-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   RESPONSIVE DESIGN FOR CTA SECTIONS
   ======================================== */
@media (max-width: 1024px) {
  .shop-now-cta {
    gap: var(--spacing-xl);
  }
  
  .shop-now-cta__image {
    min-width: 250px;
  }
  
  .join-lifestyle-cta__benefits {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
  }
}

@media (max-width: 768px) {
  /* Shop Now CTA Mobile */
  .shop-now-cta {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }
  
  .shop-now-cta__actions {
    justify-content: center;
  }
  
  .shop-now-cta__features {
    justify-content: center;
  }
  
  .shop-now-cta__image {
    min-width: auto;
    order: -1;
  }
  
  .section-shop-now-cta {
    padding: var(--spacing-2xl) 0;
  }
  
  .shop-now-cta__title {
    font-size: 2.5rem;
  }
  
  /* Join Lifestyle CTA Mobile */
  .join-lifestyle-cta__benefits {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .join-lifestyle-cta__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .join-lifestyle-cta__button {
    width: 100%;
    max-width: 280px;
  }
  
  .section-join-lifestyle-cta {
    /* padding: var(--spacing-2xl) 0; */
  }
  
  .join-lifestyle-cta__title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .shop-now-cta__title,
  .join-lifestyle-cta__title {
    font-size: 2rem;
  }
  
  .shop-now-cta__subtitle,
  .join-lifestyle-cta__subtitle {
    font-size: var(--font-size-lg);
  }
  
  .cta-feature {
    padding: var(--spacing-xs) var(--spacing-sm);
  }
  
  .lifestyle-benefit {
    padding: var(--spacing-md);
  }
  
  .shop-now-cta__features {
    flex-direction: column;
    align-items: center;
  }
}

/* ========================================
   DYNAMIC SPACING SUPPORT FOR ALL SECTIONS
   ======================================== */

/* Featured Products Section */
.section-featured-products-custom[style*="--spacing-top"] {
  padding-top: var(--spacing-top, var(--spacing-3xl));
}

.section-featured-products-custom[style*="--spacing-bottom"] {
  padding-bottom: var(--spacing-bottom, var(--spacing-3xl));
}

/* Brand Mission Section */
.section-brand-mission[style*="--spacing-top"] {
  padding-top: var(--spacing-top, var(--spacing-3xl));
}

.section-brand-mission[style*="--spacing-bottom"] {
  padding-bottom: var(--spacing-bottom, var(--spacing-3xl));
}

/* Lifestyle Explanation Section */
.section-lifestyle-explanation[style*="--spacing-top"] {
  padding-top: var(--spacing-top, var(--spacing-3xl));
}

.section-lifestyle-explanation[style*="--spacing-bottom"] {
  padding-bottom: var(--spacing-bottom, var(--spacing-3xl));
}

/* Founder's Story Section */
.section-founders-story[style*="--spacing-top"] {
  padding-top: var(--spacing-top, var(--spacing-3xl));
}

.section-founders-story[style*="--spacing-bottom"] {
  padding-bottom: var(--spacing-bottom, var(--spacing-3xl));
}

/* About Hero Section */
/* .section-about-hero[style*="--spacing-top"] {
  padding-top: var(--spacing-top, var(--spacing-4xl));
}

.section-about-hero[style*="--spacing-bottom"] {
  padding-bottom: var(--spacing-bottom, var(--spacing-3xl));
} */

/* About CTA Section */
.section-about-cta[style*="--spacing-top"] {
  padding-top: var(--spacing-top, var(--spacing-3xl));
}

.section-about-cta[style*="--spacing-bottom"] {
  padding-bottom: var(--spacing-bottom, var(--spacing-3xl));
}

/* Shop Now CTA Section */
.section-shop-now-cta[style*="--spacing-top"] {
  padding-top: var(--spacing-top, var(--spacing-3xl));
}

.section-shop-now-cta[style*="--spacing-bottom"] {
  padding-bottom: var(--spacing-bottom, var(--spacing-3xl));
}

/* Join Lifestyle CTA Section */
.section-join-lifestyle-cta[style*="--spacing-top"] {
  padding-top: var(--spacing-top, var(--spacing-3xl));
}

.section-join-lifestyle-cta[style*="--spacing-bottom"] {
  padding-bottom: var(--spacing-bottom, var(--spacing-3xl));
}

/* Display Mode Toggle */
.featured-products__display-toggle,
.new-arrivals__display-toggle {
  display: flex;
      align-items: center;
      gap: var(--spacing-xs);
      justify-content: end;
      margin-bottom: 30px;
}

.display-toggle__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid transparent;
  background: transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  color: var(--forever-dark);
  position: relative;
  overflow: hidden;
}

.display-toggle__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(45, 76, 42, 0.1), transparent);
  transition: left 0.5s;
}

.display-toggle__btn:hover::before {
  left: 100%;
}

.display-toggle__btn:hover {
  background: var(--forever-white);
  color: var(--forever-green);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(45, 76, 42, 0.15);
}

.display-toggle__btn.active {
  background: var(--forever-green);
  color: var(--forever-white);
  border-color: var(--forever-green);
  box-shadow: 0 4px 15px rgba(45, 76, 42, 0.3);
}

.display-toggle__btn.active:hover {
  background: var(--forever-beige);
  color: var(--forever-green);
  border-color: var(--forever-beige);
}

/* Hidden Class for Display Toggle */
.hidden {
  display: none !important;
}

/* Slider Styles */
.featured-products__slider,
.new-arrivals__slider {
  position: relative;
  margin-bottom: var(--spacing-2xl);
}

.featured-products-slider,
.new-arrivals-slider {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.featured-products-slider .swiper-wrapper,
.new-arrivals-slider .swiper-wrapper {
  align-items: stretch;
}

.featured-products-slider .swiper-slide,
.new-arrivals-slider .swiper-slide {
  height: auto;
  display: flex;
}

.featured-products-slider .product-card,
.new-arrivals-slider .product-card {
  width: 100%;
  height: 100%;
  margin: 0;
  max-width: none;
}

/* Slider Navigation Buttons */
.featured-products-slider__buttons,
.new-arrivals-custom-buttons {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.featured-products-slider__buttons .swiper-button,
.new-arrivals-custom-buttons .swiper-button {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--forever-border);
  border-radius: 50%;
  color: var(--forever-green);
  pointer-events: auto;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(45, 76, 42, 0.15);
  display: flex
  ;
      align-items: center;
      justify-content: center;
}

.featured-products-slider__buttons .swiper-button:hover,
.new-arrivals-custom-buttons .swiper-button:hover {
  background: var(--forever-white);
  border-color: var(--forever-green);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(45, 76, 42, 0.25);
}

.featured-products-slider__buttons .swiper-button svg,
.new-arrivals-custom-buttons .swiper-button svg {
  width: 20px;
  height: 20px;
}

/* Product Card Slider Variant */
.product-card--slider {
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(45, 76, 42, 0.1);
  transition: all var(--transition-normal);
  border: 1px solid var(--forever-border);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card--slider:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(45, 76, 42, 0.2);
  border-color: var(--forever-green);
}

.product-card--slider .product-card__content-custom {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card--slider .product-card__actions-custom {
  margin-top: auto;
}

/* Responsive Slider */
@media (max-width: 749px) {
  .featured-products-slider__buttons,
  .new-arrivals-custom-buttons {
    position: static;
    transform: none;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
  }
  
  .featured-products-slider__buttons .swiper-button,
  .new-arrivals-custom-buttons .swiper-button {
    position: static;
    transform: none;
  }
  
  .display-toggle__btn {
    width: 40px;
    height: 40px;
  }
  
  .featured-products__display-toggle,
  .new-arrivals__display-toggle {
    padding: calc(var(--spacing-xs) / 2);
    gap: calc(var(--spacing-xs) / 2);
  }
}

/* Enhanced Grid Layout for Better Responsiveness */
.featured-products__grid,
.new-arrivals__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 750px) {
  .featured-products__grid,
  .new-arrivals__grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
  }
}

@media (min-width: 990px) {
  .featured-products__grid,
  .new-arrivals__grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

/* Slider Autoplay Indicator */
.featured-products-slider[data-swiper-options*="autoplay"],
.new-arrivals-slider[data-swiper-options*="autoplay"] {
  position: relative;
}

.featured-products-slider[data-swiper-options*="autoplay"]::after,
.new-arrivals-slider[data-swiper-options*="autoplay"]::after {
  content: '▶';
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  background: var(--forever-green);
  color: var(--forever-white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  opacity: 0.8;
  animation: pulse 2s infinite;
}

/* Enhanced Quick Actions for Slider */
.product-card--slider .product-card__quick-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-card--slider:hover .product-card__quick-actions {
  opacity: 1;
  transform: translateX(0);
}

/* Slider Progress Bar (Optional Enhancement) */
.featured-products-slider .swiper-pagination,
.new-arrivals-slider .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: var(--spacing-md);
}

.featured-products-slider .swiper-pagination-bullet,
.new-arrivals-slider .swiper-pagination-bullet {
  background: var(--forever-beige);
  opacity: 0.5;
  transition: all var(--transition-normal);
}

.featured-products-slider .swiper-pagination-bullet-active,
.new-arrivals-slider .swiper-pagination-bullet-active {
  background: var(--forever-green);
  opacity: 1;
  transform: scale(1.2);
}

/* New Arrivals Banner Styles */
.new-arrivals__content {
  display: flex;
  align-items: stretch;
  gap: 3rem;
}

.new-arrivals__banner-wrapper {
  display: flex;
  align-items: stretch;
  width: 25%;
}

.new-arrivals__banner-wrapper--left {
  order: 1;
}

.new-arrivals__banner-wrapper--right {
  order: 3;
}

.new-arrivals__products {
  order: 2;
  display: flex;
  flex-direction: column;
  width: 70%;
}

.new-arrivals__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.new-arrivals__slider {
  position: relative;
  width: 100%;
  height: 100%;

  overflow: hidden;
}

.new-arrivals-slider {
  width: 100% !important;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 0 60px; /* Add padding for navigation buttons */
}

.new-arrivals-slider .swiper-wrapper {
  height: auto;
  align-items: stretch;
  width: 100% !important;
}

.new-arrivals-slider .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
  width: auto !important;
  flex-shrink: 0;
  /* Ensure equal widths for slides */
  min-width: 0;
  flex: 1;
}

.product-card--slider {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  width: 100%;
  /* Ensure equal card widths */
  min-width: 0;
  flex: 1;
}

/* Fix for Swiper width calculation issues */
.new-arrivals-slider.swiper {
  width: 100% !important;
  max-width: 100% !important;
}

.new-arrivals-slider .swiper-wrapper {
  width: 100% !important;
  max-width: 100% !important;
}

.new-arrivals-slider .swiper-slide {
  width: auto !important;
  max-width: none !important;
}

/* Override any problematic Swiper calculations */
.new-arrivals-slider[style*="width"] {
  width: 100% !important;
}

.new-arrivals-slider .swiper-wrapper[style*="width"] {
  width: 100% !important;
}

.new-arrivals-slider .swiper-slide[style*="width"] {
  width: auto !important;
}

/* Slider Navigation Buttons */
.new-arrivals-custom-buttons {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.new-arrivals-custom-buttons .swiper-button {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
  width: 48px;
  height: 48px;
  background: var(--forever-white);
  border: 2px solid var(--forever-green);
  border-radius: var(--radius-full);
  color: var(--forever-green);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(45, 76, 42, 0.15);
  transition: all 0.3s ease;
  pointer-events: auto;
}

.new-arrivals-custom-buttons .swiper-button:hover {
  background: var(--forever-green);
  color: var(--forever-white);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(45, 76, 42, 0.25);
}

.new-arrivals-custom-buttons .swiper-button svg {
  width: 20px;
  height: 20px;
}

/* Slider Pagination */
.new-arrivals-slider .swiper-pagination {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.new-arrivals-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--forever-beige);
  border: 2px solid var(--forever-green);
  border-radius: var(--radius-full);
  opacity: 0.6;
  transition: all 0.3s ease;
  cursor: pointer;
}

.new-arrivals-slider .swiper-pagination-bullet-active {
  background: var(--forever-green);
  opacity: 1;
  transform: scale(1.2);
}

/* Responsive Slider */
@media (max-width: 1024px) {
  .new-arrivals__products {
    min-height: auto;
  }
  
  
  .new-arrivals-slider {
    padding: 0 50px; /* Reduce padding on medium screens */
  }
  
  .new-arrivals__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .new-arrivals__grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
  }
  
  .new-arrivals__slider {
    min-height: 350px;
  }
  
  .new-arrivals-slider {
    padding: 0 40px; /* Reduce padding on small screens */
  }
  
  .new-arrivals-custom-buttons .swiper-button {
    width: 40px;
    height: 40px;
  }
  
  .new-arrivals-custom-buttons .swiper-button svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .new-arrivals__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .new-arrivals__slider {
    min-height: 300px;
  }
  
  .new-arrivals-slider {
    padding: 0 30px; /* Minimal padding on mobile */
  }
  
  .new-arrivals-custom-buttons .swiper-button {
    width: 36px;
    height: 36px;
  }
  
  .new-arrivals-custom-buttons .swiper-button svg {
    width: 14px;
    height: 14px;
  }
}

/* Ensure slider is visible by default */
.new-arrivals__slider {
  display: block !important;
}

.new-arrivals__grid {
  display: none;
}

/* Show grid on hover or when needed */
.new-arrivals__products:hover .new-arrivals__grid {
  display: grid;
}

.new-arrivals__products:hover .new-arrivals__slider {
  display: none;
}

.new-arrivals__banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: linear-gradient(135deg, var(--forever-green) 0%, var(--forever-beige) 100%);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(45, 76, 42, 0.15);
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
}

.new-arrivals__banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(45, 76, 42, 0.25);
}

.new-arrivals__banner-image {
  flex: 1;
  min-height: 250px;
  position: relative;
  overflow: hidden;
  display: none;
}

.new-arrivals__banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.new-arrivals__banner:hover .new-arrivals__banner-image img {
  transform: scale(1.05);
}

.new-arrivals__banner-content {
  flex: 0 0 auto;
  padding: 2rem;
  color: var(--forever-white);
  text-align: center;
  position: relative;
  z-index: 2;
}

.new-arrivals__banner-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 76, 42, 0.9) 0%, rgba(233, 228, 212, 0.1) 100%);
  z-index: -1;
}

.new-arrivals__banner-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.new-arrivals__banner-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  max-width: 100%;
}

.new-arrivals__banner-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, var(--forever-white) 0%, var(--forever-beige) 100%);
  color: var(--forever-green);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 3px solid var(--forever-white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.new-arrivals__banner-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.new-arrivals__banner-button:hover::before {
  left: 100%;
}

.new-arrivals__banner-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, var(--forever-beige) 0%, var(--forever-white) 100%);
}

.new-arrivals__banner-button::after {
  content: '→';
  font-size: 1.1rem;
  font-weight: 900;
  transition: transform 0.3s ease;
}

.new-arrivals__banner-button:hover::after {
  transform: translateX(5px);
}

/* Banner Layout Variations */
.new-arrivals__banner[data-layout="overlay"] .new-arrivals__banner-content {
  width: 100%;
  padding: 2rem;
  height: 100%;
  position: relative;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left!important;
}

.new-arrivals__banner[data-layout="side-by-side"] {
  flex-direction: row;
}

.new-arrivals__banner[data-layout="side-by-side"] .new-arrivals__banner-content {
  text-align: left;
}

/* Banner Text Alignment Variations */
.new-arrivals__banner[data-text-align="left"] .new-arrivals__banner-content {
  text-align: left;
}

.new-arrivals__banner[data-text-align="right"] .new-arrivals__banner-content {
  text-align: right;
}

.new-arrivals__banner[data-text-align="center"] .new-arrivals__banner-content {
  text-align: center;
}

/* Responsive Banner */
@media (max-width: 1024px) {
  .new-arrivals__content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .new-arrivals__banner-wrapper {
    flex: none;
    width: 100%;
  }
  
  .new-arrivals__banner-wrapper--left,
  .new-arrivals__banner-wrapper--right {
    order: 1;
  }
  
  .new-arrivals__products {
    order: 2;
  }
  
  .new-arrivals__banner {
    min-height: 300px;
  }
  
  .new-arrivals__banner-image {
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .new-arrivals__content {
    gap: 1.5rem;
  }
  
  .new-arrivals__banner-content {
    padding: 1.5rem;
  }
  
  .new-arrivals__banner-title {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    letter-spacing: 1px;
  }
  
  .new-arrivals__banner-text {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    margin-bottom: 1.25rem;
  }
  
  .new-arrivals__banner-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .new-arrivals__banner-content {
    padding: 1.25rem 1rem;
  }
  
  .new-arrivals__banner-title {
    font-size: clamp(1.125rem, 5vw, 1.5rem);
  }
  
  .new-arrivals__banner-text {
    font-size: clamp(0.75rem, 3vw, 0.9rem);
    margin-bottom: 1rem;
  }
  
  .new-arrivals__banner-button {
    padding: 0.625rem 1.25rem;
    font-size: 0.8rem;
  }
}

/* Banner Animation */
@keyframes bannerSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.new-arrivals__banner-wrapper--left {
  animation: bannerSlideIn 0.6s ease-out;
}

@keyframes bannerSlideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.new-arrivals__banner-wrapper--right {
  animation: bannerSlideInRight 0.6s ease-out;
}

/* Banner with Golf Course Pattern */
.new-arrivals__banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M30 0c16.569 0 30 13.431 30 30S46.569 60 30 60 0 46.569 0 30 13.431 0 30 0zm0 10c11.046 0 20 8.954 20 20s-8.954 20-20 20-20-8.954-20-20 8.954-20 20-20zm0 10c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
  z-index: 1;
}

/* Enhanced Banner Hover Effects */
.new-arrivals__banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 1;
}

.new-arrivals__banner:hover::after {
  transform: translateX(100%);
}

/* Banner Content Typography Enhancements */
.new-arrivals__banner-title {
  background: linear-gradient(135deg, var(--forever-white) 0%, var(--forever-beige) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.new-arrivals__banner-text {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, .4);
  color: #fff;
  text-align: center;
}

/* Banner Button Enhanced States */
.new-arrivals__banner-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.new-arrivals__banner-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5), 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Banner Loading State */
.new-arrivals__banner.loading {
  opacity: 0.7;
  pointer-events: none;
}

.new-arrivals__banner.loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid var(--forever-white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 10;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ========================================
   LEGAL & POLICY PAGE SECTIONS
   ======================================== */

/* ========================================
   RETURN & REFUND POLICY SECTION
   ======================================== */
.section-return-refund-policy {
  background: var(--forever-white);
  color: var(--forever-dark);
  padding: var(--spacing-3xl) 0;
}

.return-refund-policy__header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.return-refund-policy__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--forever-green);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.return-refund-policy__subtitle {
  font-size: var(--font-size-xl);
  color: var(--forever-dark);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.return-refund-policy__last-updated {
  background: var(--forever-light);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--forever-border);
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

.return-refund-policy__last-updated p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--forever-dark);
  opacity: 0.8;
}

.return-refund-policy__content {
  text-align: left;
}

/* Policy Section */
.policy-section {
  margin-bottom: var(--spacing-2xl);
  padding: var(--spacing-xl);
  background: var(--forever-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--forever-border);
  box-shadow: 0 10px 30px var(--forever-shadow);
  transition: all var(--transition-normal);
}

.policy-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px var(--forever-shadow-dark);
  border-color: var(--forever-green);
}

.policy-section__title {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--forever-green);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
  border-bottom: 2px solid var(--forever-beige);
  padding-bottom: var(--spacing-sm);
}

.policy-section__content {
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--forever-dark);
}

.policy-section__content p {
  margin-bottom: var(--spacing-md);
}

/* Policy List */
.policy-list {
  margin-bottom: var(--spacing-2xl);
  padding: var(--spacing-xl);
  background: var(--forever-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--forever-border);
  box-shadow: 0 8px 25px var(--forever-shadow);
}

.policy-list__title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--forever-green);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.policy-list__items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-list__item {
  position: relative;
  padding: var(--spacing-sm) 0 var(--spacing-sm) var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--forever-dark);
  border-left: 3px solid var(--forever-beige);
  background: var(--forever-light);
  padding-left: 30px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: all var(--transition-normal);
}

.policy-list__item:hover {
  border-left-color: var(--forever-green);
  background: var(--forever-beige);
  transform: translateX(4px);
}

.policy-list__item::before {
  content: '✓';
  position: absolute;
  left: var(--spacing-sm);
  top: var(--spacing-sm);
  color: var(--forever-green);
  font-weight: bold;
  font-size: var(--font-size-sm);
}

/* Contact Info */
.contact-info {
  margin-bottom: var(--spacing-2xl);
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, var(--forever-green) 0%, var(--forever-dark) 100%);
  border-radius: var(--radius-lg);
  color: var(--forever-white);
  text-align: center;
  box-shadow: 0 15px 35px var(--forever-shadow-dark);
}

.contact-info__title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--forever-white);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.contact-info__content {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--forever-beige);
  margin-bottom: var(--spacing-md);
}

.contact-info__email {
  margin: 0;
  font-size: var(--font-size-base);
  color: var(--forever-beige);
}

.contact-info__email a {
  color: var(--forever-white);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-normal);
}

.contact-info__email a:hover {
  color: var(--forever-beige);
}

/* ========================================
   SHIPPING & DELIVERY INFO SECTION
   ======================================== */
.section-shipping-delivery-info {
  background: var(--forever-light);
  color: var(--forever-dark);
  padding: var(--spacing-3xl) 0;
}

.shipping-delivery-info__header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.shipping-delivery-info__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--forever-green);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.shipping-delivery-info__subtitle {
  font-size: var(--font-size-xl);
  color: var(--forever-dark);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.shipping-delivery-info__content {
  display: grid;
  gap: var(--spacing-xl);
}

/* Shipping Method */
.shipping-method {
  background: var(--forever-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--forever-border);
  box-shadow: 0 10px 30px var(--forever-shadow);
  transition: all var(--transition-normal);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.shipping-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px var(--forever-shadow-dark);
  border-color: var(--forever-green);
}

.shipping-method__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-sm);
}

.shipping-method__icon {
  width: 80px;
  height: 80px;
  background: var(--forever-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--forever-beige);
  transition: all var(--transition-normal);
}

.shipping-method:hover .shipping-method__icon {
  border-color: var(--forever-green);
  background: var(--forever-beige);
  transform: scale(1.1);
}

.shipping-method__icon-text {
  font-size: 2.5rem;
  filter: grayscale(0.3);
  transition: filter var(--transition-normal);
}

.shipping-method:hover .shipping-method__icon-text {
  filter: grayscale(0);
}

.shipping-method__icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.shipping-method__title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--forever-green);
  margin: 0;
  line-height: 1.3;
}

.shipping-method__details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.shipping-method__cost,
.shipping-method__timeframe {
  margin: 0;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--forever-dark);
}

.shipping-method__cost strong,
.shipping-method__timeframe strong {
  color: var(--forever-green);
  font-weight: 600;
}

.shipping-method__description {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--forever-dark);
  opacity: 0.8;
  margin-top: var(--spacing-sm);
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--forever-border);
}

/* Delivery Zones */
.delivery-zones {
  background: var(--forever-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--forever-border);
  box-shadow: 0 8px 25px var(--forever-shadow);
  text-align: center;
}

.delivery-zones__title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--forever-green);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.delivery-zones__content {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--forever-dark);
}

/* Tracking Info */
.tracking-info {
  background: var(--forever-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--forever-border);
  box-shadow: 0 8px 25px var(--forever-shadow);
  text-align: center;
}

.tracking-info__title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--forever-green);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.tracking-info__content {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--forever-dark);
  margin-bottom: var(--spacing-md);
}

.tracking-info__link {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-xl);
  background: var(--forever-green);
  color: var(--forever-white);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
  border: 2px solid var(--forever-green);
}

.tracking-info__link:hover {
  background: var(--forever-beige);
  color: var(--forever-green);
  border-color: var(--forever-beige);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(45, 76, 42, 0.2);
}

/* Shipping FAQ */
.shipping-faq {
  background: var(--forever-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--forever-border);
  box-shadow: 0 8px 25px var(--forever-shadow);
  margin-bottom: var(--spacing-lg);
}

.shipping-faq__question {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--forever-green);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
  cursor: pointer;
  transition: color var(--transition-normal);
}

.shipping-faq__question:hover {
  color: var(--forever-dark);
}

.shipping-faq__answer {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--forever-dark);
  opacity: 0.9;
}

/* ========================================
   PRIVACY POLICY SECTION
   ======================================== */
.section-privacy-policy {
  background: var(--forever-white);
  color: var(--forever-dark);
  padding: var(--spacing-3xl) 0;
}

.privacy-policy__header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.privacy-policy__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--forever-green);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.privacy-policy__subtitle {
  font-size: var(--font-size-xl);
  color: var(--forever-dark);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.privacy-policy__last-updated {
  background: var(--forever-light);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--forever-border);
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

.privacy-policy__last-updated p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--forever-dark);
  opacity: 0.8;
}

.privacy-policy__content {
  text-align: left;
}

/* Privacy Section */
.privacy-section {
  margin-bottom: var(--spacing-2xl);
  padding: var(--spacing-xl);
  background: var(--forever-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--forever-border);
  box-shadow: 0 10px 30px var(--forever-shadow);
  transition: all var(--transition-normal);
}

.privacy-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px var(--forever-shadow-dark);
  border-color: var(--forever-green);
}

.privacy-section__title {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--forever-green);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
  border-bottom: 2px solid var(--forever-beige);
  padding-bottom: var(--spacing-sm);
}

.privacy-section__content {
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--forever-dark);
}

.privacy-section__content p {
  margin-bottom: var(--spacing-md);
}

/* Data Collection */
.data-collection {
  margin-bottom: var(--spacing-2xl);
  padding: var(--spacing-xl);
  background: var(--forever-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--forever-border);
  box-shadow: 0 8px 25px var(--forever-shadow);
}

.data-collection__title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--forever-green);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.data-collection__content {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--forever-dark);
  margin-bottom: var(--spacing-md);
}

.data-collection__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-sm);
}

.data-collection__list-item {
  position: relative;
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--forever-light);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--forever-beige);
  font-size: var(--font-size-base);
  line-height: 1.5;
  color: var(--forever-dark);
  transition: all var(--transition-normal);
}

.data-collection__list-item:hover {
  border-left-color: var(--forever-green);
  background: var(--forever-beige);
  transform: translateX(4px);
}
/* Privacy Contact */
.privacy-contact {
  margin-bottom: var(--spacing-2xl);
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, var(--forever-green) 0%, var(--forever-dark) 100%);
  border-radius: var(--radius-lg);
  color: var(--forever-white);
  text-align: center;
  box-shadow: 0 15px 35px var(--forever-shadow-dark);
  display: none;
}
.contact-info__content p{
  color: #fff;
}
.privacy-contact__title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--forever-white);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.privacy-contact__content {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--forever-beige);
  margin-bottom: var(--spacing-md);
}

.privacy-contact__email,
.privacy-contact__phone {
  margin: 0;
  font-size: var(--font-size-base);
  color: var(--forever-beige);
}

.privacy-contact__email a,
.privacy-contact__phone a {
  color: var(--forever-white);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-normal);
}

.privacy-contact__email a:hover,
.privacy-contact__phone a:hover {
  color: var(--forever-beige);
}

/* Legal Text */
.legal-text {
  margin-bottom: var(--spacing-2xl);
  padding: var(--spacing-xl);
  background: var(--forever-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--forever-border);
  box-shadow: 0 8px 25px var(--forever-shadow);
}

.legal-text__title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--forever-green);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.legal-text__content {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--forever-dark);
}

/* ========================================
   TERMS OF USE SECTION
   ======================================== */
.section-terms-of-use {
  background: var(--forever-light);
  color: var(--forever-dark);
  padding: var(--spacing-3xl) 0;
}

.terms-of-use__header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.terms-of-use__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--forever-green);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.terms-of-use__subtitle {
  font-size: var(--font-size-xl);
  color: var(--forever-dark);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.terms-of-use__last-updated {
  background: var(--forever-white);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--forever-border);
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

.terms-of-use__last-updated p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--forever-dark);
  opacity: 0.8;
}

.terms-of-use__content {
  text-align: left;
}

/* Terms Section */
.terms-section {
  margin-bottom: var(--spacing-2xl);
  padding: var(--spacing-xl);
  background: var(--forever-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--forever-border);
  box-shadow: 0 10px 30px var(--forever-shadow);
  transition: all var(--transition-normal);
}

.terms-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px var(--forever-shadow-dark);
  border-color: var(--forever-green);
}

.terms-section__title {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--forever-green);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
  border-bottom: 2px solid var(--forever-beige);
  padding-bottom: var(--spacing-sm);
}

.terms-section__content {
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--forever-dark);
}

.terms-section__content p {
  margin-bottom: var(--spacing-md);
}

/* Terms List */
.terms-list {
  margin-bottom: var(--spacing-2xl);
  padding: var(--spacing-xl);
  background: var(--forever-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--forever-border);
  box-shadow: 0 8px 25px var(--forever-shadow);
}

.terms-list__title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--forever-green);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.terms-list__items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-list__item {
  position: relative;
  padding: var(--spacing-sm) 0 var(--spacing-sm) var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--forever-dark);
  border-left: 3px solid var(--forever-beige);
  background: var(--forever-white);
  padding-left: var(--spacing-lg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: all var(--transition-normal);
}

.terms-list__item:hover {
  border-left-color: var(--forever-green);
  background: var(--forever-beige);
  transform: translateX(4px);
}

/* Legal Disclaimer */
.legal-disclaimer {
  margin-bottom: var(--spacing-2xl);
  padding: var(--spacing-xl);
  background: var(--forever-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--forever-border);
  box-shadow: 0 8px 25px var(--forever-shadow);
  border-left: 4px solid var(--forever-beige);
}
.terms-contact__content p{
  color: #fff;
}
.legal-disclaimer__title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--forever-green);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.legal-disclaimer__content {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--forever-dark);
}

/* Terms Contact */
.terms-contact {
  margin-bottom: var(--spacing-2xl);
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, var(--forever-green) 0%, var(--forever-dark) 100%);
  border-radius: var(--radius-lg);
  color: var(--forever-white);
  text-align: center;
  box-shadow: 0 15px 35px var(--forever-shadow-dark);
}

.terms-contact__title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--forever-white);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.terms-contact__content {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--forever-beige);
  margin-bottom: var(--spacing-md);
}

.terms-contact__email,
.terms-contact__phone,
.terms-contact__address {
  margin: 0;
  font-size: var(--font-size-base);
  color: var(--forever-beige);
}

.terms-contact__email a,
.terms-contact__phone a {
  color: var(--forever-white);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-normal);
}

.terms-contact__email a:hover,
.terms-contact__phone a:hover {
  color: var(--forever-beige);
}

/* Acceptance Terms */
.acceptance-terms {
  margin-bottom: var(--spacing-2xl);
  padding: var(--spacing-xl);
  background: var(--forever-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--forever-border);
  box-shadow: 0 8px 25px var(--forever-shadow);
  text-align: center;
}

.acceptance-terms__title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--forever-green);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.acceptance-terms__content {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--forever-dark);
  margin-bottom: var(--spacing-lg);
}

.acceptance-terms__checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.acceptance-terms__label {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  cursor: pointer;
  font-size: var(--font-size-base);
  color: var(--forever-dark);
}

.acceptance-terms__input {
  width: 20px;
  height: 20px;
  accent-color: var(--forever-green);
  cursor: pointer;
}

.acceptance-terms__text {
  font-weight: 500;
}

/* ========================================
   RESPONSIVE DESIGN FOR LEGAL SECTIONS
   ======================================== */
@media (max-width: 1024px) {
  .shipping-method {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-md);
  }
  
  .shipping-method__header {
    order: -1;
  }
  
  .data-collection__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Legal Sections Mobile */
  .section-return-refund-policy,
  .section-shipping-delivery-info,
  .section-privacy-policy,
  .section-terms-of-use {
    padding: var(--spacing-2xl) 0;
  }
  
  .return-refund-policy,
  .shipping-delivery-info,
  .privacy-policy,
  .terms-of-use {
    margin: 0 var(--spacing-md);
  }
  
  .return-refund-policy__title,
  .shipping-delivery-info__title,
  .privacy-policy__title,
  .terms-of-use__title {
    font-size: 2.5rem;
  }
  
  .policy-section,
  .shipping-method,
  .privacy-section,
  .data-collection,
  .terms-section,
  .terms-list,
  .legal-disclaimer {
    padding: var(--spacing-lg);
  }
  
  .policy-list__item,
  .terms-list__item {
    padding-left: var(--spacing-md);
  }
  
  .policy-list__item::before,
  .terms-list__item::before {
    left: calc(var(--spacing-sm) / 2);
  }
  
  .shipping-method__icon {
    width: 60px;
    height: 60px;
  }
  
  .shipping-method__icon-text {
    font-size: 2rem;
  }
  
  .shipping-method__icon-img {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  .return-refund-policy__title,
  .shipping-delivery-info__title,
  .privacy-policy__title,
  .terms-of-use__title {
    font-size: 2rem;
  }
  
  .policy-section__title,
  .shipping-method__title,
  .privacy-section__title,
  .data-collection__title,
  .terms-section__title,
  .terms-list__title,
  .legal-disclaimer__title {
    font-size: var(--font-size-lg);
  }
  
  .policy-section,
  .shipping-method,
  .privacy-section,
  .data-collection,
  .terms-section,
  .terms-list,
  .legal-disclaimer {
    padding: var(--spacing-md);
  }
  
  .contact-info,
  .privacy-contact,
  .terms-contact {
    padding: var(--spacing-lg);
  }
  
  .shipping-method__icon {
    width: 50px;
    height: 50px;
  }
  
  .shipping-method__icon-text {
    font-size: 1.5rem;
  }
  
  .shipping-method__icon-img {
    width: 30px;
    height: 30px;
  }
  
  .acceptance-terms__checkbox {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
}

/* ========================================
   DYNAMIC SPACING SUPPORT FOR LEGAL SECTIONS
   ======================================== */

/* Return & Refund Policy Section */
.section-return-refund-policy[style*="--spacing-top"] {
  padding-top: var(--spacing-top, var(--spacing-3xl));
}

.section-return-refund-policy[style*="--spacing-bottom"] {
  padding-bottom: var(--spacing-bottom, var(--spacing-3xl));
}

/* Shipping & Delivery Info Section */
.section-shipping-delivery-info[style*="--spacing-top"] {
  padding-top: var(--spacing-top, var(--spacing-3xl));
}

.section-shipping-delivery-info[style*="--spacing-bottom"] {
  padding-bottom: var(--spacing-bottom, var(--spacing-3xl));
}

/* Privacy Policy Section */
.section-privacy-policy[style*="--spacing-top"] {
  padding-top: var(--spacing-top, var(--spacing-3xl));
}

.section-privacy-policy[style*="--spacing-bottom"] {
  padding-bottom: var(--spacing-bottom, var(--spacing-3xl));
}

/* Terms of Use Section */
.section-terms-of-use[style*="--spacing-top"] {
  padding-top: var(--spacing-top, var(--spacing-3xl));
}

.section-terms-of-use[style*="spacing-bottom"] {
  padding-bottom: var(--spacing-bottom, var(--spacing-3xl));
}

/* ========================================
   SIZE CHART BLOCK STYLES
   ======================================== */
.product__size-chart {
  margin-bottom: var(--spacing-md);
}

.size-chart {
  border: 1px solid var(--forever-beige);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border-color: var(--forever-green);
  box-shadow: 0 4px 12px rgba(45, 76, 42, 0.1);
}

.size-chart:hover {
  border-color: var(--forever-green);
  box-shadow: 0 4px 12px rgba(45, 76, 42, 0.1);
}

.size-chart__toggle {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--forever-green);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 0;
}

.size-chart__toggle:hover {
  background: rgba(45, 76, 42, 0.05);
  color: var(--forever-green);
}

.size-chart__toggle--expanded {
  background: rgba(45, 76, 42, 0.05);
  border-bottom: 1px solid var(--forever-beige);
}

.size-chart__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--forever-green);
  flex-shrink: 0;
}

.size-chart__icon svg {
  width: 100%;
  height: 100%;
}

.size-chart__button-text {
  transition: opacity 0.3s ease;
}

.size-chart__button-text--hidden {
  display: none;
  opacity: 0;
}

.size-chart__toggle--expanded .size-chart__button-text {
  display: none;
  opacity: 0;
}

.size-chart__toggle--expanded .size-chart__button-text--hidden {
  display: inline;
  opacity: 1;
}

.size-chart__content {
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
}

.size-chart__image-wrapper {
  text-align: center;
}

.size-chart__image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.size-chart__image:hover {
  transform: scale(1.02);
}

/* Size Chart Responsive Design */
@media (max-width: 768px) {
  .size-chart__toggle {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9rem;
  }
  
  .size-chart__content {
    padding: var(--spacing-md);
  }
  
  .size-chart__icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .size-chart__toggle {
    padding: var(--spacing-sm);
    font-size: 0.85rem;
  }
  
  .size-chart__content {
    padding: var(--spacing-sm);
  }
}

/* ========================================
   CAREERS & OPPORTUNITIES SECTION
   ======================================== */
.section-careers-opportunities {
  background: var(--gradient-background);
  color: var(--forever-dark);
}

.careers-opportunities__header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.careers-opportunities__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--forever-green);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.careers-opportunities__subtitle {
  font-size: var(--font-size-xl);
  color: var(--forever-dark);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Tab Navigation */
.careers-opportunities__tabs {
  margin-top: var(--spacing-2xl);
}

.careers-opportunities__tab-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-2xl);
  border-bottom: 2px solid var(--forever-border);
  padding-bottom: var(--spacing-md);
}

.careers-opportunities__tab-button {
  background: none;
  border: none;
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--forever-dark);
  cursor: pointer;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transition: all var(--transition-normal);
  position: relative;
  border-bottom: 3px solid transparent;
}

.careers-opportunities__tab-button:hover {
  color: var(--forever-green);
  background: var(--laurel-green);
}

.careers-opportunities__tab-button.active {
  color: var(--forever-green);
  background: var(--laurel-green);
  border-bottom-color: var(--forever-green);
}

.careers-opportunities__tab-button.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--forever-green);
  border-radius: 1px;
}

/* Tab Content */
.careers-opportunities__tab-content {
  position: relative;
}

/* Role Descriptions */
.careers-opportunities__role-description {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  padding: var(--spacing-xl);
  background: var(--laurel-green);
  border-radius: var(--radius-lg);
  border: 2px solid var(--forever-border);
}

.careers-opportunities__role-title {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--forever-green);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.careers-opportunities__role-text {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: var(--forever-dark);
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}

.careers-opportunities__tab-panel {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.careers-opportunities__tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Content Grid */
.careers-opportunities__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-lg);
}

/* Opportunity Cards */
.careers-opportunities__card {
  background: var(--laurel-green);
  border: 2px solid var(--forever-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  transition: all var(--transition-normal);
  box-shadow: 0 8px 25px var(--forever-shadow);
  position: relative;
  overflow: hidden;
}

.careers-opportunities__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forever-green), var(--forever-beige));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.careers-opportunities__card:hover::before {
  transform: scaleX(1);
}

.careers-opportunities__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--forever-shadow-dark);
  border-color: var(--forever-green);
}

.careers-opportunities__card-icon {
  width: 80px;
  height: 80px;
  background: var(--forever-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  border: 3px solid var(--forever-beige);
  transition: all var(--transition-normal);
  overflow: hidden;
}

.careers-opportunities__card:hover .careers-opportunities__card-icon {
  border-color: var(--forever-green);
  background: var(--forever-beige);
  transform: scale(1.1);
}

.careers-opportunities__card-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.careers-opportunities__card:hover .careers-opportunities__card-icon img {
  transform: scale(1.1);
}

.careers-opportunities__card-content {
  text-align: center;
}

.careers-opportunities__card-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--forever-green);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.careers-opportunities__card-description {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--forever-dark);
  margin-bottom: var(--spacing-lg);
  opacity: 0.9;
}

.careers-opportunities__card-button {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-xl);
  background: var(--forever-green);
  color: var(--forever-white);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
  border: 2px solid var(--forever-green);
  position: relative;
  overflow: hidden;
}

.careers-opportunities__card-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.careers-opportunities__card-button:hover::before {
  left: 100%;
}

.careers-opportunities__card-button:hover {
  background: var(--forever-beige);
  color: var(--forever-green);
  border-color: var(--forever-beige);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(45, 76, 42, 0.2);
}

/* Enhanced Card Hover Effects */
.careers-opportunities__card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(45, 76, 42, 0.02) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.careers-opportunities__card:hover::after {
  transform: translateX(100%);
}

/* Card Loading State */
.careers-opportunities__card.loading {
  opacity: 0.7;
  pointer-events: none;
}

.careers-opportunities__card.loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid rgba(45, 76, 42, 0.3);
  border-top: 3px solid var(--forever-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 10;
}
.header__nav--group-card{
  display: none;
}
.dropdown-with-card .header__nav--group-link{
      width: 100%;
    padding: 20px;
}
.newsletter__button{
  background: var(--forever-green)!important;
  color: #fff!important;
}
/* Responsive Design */
@media (max-width: 1024px) {
  .careers-opportunities__content-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
  }
}

@media (max-width: 768px) {
  .section-careers-opportunities {
    padding: var(--spacing-2xl) 0;
  }
  
  .careers-opportunities__header {
    margin-bottom: var(--spacing-2xl);
  }
  
  .careers-opportunities__title {
    font-size: 2.5rem;
  }
  
  .careers-opportunities__subtitle {
    font-size: var(--font-size-lg);
  }
  
  .careers-opportunities__tab-buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .careers-opportunities__tab-button {
    width: 100%;
    max-width: 300px;
    border-radius: var(--radius-md);
    border-bottom: 2px solid var(--forever-border);
    text-align: center;
  }
  
  .careers-opportunities__tab-button.active {
    border-bottom-color: var(--forever-green);
  }
  
  .careers-opportunities__tab-button.active::after {
    display: none;
  }
  
  .careers-opportunities__role-description {
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
  }
  
  .careers-opportunities__role-title {
    font-size: var(--font-size-xl);
  }
  
  .careers-opportunities__role-text {
    font-size: var(--font-size-base);
  }
  
  .careers-opportunities__content-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .careers-opportunities__card {
    padding: var(--spacing-lg);
  }
  
  .careers-opportunities__card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-md);
  }
  
  .careers-opportunities__card-icon img {
    width: 36px;
    height: 36px;
  }
  .join-lifestyle-cta{
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .careers-opportunities__title {
    font-size: 2rem;
  }
  
  .careers-opportunities__subtitle {
    font-size: var(--font-size-base);
  }
  
  .careers-opportunities__tab-button {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--font-size-base);
  }
  
  .careers-opportunities__card {
    padding: var(--spacing-md);
  }
  
  .careers-opportunities__card-icon {
    width: 50px;
    height: 50px;
  }
  
  .careers-opportunities__card-icon img {
    width: 30px;
    height: 30px;
  }
  
  .careers-opportunities__card-title {
    font-size: var(--font-size-lg);
  }
  
  .careers-opportunities__card-description {
    font-size: var(--font-size-sm);
  }
  
  .careers-opportunities__role-description {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
  }
  
  .careers-opportunities__role-title {
    font-size: var(--font-size-lg);
  }
  
  .careers-opportunities__role-text {
    font-size: var(--font-size-sm);
  }
  
  .careers-opportunities__card-button {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-sm);
  }
}

/* Dynamic Spacing Support */
.section-careers-opportunities[style*="--spacing-top"] {
  padding-top: var(--spacing-top, var(--spacing-3xl));
}

.section-careers-opportunities[style*="--spacing-bottom"] {
  padding-bottom: var(--spacing-bottom, var(--spacing-3xl));
}
/* .section-footer__content p{
  color:#fff;
} */
.accordion__section{
  border-block-end: .1rem solid #2a3a17!important;
}
.accordion__section:last-child {
  padding-block-end: 0;
  border-block-end: none!important;
}
.product__gallery-toggle.motion-reduce{
  pointer-events: none;
}

.media.media--overlay.card-collection__media img {
    object-fit: cover;
}

.product-grid__item--content-wrapper.product-grid__sticky .product-card__badge {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
}

/* .footer__newsletter h3.footer__block-heading {
    color: white ! IMPORTANT;
} */


/* Filter Css */
summary#Filters-drawer-button-template--16852772946129__main{
  background: #2a3a17;
  color: white !important;

}

.custom-select__wrapper button.custom-select__btn.button-reset.focus-inset.js-btn-dropdown.facets__button-custom {
    background: #2a3a17;
    color: white !important;
}

ul.custom-select__items.list-unstyled.js-list-options li.custom-select__item {
    background: #2a3a17;
    color: white !important;
}

li.custom-select__item button.custom-select__option.button-reset.js-btn-option {
  color: white !important;
}