/* ===================================
   GAFFARO - COMPONENT STYLES
   Buttons, Cards, Badges, Navigation, etc.
   =================================== */

/* Buttons */
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md) var(--spacing-xl);
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 44px;
}

.c-button:focus {
  outline: 2px solid var(--color-caramel);
  outline-offset: 2px;
}

.c-button--primary {
  background: linear-gradient(145deg, var(--color-chocolate-brown) 0%, #5a3e33 100%);
  color: var(--color-white);
  box-shadow: 
    0 4px 12px rgba(107, 75, 60, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(107, 75, 60, 0.2);
}

.c-button--primary:hover {
  background: linear-gradient(145deg, var(--color-caramel) 0%, #c4916b 100%);
  color: var(--color-white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 6px 20px rgba(217, 162, 115, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(217, 162, 115, 0.3);
}

.c-button--secondary {
  background-color: var(--color-sage-green);
  color: var(--color-dark-text);
}

.c-button--secondary:hover {
  background-color: var(--color-hazelnut-beige);
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}

.c-button--outline {
  background-color: transparent;
  color: var(--color-chocolate-brown);
  border: 2px solid var(--color-chocolate-brown);
}

.c-button--outline:hover {
  background-color: var(--color-chocolate-brown);
  color: var(--color-white);
  border-color: var(--color-chocolate-brown);
}

.c-button--large {
  padding: var(--spacing-lg) var(--spacing-xxl);
  font-size: var(--font-size-lg);
}

.c-button--small {
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: var(--font-size-sm);
}

/* Cards */
.c-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-light);
  overflow: hidden;
  transition: all var(--transition-normal);
  height: 100%;
}

.c-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.c-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: var(--color-hazelnut-beige);
}

.c-card__content {
  padding: var(--spacing-xl);
}

.c-card__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-md);
  color: var(--color-chocolate-brown);
}

.c-card__description {
  color: var(--color-light-text);
  margin-bottom: var(--spacing-lg);
  line-height: var(--line-height-relaxed);
}

.c-card__footer {
  padding: 0 var(--spacing-xl) var(--spacing-xl);
}

/* Product Cards */
.c-product-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f8f8 100%);
  border-radius: var(--radius-lg);
  box-shadow: 
    0 8px 32px rgba(107, 75, 60, 0.12),
    0 2px 8px rgba(107, 75, 60, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(232, 220, 207, 0.3);
  transform-style: preserve-3d;
}

.c-product-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(217, 162, 115, 0.1) 0%, rgba(191, 216, 197, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  pointer-events: none;
  border-radius: var(--radius-lg);
  filter: blur(4px);
}

.c-product-card:hover {
  transform: translateY(-12px) rotateX(5deg) rotateY(2deg) scale(1.03);
  box-shadow: 
    0 25px 50px rgba(107, 75, 60, 0.2),
    0 8px 16px rgba(107, 75, 60, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 0.8);
  border-color: rgba(217, 162, 115, 0.4);
  will-change: transform, box-shadow;
  z-index: 10;
}


/* Ensure smooth transition back to normal state */
.c-product-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.c-product-card:hover::before {
  opacity: 1;
}

.c-product-card:hover .c-product-card__image {
  transform: scale(1.05);
}

.c-product-card:hover .c-product-card__title {
  color: var(--color-caramel);
  transform: translateY(-2px);
}

.c-product-card:hover .c-button {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 75, 60, 0.2);
}

.c-product-card__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--color-hazelnut-beige) 0%, var(--color-cream) 100%);
  transition: transform 0.4s ease;
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

.c-product-card__content {
  padding: var(--spacing-xl);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.c-product-card__title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-md);
  color: var(--color-chocolate-brown);
  transition: all 0.3s ease;
  position: relative;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.c-product-card__title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-caramel);
  transition: width 0.3s ease;
}

.c-product-card:hover .c-product-card__title::after {
  width: 100%;
}

.c-product-card__description {
  color: var(--color-light-text);
  margin-bottom: var(--spacing-lg);
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
  transition: color 0.3s ease;
}

.c-product-card:hover .c-product-card__description {
  color: var(--color-dark-text);
}

.c-product-card__specs {
  margin-bottom: var(--spacing-lg);
  transition: transform 0.3s ease;
}

.c-product-card:hover .c-product-card__specs {
  transform: translateY(-2px);
}

.c-product-card__spec {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-sm);
  color: var(--color-light-text);
  transition: all 0.3s ease;
  padding: var(--spacing-sm);
  border-radius: var(--radius-sm);
  background: rgba(232, 220, 207, 0.1);
  border: 1px solid rgba(232, 220, 207, 0.2);
}

.c-product-card__spec:hover {
  background-color: rgba(217, 162, 115, 0.15);
  border-color: rgba(217, 162, 115, 0.3);
  transform: translateX(4px) translateY(-1px);
  box-shadow: 0 2px 8px rgba(217, 162, 115, 0.2);
}

.c-product-card__footer {
  margin-top: auto;
  transition: transform 0.3s ease;
}

/* Badges */
.c-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--spacing-xs) var(--spacing-md);
  background-color: var(--color-sage-green);
  color: var(--color-dark-text);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.c-badge--certificate {
  background-color: var(--color-caramel);
  color: var(--color-white);
}

.c-badge--feature {
  background-color: var(--color-hazelnut-beige);
  color: var(--color-chocolate-brown);
}

/* Value Cards */
.c-value-card {
  text-align: center;
  padding: var(--spacing-xxl);
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-light);
  transition: all var(--transition-normal);
}

.c-value-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.c-value-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-lg);
  background-color: var(--color-sage-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: var(--color-chocolate-brown);
}

.c-value-card__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-md);
  color: var(--color-chocolate-brown);
}

.c-value-card__description {
  color: var(--color-light-text);
  line-height: var(--line-height-relaxed);
}

/* Timeline */
.c-timeline {
  position: relative;
  padding: var(--spacing-xxl) 0;
}

