:root {
  --clay: #E3C8B0;
  --sage: #B5C2B7;
  --taupe: #A58F86;
  --dusty-rose: #D4A59A;
  --deep-moss: #8B5E3C; 
  --ivory: #F9F5F0;
  --chocolate: #6F4B30;
  --zouri-beige: #FEFCFA;
}

/* Hero Section */
.hero {
  position: relative;
  height: 720px;
  overflow: hidden;
}


.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-image {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(92, 77, 61, 0.2) 0%, rgba(165, 143, 134, 0.1) 100%);
  z-index: 1;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-right: 150px;
  padding-left: 150px;
  padding-bottom: 80px;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  justify-content: center;
}

.hero-text {
  font-size: 16px;
  color: #fff;
  max-width: 360px;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-heading {
  font-size: 250px;
  letter-spacing: -2%;
  color: #fff;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.8s forwards;
}

.holiday-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(212, 184, 150, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(232, 200, 200, 0.02) 0%, transparent 50%),
    linear-gradient(135deg, rgba(139, 94, 60, 0.03) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
  animation: gentlePulse 8s ease-in-out infinite;
}

/* Subtle shimmer animation */
@keyframes gentlePulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Floating elements */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  opacity: 0.7;
  z-index: 0;
  font-size: 24px;
}

/* Buttons */
.hero-button {
  background-color: var(--zouri-beige);
  color: var(--chocolate);
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 1.1s forwards;
}

.button-sparkle {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: rotate(45deg) translateY(-100%);
  transition: transform 0.6s var(--ease-gentle);
}

.hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(92, 77, 61, 0.2);
  color: #2D2C2A;
}


.hero-button:hover .button-sparkle {
  transform: rotate(45deg) translateY(100%);
}

.hero-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FAF5EE;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-button:hover::before {
  opacity: 1;
}

/* Text Sections */
.text-section {
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.other-text-section {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.other-text-content {
  font-size: 38px;
  max-width: 776px;
  margin-bottom: 24px;
  line-height: 1.5;
  color: #2D2C2A;
}

.text-content {
  font-size: 24px;
  max-width: 776px;
  margin-bottom: 0px;
  line-height: 1.5;
  color: #2D2C2A;
}

.text-content-2 {
  font-size: 38px
}

/* Explore Button */
.explore-button {
  font-size: 16px;
  color: #4A4845;
  background: none;
  border: none;
  padding: 4px 0;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  font-weight: 500;
  text-decoration: none;
}

.explore-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #2D2C2A;
  transition: all 0.3s ease;
}

.explore-button:hover {
  color: var(--deep-moss);
  font-weight: 600;
}

.explore-button:hover::after {
  opacity: 0;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 48px 0;
}

#seasonal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 48px 0;
}

.product-card {
  overflow: hidden;
  text-align: center;
}

.product-image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  margin: 0 auto;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bestseller-tag {
  position: absolute;
  top: 32px;
  left: 32px;
  font-size: 15px;
  color: #85827C;
}

.product-details {
  padding: 20px 16px;
}

.product-name {
  font-size: 16px;
  color: #2D2C2A;
  margin: 0 0 8px 0;
}

.product-description,
.product-price {
  font-size: 16px;
  color: #85827C;
  margin: 0 0 8px 0;
}

.product-price {
  font-weight: 500;
}

/* Image Grid */
.image-grid {
  padding: 0px 0px 32px 0px;
}

.image-container {
  display: flex;
  gap: 8px;
  max-width: 1440px;
  margin: 0 auto;
}

.image-container img {
  width: calc(50% - 8px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0px;
}

/* Loading Spinner */
.loading-spinner {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: var(--taupe);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}

.error-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 20px;
  color: #e74c3c;
}

.floating-element {
color: var(--holiday-gold);
opacity: 0.4;
transition: all 4s var(--ease-soft);
}

.floating-element:nth-child(2n) {
color: var(--holiday-rose);
}

/* Holiday micro-interactions */
.hero-button, .explore-button, .newsletter-input button {
transition: all 0.4s var(--ease-gentle);
}

.hero-button:hover, .newsletter-input button:hover {
box-shadow: 
  0 6px 20px var(--warm-shadow),
  0 0 0 1px rgba(212, 184, 150, 0.2);
}

/* Holiday loading states */
.spinner {
border-left-color: var(--holiday-gold);
}

.price-loading {
border-top-color: var(--holiday-gold);
}

/* Toast notifications with holiday accent */
.toast-success::before {
background-color: var(--holiday-gold);
}

/* Newsletter form enhancement */
.newsletter-input input:focus {
border-color: var(--holiday-gold);
box-shadow: 0 0 0 2px rgba(212, 184, 150, 0.15);
}

/* Currency selector holiday touch */
.currency-float .currency-option:hover {
color: var(--holiday-gold);
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.additional-section {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 40px;
}

.banner-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    height: 680px;
}

.banner {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

#banner-2 {
  object-position: top center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 132px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.banner-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
}

.banner-title {
    font-size: 80px;
    font-weight: 100;
    color: white;
    line-height: 1.1;
    margin-bottom: 0;
}

.banner-subtitle {
    font-size: 16px;
    color: white;
    opacity: 0.9;
    margin-top: 0;
}

/* Button Styles */
.banner-button {
    padding: 12px 24px;
    background: transparent;
    color: white;
    border: 2px solid #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease;
    z-index: 1;
    min-width: 160px;
    text-align: center;
    display: inline-block;
}

.banner-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #ffffff;
    transition: height 0.4s ease;
    z-index: -1;
}

.banner-button:hover {
    color: #5D4037;
}

.banner-button:hover::before {
    height: 100%;
}

.section-products-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.section-product-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    height: 100%;
}

.section-product-image-container {
    height: 370px; 
    overflow: hidden;
}

.section-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.section-product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.section-product-title {
    font-size: 16px;
    color: #2D2C2A;
    margin: 0;
}