.c-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-hazelnut-beige);
  transform: translateX(-50%);
}

.c-timeline__item {
  position: relative;
  margin-bottom: var(--spacing-xxxl);
  display: flex;
  align-items: center;
}

.c-timeline__item:nth-child(odd) {
  flex-direction: row;
}

.c-timeline__item:nth-child(even) {
  flex-direction: row-reverse;
}

.c-timeline__content {
  flex: 1;
  padding: var(--spacing-xl);
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-light);
  margin: 0 var(--spacing-xl);
}

.c-timeline__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background-color: var(--color-caramel);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: var(--color-white);
  z-index: 2;
}

.c-timeline__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-md);
  color: var(--color-chocolate-brown);
}

.c-timeline__description {
  color: var(--color-light-text);
  line-height: var(--line-height-relaxed);
}

@media (max-width: 767px) {
  .c-timeline::before {
    left: var(--spacing-xl);
  }
  
  .c-timeline__item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: calc(var(--spacing-xl) * 2);
  }
  
  .c-timeline__icon {
    left: var(--spacing-xl);
    transform: translateX(-50%);
  }
  
  .c-timeline__content {
    margin: 0;
    width: 100%;
  }
}

/* Accordion (FAQ) */
.c-accordion {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-light);
  overflow: hidden;
}

.c-accordion__item {
  border-bottom: 1px solid var(--color-border);
}

.c-accordion__item:last-child {
  border-bottom: none;
}

.c-accordion__summary {
  padding: var(--spacing-xl);
  cursor: pointer;
  font-weight: 600;
  color: var(--color-chocolate-brown);
  background-color: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-size: var(--font-size-base);
  transition: background-color var(--transition-fast);
  position: relative;
}

.c-accordion__summary:hover {
  background-color: var(--color-cream);
}

.c-accordion__summary::after {
  content: '+';
  position: absolute;
  right: var(--spacing-xl);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--font-size-xl);
  font-weight: 300;
  transition: transform var(--transition-fast);
}

.c-accordion__item[open] .c-accordion__summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.c-accordion__content {
  padding: 0 var(--spacing-xl) var(--spacing-xl);
  color: var(--color-light-text);
  line-height: var(--line-height-relaxed);
}

/* Form Elements */
.c-form {
  background-color: var(--color-white);
  padding: var(--spacing-xxl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-light);
}

.c-form__group {
  margin-bottom: var(--spacing-lg);
}

.c-form__label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
  color: var(--color-dark-text);
}

.c-form__input,
.c-form__textarea {
  width: 100%;
  padding: var(--spacing-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: inherit;
  background-color: var(--color-white);
  transition: border-color var(--transition-fast);
}

.c-form__input:focus,
.c-form__textarea:focus {
  outline: none;
  border-color: var(--color-caramel);
  box-shadow: 0 0 0 3px rgba(217, 162, 115, 0.1);
}

.c-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.c-form__error {
  color: #dc2626;
  font-size: var(--font-size-sm);
  margin-top: var(--spacing-xs);
}

.c-form__success {
  color: #059669;
  font-size: var(--font-size-sm);
  margin-top: var(--spacing-xs);
}

/* Contact Card */
.c-contact-card {
  background-color: var(--color-white);
  padding: var(--spacing-xxl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-light);
  text-align: center;
}

.c-contact-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--spacing-lg);
  background-color: var(--color-sage-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: var(--color-chocolate-brown);
}

.c-contact-card__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-md);
  color: var(--color-chocolate-brown);
}

.c-contact-card__info {
  color: var(--color-light-text);
  line-height: var(--line-height-relaxed);
}

/* Certificate Strip */
/* Certificate Showcase - Modern Design */
.c-certificate-showcase {
  max-width: 1200px;
  margin: 0 auto;
}

.c-certificate-showcase__header {
  text-align: center;
  margin-bottom: var(--spacing-xxxl);
}

.c-certificate-showcase__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--color-chocolate-brown);
  margin-bottom: var(--spacing-md);
}

.c-certificate-showcase__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-light-text);
  margin-bottom: 0;
}

.c-certificate-showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  perspective: 1000px;
}

.c-certificate-card {
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(248, 248, 248, 0.9) 100%);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  box-shadow: 
    0 10px 40px rgba(107, 75, 60, 0.15),
    0 4px 16px rgba(217, 162, 115, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(232, 220, 207, 0.4);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.c-certificate-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.c-certificate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(217, 162, 115, 0.1) 50%, 
    transparent 100%);
  transition: left 0.6s ease;
}

.c-certificate-card:hover::before {
  left: 100%;
}

.c-certificate-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(107, 75, 60, 0.2),
    0 8px 24px rgba(217, 162, 115, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(217, 162, 115, 0.5);
}

.c-certificate-card__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-caramel) 0%, var(--color-chocolate-brown) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  box-shadow: 
    0 8px 24px rgba(217, 162, 115, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.c-certificate-card__icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0.1) 0deg,
    rgba(255, 255, 255, 0.3) 90deg,
    rgba(255, 255, 255, 0.1) 180deg,
    rgba(255, 255, 255, 0.3) 270deg,
    rgba(255, 255, 255, 0.1) 360deg
  );
  animation: rotateShine 4s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.c-certificate-card:hover .c-certificate-card__icon::before {
  opacity: 1;
}

.c-certificate-card__emoji {
  font-size: 2.5rem;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.c-certificate-card:hover .c-certificate-card__emoji {
  transform: scale(1.1) rotate(5deg);
}

.c-certificate-card__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--color-chocolate-brown);
  margin-bottom: var(--spacing-sm);
}

.c-certificate-card__description {
  color: var(--color-light-text);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-md);
}

.c-certificate-card__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-sage-green) 0%, var(--color-hazelnut-beige) 100%);
  color: var(--color-chocolate-brown);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(191, 216, 197, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 767px) {
  .c-certificate-showcase__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .c-certificate-showcase__title {
    font-size: var(--font-size-3xl);
  }
  
  .c-certificate-card {
    padding: var(--spacing-lg);
  }
  
  .c-certificate-card__icon {
    width: 60px;
    height: 60px;
  }
  
  .c-certificate-card__emoji {
    font-size: 2rem;
  }
}

/* Hero Showcase - Modern Alternative */
.c-hero-showcase {
  position: relative;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
  padding: 0;
  overflow: hidden;
}

/* Main Content Area */
.c-hero-showcase__main {
  padding: var(--spacing-lg) var(--spacing-xl) var(--spacing-xl) var(--spacing-xl);
  z-index: 2;
}

.c-hero-showcase__logo {
  margin-bottom: var(--spacing-lg);
  display: flex;
  justify-content: flex-start;
  /* keep minimal layout; no 3D perspective */
}

.c-hero-showcase__logo-image {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.c-hero-showcase__logo-image:hover {
  transform: scale(1.01);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.c-hero-showcase__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-lg);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-chocolate-brown);
  margin-bottom: var(--spacing-lg);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-light);
}

.c-hero-showcase__badge-icon {
  font-size: var(--font-size-lg);
}

.c-hero-showcase__title {
  font-family: var(--font-family-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-chocolate-brown);
  margin-bottom: var(--spacing-lg);
}

.c-hero-showcase__title-line {
  display: block;
}

.c-hero-showcase__title-line:first-child {
  color: var(--color-caramel);
}

.c-hero-showcase__subtitle {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: black;
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
}

.c-hero-showcase__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.c-hero-showcase__stat {
  text-align: center;
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease;
}

.c-hero-showcase__stat:hover {
  transform: translateY(-4px);
}

.c-hero-showcase__stat-number {
  display: block;
  font-size: var(--font-size-xxl);
  font-weight: 700;
  color: var(--color-caramel);
  margin-bottom: var(--spacing-xs);
}

.c-hero-showcase__stat-label {
  font-size: var(--font-size-sm);
  color: var(--color-light-text);
  font-weight: 500;
}

.c-hero-showcase__actions {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.c-hero-showcase__actions .c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.c-hero-showcase__actions .c-button span,
.c-hero-showcase__actions .c-button svg {
  position: relative;
  z-index: 3;
}

.c-hero-showcase__actions .c-button svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.c-hero-showcase__actions .c-button:hover {
  color: var(--color-white);
  z-index: 10;
}

.c-hero-showcase__actions .c-button:hover svg {
  transform: translateX(2px);
  color: var(--color-white);
}

.c-hero-showcase__actions .c-button:hover span {
  color: var(--color-white);
}

/* Export Map - Full width layout override */
.c-hero-showcase.c-hero--map {
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.c-hero-showcase.c-hero--map .c-hero-showcase__main {
  grid-column: 1 / -1;
}

#export-map.jvm-container {
  width: 100%;
}

#export-map.jvm-container svg {
  width: 100% !important;
  height: 100% !important;
}

/* Image Gallery */
.c-hero-showcase__gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--spacing-lg);
  height: 500px;
  padding: var(--spacing-lg);
}

.c-hero-showcase__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
}

.c-hero-showcase__image:hover {
  transform: scale(1.05);
  z-index: 3;
}

.c-hero-showcase__image--main {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.c-hero-showcase__image--secondary {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.c-hero-showcase__image--tertiary {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.c-hero-showcase__image--quaternary {
  position: absolute;
  top: var(--spacing-lg);
  right: var(--spacing-lg);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  z-index: 2;
}

.c-hero-showcase__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: var(--spacing-lg);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.c-hero-showcase__image:hover .c-hero-showcase__image-overlay {
  transform: translateY(0);
}

.c-hero-showcase__image-label {
  color: white;
  font-weight: 600;
  font-size: var(--font-size-sm);
}

/* Global Floating Elements */
.c-floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}

.c-floating-hazelnut {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0.15;
  animation: globalFloatHazelnut 20s ease-in-out infinite;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.05));
  user-select: none;
  color: #D9A273;
  z-index: 2;
}

/* Different sizes for variety */
.c-floating-hazelnut--1,
.c-floating-hazelnut--5,
.c-floating-hazelnut--9,
.c-floating-hazelnut--13,
.c-floating-hazelnut--17 {
  font-size: 1.8rem;
}

.c-floating-hazelnut--3,
.c-floating-hazelnut--7,
.c-floating-hazelnut--11,
.c-floating-hazelnut--15 {
  font-size: 1rem;
}

.c-floating-hazelnut--2,
.c-floating-hazelnut--6,
.c-floating-hazelnut--10,
.c-floating-hazelnut--14,
.c-floating-hazelnut--18 {
  font-size: 1.5rem;
}

.c-floating-hazelnut--4,
.c-floating-hazelnut--8,
.c-floating-hazelnut--12,
.c-floating-hazelnut--16 {
  font-size: 1.3rem;
}