.section-color-options {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.section-color-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

/* Color samples */
.section-color-kama { background-color: #D39D6E; }
.section-color-baraka { background-color: #ECCC96; }
.section-color-amani { background-color: #FF5D30; }
.section-color-imani { background-color: #806E02; }
.section-color-wingi { background-color: #BE1F22; }
.section-color-bronze { background-color: #c66122; }
.section-color-olive { background-color: #7a814d; }
.section-color-coco { background-color: #7D5240; }
.section-color-ivory { background-color: #E8E5D9; }
.section-color-red { background-color: #FD444A; }
.section-color-peachy { background-color: #F8BB6E; }
.section-color-mustard { background-color: #f1b026; }
.section-color-sunset { background-color: #be3c1e; }
.section-color-olivegreen { background-color: #ae862e; }


.section-product-price {
    font-size: 16px;
    color: #85827C;
    margin: 0;
}

.social-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 20px;
}

.social-container {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.social-header {
    text-align: center;
}

.social-title {
    font-size: 38px;
    color: #2D2C2A;
    margin: 0 0 8px 0;
}

.social-subtitle {
    font-size: 18px;
    color: #85827C;
    margin: 0;
}

/* Carousel Wrapper */
.social-carousel-wrapper {
    overflow: hidden;
    position: relative;
    margin: 0 -20px;
    padding: 0 20px;
}

.social-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 24px) / 4); /* 4 cards with gaps */
    gap: 8px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Social Card */
.social-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: translateY(-4px);
}

.social-image-container {
    height: 450px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 8px;
}

.social-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.social-card:hover .social-image {
    transform: scale(1.05);
}

.social-text {
    font-size: 14px;
    color: #2D2C2A;
    text-align: left;
    padding-left: 32px;
}

/* Navigation Controls */
.social-navigation {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
}

.progress-bar {
    width: 100%;
    height: 2.5px;
    background-color: #D9D9D9;
    border-radius: none;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #2D2C2A;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2.5px;
}

.nav-buttons {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #2D2C2A;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2D2C2A;
}

.nav-button:hover:not(:disabled) {
    background-color: #2D2C2A;
    color: white;
}

.nav-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #85827C;
    color: #85827C;
}

.nav-button svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 1200px) {
  .hero {
    height: 1000px;
  }

  .hero-content {
    padding-left: 80px;
    padding-right: 80px;
    padding-top: 120px;
  }

  .text-card {
    padding: 0 32px 0 0px;
  } 

  .culture-image {
    height: 580px;
  }
}

/* Tablet Styles */
@media (max-width: 980px) {
  .hero {
    height: 800px;
  }

  .hero-content {
    padding-right: 32px;
    padding-left: 32px;
    padding-bottom: 60px;
    padding-top: 80px;
  }

  .text-content {
    max-width: 480px;
  }

  .other-text-content {
    font-size: 32px;
  }

  .hero-heading {
    font-size: 180px;
    margin-top: 50px;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-button {
    font-size: 14px;
    margin-top: 50px;
  }

  .image-grid {
    padding: 0px 0px 40px 0px;
  }

  .explore-button {
    font-size: 14px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #seasonal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-name,
  .product-description,
  .product-price {
    font-size: 14px;
  }

  .image-container {
    flex-direction: column;
  }

  .image-container img {
    width: 100%;
  }

  .banner-container {
      grid-template-columns: 1fr;
      height: auto;
  }

  .banner-container {
      height: fit-content;
  }
  
  .banner-content {
      padding: 0 80px 40px;
  }
  
  .banner-title {
      font-size: 72px;
  }
  
  .section-product-image-container {
      height: 400px; /* Adjust for tablet */
  }
  
  .section-products-container {
      grid-template-columns: repeat(2, 1fr);
  }

  .social-section {
      padding: 60px 20px;
  }
  
  .social-container {
      gap: 48px;
  }
  
  .social-title {
      font-size: 36px;
  }
  
  .social-subtitle {
      font-size: 16px;
  }
  
  .social-carousel {
      grid-auto-columns: calc((100% - 8px) / 2); /* 2 cards on tablet */
  }
  
  .social-image-container {
      height: 400px;
  }
}

/* Mobile Styles */
@media (max-width: 480px) {
  .hero {
    height: 750px;
  }

  .hero-content {
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 80px;
    padding-top: 120px;
  }

  .hero-heading {
    font-size: 120px;
    margin-top: 38px;
  }

  .hero-text {
    font-size: 14px;
    max-width: 260px;
  }

  .hero-button {
    font-size: 14px;
    margin-top: 40px;
  }

  .text-section {
    padding: 40px;
  }

  .text-content {
    font-size: 20px;
    line-height: 1.1;
    margin-bottom: 0px;
  }

  .text-content-2 {
    font-size: 24px
  }

  .other-text-section {
    padding: 64px 10px;
  }

  .other-text-content {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .product-details {
    padding: 16px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #seasonal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bestseller-tag {
    top: 16px;
    left: 16px;
    font-size: 14px;
  }

  .image-grid {
    padding: 0px 0px 32px 0px;
  }

  .products-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
  }

  .banner {
      height: 450px;
  }

  .banner-container {
      height: fit-content;
  }
  
  .banner-content {
      padding: 0 40px 32px;
  }
  
  .banner-title {
      font-size: 48px;
  }
  
  .banner-subtitle {
      font-size: 14px;
  }
  
  .section-product-image-container {
      height: 250px;
  }
  
  .section-product-info {
      padding: 12px;
      gap: 8px;
  }
  
  .section-product-title {
      font-size: 14px;
  }
  
  .section-color-circle {
      width: 20px;
      height: 20px;
  }
  
  .section-product-price {
      font-size: 14px;
  }
    
  .banner-button {
      padding: 10px 24px;
      font-size: 14px;
      min-width: 140px;
  }

  .social-section {
      padding: 40px 16px;
  }
  
  .social-container {
      gap: 40px;
  }
  
  .social-title {
      font-size: 28px;
  }
  
  .social-carousel {
      grid-auto-columns: calc(100% - 16px); /* 1 card with partial peek */
  }
  
  .social-image-container {
      height: 350px;
  }
  
  .nav-buttons {
      gap: 24px;
  }
  
  .nav-button {
      width: 48px;
      height: 48px;
  }
}