/* Global positioning - distributed across entire page */
.c-floating-hazelnut--1 { top: 15%; left: 10%; animation-delay: 0s; }
.c-floating-hazelnut--2 { top: 35%; right: 15%; animation-delay: 3s; animation: globalFloatHazelnutReverse 25s ease-in-out infinite; }
.c-floating-hazelnut--3 { top: 55%; left: 20%; animation-delay: 6s; }
.c-floating-hazelnut--4 { top: 75%; right: 10%; animation-delay: 9s; animation: globalFloatHazelnutReverse 25s ease-in-out infinite; }
.c-floating-hazelnut--5 { top: 25%; left: 70%; animation-delay: 12s; }
.c-floating-hazelnut--6 { top: 65%; right: 60%; animation-delay: 15s; animation: globalFloatHazelnutReverse 25s ease-in-out infinite; }
.c-floating-hazelnut--7 { top: 85%; left: 10%; animation-delay: 12s; }
.c-floating-hazelnut--8 { top: 15%; left: 20%; animation-delay: 14s; animation: globalFloatHazelnutReverse 25s ease-in-out infinite; }
.c-floating-hazelnut--9 { top: 30%; right: 15%; animation-delay: 16s; }
.c-floating-hazelnut--10 { top: 50%; left: 25%; animation-delay: 18s; animation: globalFloatHazelnutReverse 25s ease-in-out infinite; }
.c-floating-hazelnut--11 { top: 70%; right: 20%; animation-delay: 20s; }
.c-floating-hazelnut--12 { top: 90%; left: 15%; animation-delay: 22s; animation: globalFloatHazelnutReverse 25s ease-in-out infinite; }
.c-floating-hazelnut--13 { top: 25%; left: 40%; animation-delay: 24s; }
.c-floating-hazelnut--14 { top: 55%; right: 35%; animation-delay: 26s; animation: globalFloatHazelnutReverse 25s ease-in-out infinite; }
.c-floating-hazelnut--15 { top: 80%; left: 45%; animation-delay: 28s; }
.c-floating-hazelnut--16 { top: 40%; right: 45%; animation-delay: 30s; animation: globalFloatHazelnutReverse 25s ease-in-out infinite; }
.c-floating-hazelnut--17 { top: 65%; left: 60%; animation-delay: 32s; }
.c-floating-hazelnut--18 { top: 95%; right: 50%; animation-delay: 34s; animation: globalFloatHazelnutReverse 25s ease-in-out infinite; }

@keyframes globalFloatHazelnut {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-15px) translateX(5px);
  }
  50% {
    transform: translateY(-10px) translateX(-3px);
  }
  75% {
    transform: translateY(-20px) translateX(2px);
  }
}

@keyframes globalFloatHazelnutReverse {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(12px) translateX(-4px);
  }
  50% {
    transform: translateY(8px) translateX(6px);
  }
  75% {
    transform: translateY(18px) translateX(-2px);
  }
}

/* Floating Hazelnuts - Hero Showcase (kept for backward compatibility) */
.c-hero-showcase__floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.c-hero-showcase__floating-hazelnut {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.4;
  animation: floatHazelnut 12s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Different sizes for variety */
.c-hero-showcase__floating-hazelnut--1,
.c-hero-showcase__floating-hazelnut--6,
.c-hero-showcase__floating-hazelnut--11 {
  font-size: 2rem;
}

.c-hero-showcase__floating-hazelnut--3,
.c-hero-showcase__floating-hazelnut--8,
.c-hero-showcase__floating-hazelnut--12 {
  font-size: 1.2rem;
}

.c-hero-showcase__floating-hazelnut--2,
.c-hero-showcase__floating-hazelnut--7,
.c-hero-showcase__floating-hazelnut--10 {
  font-size: 1.8rem;
}

.c-hero-showcase__floating-hazelnut--1 {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.c-hero-showcase__floating-hazelnut--2 {
  top: 25%;
  right: 12%;
  animation-delay: 1s;
}

.c-hero-showcase__floating-hazelnut--3 {
  bottom: 35%;
  left: 15%;
  animation-delay: 2s;
}

.c-hero-showcase__floating-hazelnut--4 {
  top: 45%;
  left: 5%;
  animation-delay: 3s;
}

.c-hero-showcase__floating-hazelnut--5 {
  top: 65%;
  right: 8%;
  animation-delay: 4s;
}

.c-hero-showcase__floating-hazelnut--6 {
  bottom: 20%;
  right: 25%;
  animation-delay: 5s;
}

.c-hero-showcase__floating-hazelnut--7 {
  top: 35%;
  left: 25%;
  animation-delay: 6s;
}

.c-hero-showcase__floating-hazelnut--8 {
  bottom: 45%;
  left: 8%;
  animation-delay: 7s;
}

.c-hero-showcase__floating-hazelnut--9 {
  top: 55%;
  right: 20%;
  animation-delay: 8s;
}

.c-hero-showcase__floating-hazelnut--10 {
  bottom: 15%;
  left: 30%;
  animation-delay: 9s;
}

.c-hero-showcase__floating-hazelnut--11 {
  top: 75%;
  left: 18%;
  animation-delay: 10s;
}

.c-hero-showcase__floating-hazelnut--12 {
  top: 10%;
  right: 30%;
  animation-delay: 11s;
}

@keyframes floatHazelnut {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.4;
  }
  25% {
    transform: translateY(-15px) rotate(90deg) scale(1.1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-25px) rotate(180deg) scale(0.9);
    opacity: 0.3;
  }
  75% {
    transform: translateY(-15px) rotate(270deg) scale(1.1);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0) rotate(360deg) scale(1);
    opacity: 0.4;
  }
}

/* Alternative animation for some hazelnuts */
.c-hero-showcase__floating-hazelnut--2,
.c-hero-showcase__floating-hazelnut--5,
.c-hero-showcase__floating-hazelnut--8,
.c-hero-showcase__floating-hazelnut--11 {
  animation: floatHazelnutReverse 15s ease-in-out infinite;
}

@keyframes floatHazelnutReverse {
  0% {
    transform: translateY(0) rotate(360deg) scale(0.8);
    opacity: 0.3;
  }
  33% {
    transform: translateY(-30px) rotate(240deg) scale(1.2);
    opacity: 0.7;
  }
  66% {
    transform: translateY(-10px) rotate(120deg) scale(0.9);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0) rotate(0deg) scale(0.8);
    opacity: 0.3;
  }
}

.c-hero-slider__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.c-hero-slider__slide--active {
  opacity: 1;
}

.c-hero-slider__background {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: background-image 0.5s ease-in-out;
}

/* Preload background images for smoother transitions */
.c-hero-slider__slide:nth-child(1) .c-hero-slider__background {
  background-image: url('assets/img/slider/1746973820.jpg');
}

.c-hero-slider__slide:nth-child(2) .c-hero-slider__background {
  background-image: url('assets/img/slider/1747484999.png');
}

.c-hero-slider__slide:nth-child(3) .c-hero-slider__background {
  background-image: url('assets/img/slider/1747485078.png');
}

.c-hero-slider__slide:nth-child(4) .c-hero-slider__background {
  background-image: url('assets/img/slider/1747486902.webp');
}

/* Removed pseudo-element overlays to show clean images */

.c-hero-slider__background .l-hero__content {
  position: relative;
  z-index: 2;
}

/* Removed all slide-specific pattern overlays */

.c-hero-slider__controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--spacing-xl);
  pointer-events: none;
  z-index: 10;
}

.c-hero-slider__prev,
.c-hero-slider__next {
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  pointer-events: auto;
  box-shadow: var(--shadow-medium);
}

.c-hero-slider__prev:hover,
.c-hero-slider__next:hover {
  background-color: var(--color-white);
  transform: scale(1.1);
}

.c-hero-slider__dots {
  position: absolute;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--spacing-sm);
}

.c-hero-slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.c-hero-slider__dot--active {
  background-color: var(--color-white);
  transform: scale(1.2);
}

/* Mobile Slider Optimizations */
@media (max-width: 767px) {
  .c-hero-slider {
    height: 500px;
  }
  
  .c-hero-slider__controls {
    padding: 0 var(--spacing-lg);
  }
  
  .c-hero-slider__prev,
  .c-hero-slider__next {
    width: 40px;
    height: 40px;
  }
  
  .c-hero-slider__prev svg,
  .c-hero-slider__next svg {
    width: 20px;
    height: 20px;
  }
  
  .c-hero-slider__dots {
    bottom: var(--spacing-lg);
  }
  
  /* Disable parallax on mobile for better performance */
  .c-hero-slider__background {
    background-attachment: scroll;
  }
}

/* Mobile Hero Showcase */
@media (max-width: 767px) {
  .c-hero-showcase {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    min-height: auto;
    padding: 0;
  }
  
  .c-hero-showcase__main {
    padding: var(--spacing-md) var(--spacing-lg) var(--spacing-lg) var(--spacing-lg);
    order: 2;
  }
  
  .c-hero-showcase__gallery {
    order: 1;
    height: 300px;
    padding: var(--spacing-md);
  }
  
  .c-hero-showcase__title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  
  .c-hero-showcase__stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .c-hero-showcase__actions {
    flex-direction: column;
    align-items: stretch;
    gap: var(--spacing-md);
  }
  
  .c-hero-showcase__actions .c-button {
    justify-content: center;
    width: 100%;
  }
  
  .c-hero-showcase__image--quaternary {
    width: 80px;
    height: 80px;
    top: var(--spacing-md);
    right: var(--spacing-md);
  }
  
  .c-hero-showcase__floating-hazelnut {
    font-size: 1.2rem;
  }
  
  /* Hide some floating elements on mobile for better performance */
  .c-hero-showcase__floating-hazelnut--7,
  .c-hero-showcase__floating-hazelnut--8,
  .c-hero-showcase__floating-hazelnut--9,
  .c-hero-showcase__floating-hazelnut--10,
  .c-hero-showcase__floating-hazelnut--11,
  .c-hero-showcase__floating-hazelnut--12 {
    display: none;
  }
  
  /* Global floating elements - mobile optimization */
  .c-floating-hazelnut {
    font-size: 1rem;
    opacity: 0.1;
  }
  
  /* Hide some global floating elements on mobile */
  .c-floating-hazelnut--7,
  .c-floating-hazelnut--8,
  .c-floating-hazelnut--9,
  .c-floating-hazelnut--10,
  .c-floating-hazelnut--11,
  .c-floating-hazelnut--12,
  .c-floating-hazelnut--13,
  .c-floating-hazelnut--14,
  .c-floating-hazelnut--15,
  .c-floating-hazelnut--16,
  .c-floating-hazelnut--17,
  .c-floating-hazelnut--18 {
    display: none;
  }
  
  .c-hero-showcase__logo-image {
    height: 60px;
  }
}

/* Touch device hover fix */
@media (hover: none) and (pointer: coarse) {
  .c-product-card:hover,
  .c-product-card:hover .c-product-card__image,
  .c-product-card:hover .c-product-card__title,
  .c-product-card:hover .c-button,
  .c-product-card__spec:hover,
  .c-hero-showcase__stat:hover,
  .c-hero-showcase__image:hover,
  .c-hero-showcase__logo-image:hover,
  .c-value-card:hover,
  .c-button--primary:hover,
  .c-button--secondary:hover,
  .c-button--outline:hover {
    transform: none;
    box-shadow: var(--shadow-light);
    color: var(--color-white);
    background-color: var(--color-chocolate-brown);
  }
  
  .c-product-card:hover::before {
    opacity: 0;
  }
  
  .c-hero-showcase__image:hover .c-hero-showcase__image-overlay {
    transform: translateY(100%);
  }
}

/* Mobile Product Card Optimizations */
@media (max-width: 767px) {
  /* Simplified 3D effects on mobile for better performance */
  .c-product-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 24px rgba(107, 75, 60, 0.15);
  }
  
  
  .c-product-card:hover .c-product-card__image {
    transform: none;
  }
  
  .c-product-card:hover .c-product-card__title {
    transform: none;
    color: var(--color-chocolate-brown);
  }
  
  .c-product-card:hover .c-button {
    transform: none;
    box-shadow: none;
  }
  
  .c-product-card__spec:hover {
    transform: none;
    background-color: transparent;
    padding: var(--spacing-xs) 0;
  }
  
  .c-hero-showcase__stat:hover {
    transform: none;
  }
  
  .c-hero-showcase__image:hover {
    transform: none;
    z-index: 2;
  }
  
  .c-hero-showcase__logo-image:hover {
    transform: none;
  }
  
  /* Reduce animation intensity on mobile for better performance */
  .c-product-card[data-animate] {
    transform: translateY(30px) scale(0.98);
  }
  
  @keyframes cardBounce {
    0% {
      opacity: 0;
      transform: translateY(30px) scale(0.98);
    }
    60% {
      opacity: 1;
      transform: translateY(-5px) scale(1.01);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
}

/* Process Showcase - New Modern Design */
.c-process-showcase {
  max-width: 1000px;
  margin: 0 auto;
}

.c-process-showcase__header {
  text-align: center;
  margin-bottom: var(--spacing-xxxl);
}

.c-process-showcase__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--color-chocolate-brown);
  margin-bottom: var(--spacing-md);
}

.c-process-showcase__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-light-text);
  margin-bottom: 0;
}

.c-process-showcase__timeline {
  position: relative;
  padding: var(--spacing-xl) 0;
}

.c-process-showcase__timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, 
    var(--color-sage-green) 0%, 
    #8FBC8F 20%, 
    var(--color-caramel) 60%, 
    var(--color-chocolate-brown) 100%);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(217, 162, 115, 0.3);
}

.c-process-showcase__step {
  position: relative;
  margin-bottom: var(--spacing-xxl);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.c-process-showcase__step.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.c-process-showcase__step:nth-child(odd) {
  display: flex;
  justify-content: flex-start;
}

.c-process-showcase__step:nth-child(even) {
  display: flex;
  justify-content: flex-end;
}

.c-process-showcase__step-number {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-black);
  z-index: 20;
  box-shadow: none;
  overflow: visible;
}

.c-process-showcase__step-number--1::before {
  content: '🌰';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: 0.3;
  z-index: 1;
  animation: rotateHazelnut 8s linear infinite;
}

.c-process-showcase__step-number--2::before {
  content: '🌰';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: 0.3;
  z-index: 1;
  animation: rotateHazelnut 10s linear infinite reverse;
}

.c-process-showcase__step-number--3::before {
  content: '🌰';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: 0.3;
  z-index: 1;
  animation: rotateHazelnut 12s linear infinite;
}

.c-process-showcase__step-number--4::before {
  content: '🌰';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: 0.3;
  z-index: 1;
  animation: rotateHazelnut 9s linear infinite reverse;
}

.c-process-showcase__step-number--5::before {
  content: '🌰';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: 0.3;
  z-index: 1;
  animation: rotateHazelnut 11s linear infinite;
}

@keyframes rotateHazelnut {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(-50%, -50%) rotate(90deg) scale(1.1);
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg) scale(1);
  }
  75% {
    transform: translate(-50%, -50%) rotate(270deg) scale(1.1);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) scale(1);
  }
}





.c-process-showcase__step-content {
  width: calc(50% - 60px);
  padding: var(--spacing-xl);
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(248, 248, 248, 0.9) 100%);
  border-radius: var(--radius-lg);
  box-shadow: 
    0 10px 40px rgba(107, 75, 60, 0.15),
    0 4px 16px rgba(217, 162, 115, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(232, 220, 207, 0.4);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.c-process-showcase__step-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(217, 162, 115, 0.1) 50%, 
    transparent 100%);
  transition: left 0.6s ease;
}

.c-process-showcase__step-content:hover::before {
  left: 100%;
}

.c-process-showcase__step:hover .c-process-showcase__step-content {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(107, 75, 60, 0.2),
    0 8px 24px rgba(217, 162, 115, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(217, 162, 115, 0.5);
}

.c-process-showcase__step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, 
    var(--color-sage-green) 0%, 
    #A8D5BA 30%, 
    var(--color-hazelnut-beige) 70%, 
    #E8DCCF 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  box-shadow: 
    0 6px 16px rgba(191, 216, 197, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.c-process-showcase__step-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0.1) 0deg,
    rgba(255, 255, 255, 0.3) 90deg,
    rgba(255, 255, 255, 0.1) 180deg,
    rgba(255, 255, 255, 0.3) 270deg,
    rgba(255, 255, 255, 0.1) 360deg
  );
  animation: rotateShine 4s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.c-process-showcase__step-icon:hover::before {
  opacity: 1;
}

@keyframes rotateShine {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.c-process-showcase__step-emoji {
  font-size: 2rem;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.c-process-showcase__step-icon:hover .c-process-showcase__step-emoji {
  transform: scale(1.1) rotate(5deg);
}

.c-process-showcase__step-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--color-chocolate-brown);
  margin-bottom: var(--spacing-sm);
}

.c-process-showcase__step-description {
  color: var(--color-light-text);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .c-process-showcase__timeline::before {
    left: 30px;
  }
  
  .c-process-showcase__step {
    justify-content: flex-start !important;
  }
  
  .c-process-showcase__step-number {
    left: 30px;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    font-size: var(--font-size-md);
  }
  
  .c-process-showcase__step-content {
    width: calc(100% - 90px);
    margin-left: 90px;
    padding: var(--spacing-lg);
  }
  
  .c-process-showcase__title {
    font-size: var(--font-size-3xl);
  }
}



/* Scroll Animations */
[data-animate] {
  opacity: 0;
  transition: all 0.8s ease-out;
}

[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate="slide-up"] {
  transform: translateY(50px);
}

[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Product Card Special Animations */
.c-product-card[data-animate] {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.c-product-card[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.c-product-card[data-animate].animate-in:nth-child(1) {
  animation: cardBounce 0.8s ease-out 0.1s both;
}

.c-product-card[data-animate].animate-in:nth-child(2) {
  animation: cardBounce 0.8s ease-out 0.2s both;
}

.c-product-card[data-animate].animate-in:nth-child(3) {
  animation: cardBounce 0.8s ease-out 0.3s both;
}

.c-product-card[data-animate].animate-in:nth-child(4) {
  animation: cardBounce 0.8s ease-out 0.4s both;
}

@keyframes cardBounce {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Staggered animation for product cards */
.c-product-card[data-animate] {
  animation-delay: calc(var(--delay, 0) * 100ms);
}

/* Product Hero Components */
.p-product-hero {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.p-product-hero .l-hero__background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(107, 75, 60, 0.8) 0%, rgba(217, 162, 115, 0.6) 100%);
  z-index: 1;
}

.p-product-hero .l-hero__content {
  color: var(--color-white);
}

.c-product-hero {
  max-width: 800px;
  margin: 0 auto;
}

.c-product-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: linear-gradient(135deg, var(--color-caramel) 0%, var(--color-chocolate-brown) 100%);
  color: var(--color-white);
  padding: var(--spacing-xs) var(--spacing-lg);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  box-shadow: 0 4px 12px rgba(217, 162, 115, 0.3);
}

.c-product-hero__badge-icon {
  font-size: var(--font-size-md);
}

.c-product-hero__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.c-product-hero__subtitle {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-xl);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.c-product-hero__features {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.c-product-hero__feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-fast);
}

.c-product-hero__feature:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.c-product-hero__feature-icon {
  font-size: var(--font-size-lg);
}

.c-product-hero__feature-text {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-white);
}

.c-product-hero__actions {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* Mobile Responsive for Product Hero */
@media (max-width: 1023px) {
  .p-product-hero {
    min-height: 50vh;
  }
  
  .c-product-hero__title {
    font-size: var(--font-size-4xl);
  }
  
  .c-product-hero__subtitle {
    font-size: var(--font-size-lg);
  }
  
  .c-product-hero__features {
    gap: var(--spacing-md);
  }
  
  .c-product-hero__actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .p-product-hero {
    min-height: 40vh;
    padding: var(--spacing-xl) 0;
  }
  
  .c-product-hero__title {
    font-size: var(--font-size-3xl);
  }
  
  .c-product-hero__subtitle {
    font-size: var(--font-size-md);
  }
  
  .c-product-hero__features {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
  }
  
  .c-product-hero__feature {
    padding: var(--spacing-xs) var(--spacing-sm);
  }
}

/* Product Detail Components */
.c-breadcrumb {
  margin-bottom: var(--spacing-lg);
}

.c-breadcrumb__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--spacing-xs);
}

.c-breadcrumb__item {
  display: flex;
  align-items: center;
}

.c-breadcrumb__item:not(:last-child)::after {
  content: '›';
  margin-left: var(--spacing-xs);
  color: var(--color-light-text);
}

.c-breadcrumb__link {
  color: var(--color-light-text);
  text-decoration: none;
  font-size: var(--font-size-sm);
  transition: color var(--transition-fast);
}

.c-breadcrumb__link:hover {
  color: var(--color-caramel);
}

.c-breadcrumb__item--current {
  color: var(--color-chocolate-brown);
  font-weight: 500;
  font-size: var(--font-size-sm);
}

/* Product Detail Layout */
.c-product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxxl);
  align-items: start;
}

/* Product Gallery */
.c-product-gallery {
  position: sticky;
  top: var(--spacing-xl);
}

.c-product-gallery__main {
  position: relative;
  margin-bottom: var(--spacing-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
}

.c-product-gallery__main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.c-product-gallery__badge {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: linear-gradient(135deg, var(--color-sage-green) 0%, var(--color-hazelnut-beige) 100%);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.c-product-gallery__badge-text {
  color: var(--color-chocolate-brown);
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.c-product-gallery__thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-sm);
}

.c-product-gallery__thumbnail {
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: none;
  padding: 0;
}

.c-product-gallery__thumbnail:hover {
  border-color: var(--color-caramel);
  transform: translateY(-2px);
}

.c-product-gallery__thumbnail--active {
  border-color: var(--color-chocolate-brown);
  box-shadow: 0 4px 12px rgba(107, 75, 60, 0.3);
}

.c-product-gallery__thumbnail img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
}

/* Product Info */
.c-product-info {
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(248, 248, 248, 0.9) 100%);
  padding: var(--spacing-xxxl);
  border-radius: var(--radius-lg);
  box-shadow: 
    0 10px 40px rgba(107, 75, 60, 0.15),
    0 4px 16px rgba(217, 162, 115, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(232, 220, 207, 0.4);
  backdrop-filter: blur(10px);
}

.c-product-info__header {
  margin-bottom: var(--spacing-xl);
}

.c-product-info__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: linear-gradient(135deg, var(--color-caramel) 0%, var(--color-chocolate-brown) 100%);
  color: var(--color-white);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  box-shadow: 0 4px 12px rgba(217, 162, 115, 0.3);
}

.c-product-info__badge-icon {
  font-size: var(--font-size-md);
}

.c-product-info__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--color-chocolate-brown);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.c-product-info__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-light-text);
  line-height: var(--line-height-relaxed);
}

.c-product-info__description {
  margin-bottom: var(--spacing-xl);
}

.c-product-info__description p {
  color: var(--color-light-text);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
}

.c-product-info__specs-title,
.c-product-info__certificates-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--color-chocolate-brown);
  margin-bottom: var(--spacing-lg);
}

.c-product-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.c-product-specs__item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.8) 0%, 
    rgba(248, 248, 248, 0.6) 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(232, 220, 207, 0.3);
  transition: all var(--transition-fast);
}

.c-product-specs__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 75, 60, 0.1);
}

.c-product-specs__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-sage-green) 0%, var(--color-hazelnut-beige) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(191, 216, 197, 0.3);
}

.c-product-specs__emoji {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.c-product-specs__content {
  flex: 1;
}

.c-product-specs__name {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-chocolate-brown);
  margin-bottom: var(--spacing-xs);
}

.c-product-specs__value {
  font-size: var(--font-size-md);
  font-weight: 500;
  color: var(--color-light-text);
  margin: 0;
}

.c-product-certificates {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.c-product-certificate {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: linear-gradient(135deg, var(--color-sage-green) 0%, var(--color-hazelnut-beige) 100%);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(191, 216, 197, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.c-product-certificate__icon {
  font-size: var(--font-size-sm);
}

.c-product-certificate__name {
  color: var(--color-chocolate-brown);
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.c-product-info__actions {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

/* Product Tabs */
.c-product-tabs {
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(248, 248, 248, 0.9) 100%);
  border-radius: var(--radius-lg);
  box-shadow: 
    0 10px 40px rgba(107, 75, 60, 0.15),
    0 4px 16px rgba(217, 162, 115, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(232, 220, 207, 0.4);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.c-product-tabs__nav {
  display: flex;
  border-bottom: 1px solid rgba(232, 220, 207, 0.3);
}

.c-product-tabs__nav-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-lg);
  background: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-light-text);
  position: relative;
}

.c-product-tabs__nav-item:hover {
  background: rgba(217, 162, 115, 0.1);
  color: var(--color-caramel);
}

.c-product-tabs__nav-item--active {
  color: var(--color-chocolate-brown);
  background: rgba(217, 162, 115, 0.15);
}

.c-product-tabs__nav-item--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--color-caramel) 0%, var(--color-chocolate-brown) 100%);
}

.c-product-tabs__nav-icon {
  font-size: var(--font-size-lg);
}

.c-product-tabs__nav-text {
  font-size: var(--font-size-sm);
}

.c-product-tabs__content {
  padding: var(--spacing-xxxl);
}

.c-product-tabs__panel {
  display: none;
}

.c-product-tabs__panel--active {
  display: block;
}

.c-product-tabs__panel-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--color-chocolate-brown);
  margin-bottom: var(--spacing-xl);
}

.c-product-tabs__specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.c-product-tabs__spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md);
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.8) 0%, 
    rgba(248, 248, 248, 0.6) 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(232, 220, 207, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.c-product-tabs__spec-label {
  font-weight: 500;
  color: var(--color-chocolate-brown);
}

.c-product-tabs__spec-value {
  font-weight: 600;
  color: var(--color-light-text);
}

.c-product-tabs__nutrition-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.c-product-tabs__nutrition-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md);
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.8) 0%, 
    rgba(248, 248, 248, 0.6) 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(232, 220, 207, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.c-product-tabs__nutrition-label {
  font-weight: 500;
  color: var(--color-chocolate-brown);
}

.c-product-tabs__nutrition-value {
  font-weight: 600;
  color: var(--color-light-text);
}

.c-product-tabs__usage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.c-product-tabs__usage-item {
  padding: var(--spacing-lg);
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.8) 0%, 
    rgba(248, 248, 248, 0.6) 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(232, 220, 207, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.c-product-tabs__usage-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(107, 75, 60, 0.1);
}

.c-product-tabs__usage-icon {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
}

.c-product-tabs__usage-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-chocolate-brown);
  margin-bottom: var(--spacing-sm);
}

.c-product-tabs__usage-desc {
  color: var(--color-light-text);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.c-product-tabs__quality-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.c-product-tabs__quality-item {
  padding: var(--spacing-lg);
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.8) 0%, 
    rgba(248, 248, 248, 0.6) 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(232, 220, 207, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.c-product-tabs__quality-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 75, 60, 0.1);
}

.c-product-tabs__quality-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-chocolate-brown);
  margin-bottom: var(--spacing-sm);
}

.c-product-tabs__quality-desc {
  color: var(--color-light-text);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 1023px) {
  .c-product-detail {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .c-product-gallery {
    position: static;
  }
  
  .c-product-gallery__main-image {
    height: 400px;
  }
  
  .c-product-info {
    padding: var(--spacing-xl);
  }
  
  .c-product-specs {
    grid-template-columns: 1fr;
  }
  
  .c-product-tabs__nav {
    flex-wrap: wrap;
  }
  
  .c-product-tabs__nav-item {
    flex: 1 1 50%;
    min-width: 0;
  }
  
  .c-product-tabs__content {
    padding: var(--spacing-xl);
  }
  
  .c-product-tabs__specs-grid,
  .c-product-tabs__nutrition-grid,
  .c-product-tabs__usage-grid,
  .c-product-tabs__quality-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .c-product-info__actions {
    flex-direction: column;
  }
  
  .c-product-tabs__nav-item {
    flex: 1 1 100%;
    padding: var(--spacing-md);
    flex-direction: column;
    gap: var(--spacing-xs);
  }
  
  .c-product-tabs__nav-text {
    display: block;
    font-size: var(--font-size-xs);
  }
  
  .c-product-gallery__thumbnails {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .c-product-gallery__thumbnail img {
    height: 60px;
  }
}

/* ========================================
   HERO BUTTON ANIMATIONS
   ======================================== */
.hero-btn {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hero-btn--primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(217, 162, 115, 0.5);
  background: linear-gradient(135deg, #E5B37A 0%, #7A5B4A 100%);
}

.hero-btn--outline:hover {
  transform: translateY(-4px) scale(1.05);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.hero-btn:hover svg {
  transform: translateX(4px);
}

.hero-btn svg {
  transition: transform 0.3s ease;
}

/* ========================================
   PRODUCT HERO ANIMATIONS
   ======================================== */
.c-product-hero__feature:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

.c-product-hero__badge:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(217, 162, 115, 0.4);
}

/* ========================================
   PRODUCT TABS HOVER EFFECTS
   ======================================== */
.c-product-tabs__spec:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 25px rgba(107, 75, 60, 0.15);
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(248, 248, 248, 0.85) 100%);
  border-color: rgba(217, 162, 115, 0.4);
}

.c-product-tabs__nutrition-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 25px rgba(107, 75, 60, 0.15);
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(248, 248, 248, 0.85) 100%);
  border-color: rgba(217, 162, 115, 0.4);
}

.c-product-tabs__usage-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 30px rgba(107, 75, 60, 0.2);
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(248, 248, 248, 0.85) 100%);
  border-color: rgba(217, 162, 115, 0.5);
}

.c-product-tabs__quality-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 25px rgba(107, 75, 60, 0.15);
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(248, 248, 248, 0.85) 100%);
  border-color: rgba(217, 162, 115, 0.4);
}

/* jsVectorMap tooltip z-index fix */
.jvm-tooltip {
  z-index: 100000 !important;
  pointer-events: none;
}
