:root {
  --ovefit-purple: #8b69ae;
  --ovefit-red: #ef4136;
  --ovefit-red-light: #f9d8d5;
  --ovefit-lime: #ced84c;
  --ovefit-cream: #f7f6f1;
  --black: #000;
  --white: #fff;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 16px 50px rgba(0, 0, 0, 0.08);
  --nav-height: 132px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: #1f1f1f;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

p, .lead, small {
  font-weight: 300;
}

main, footer {
  overflow-x: clip;
}

.section {
  padding: 5rem 0;
}

#product-groups.section {
  padding-bottom: 1.6rem;
}

#benefits.section {
  padding-top: 3.4rem;
}

.hero-section {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  position: relative;
}

.hero-section.compact-hero {
  min-height: 50vh;
}

.inner-page-cover {
  position: relative;
  padding: 0;
}

.inner-page-cover-bg {
  position: relative;
  min-height: clamp(280px, 42vh, 520px);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.inner-page-cover-overlay {
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.62) 100%);
}

.inner-page-cover-title {
  color: #fff;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.98);
  filter: blur(2px);
  animation: inner-cover-title-in 0.9s cubic-bezier(0.2, 0.75, 0.2, 1) 0.12s forwards;
}

.inner-page-cover-lead {
  color: rgba(255, 255, 255, 0.92);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  font-weight: 400;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.inner-page-cover-intro {
  padding: 2.4rem 0 1rem;
}

.inner-page-cover-intro-text {
  max-width: 960px;
  margin: 0 auto;
  font-size: clamp(1.2rem, 2.05vw, 1.9rem);
  font-weight: 600;
  line-height: 1.35;
  color: #222;
}

@keyframes inner-cover-title-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.98);
    filter: blur(2px);
  }
  65% {
    opacity: 1;
    transform: translate3d(0, -2px, 0) scale(1.01);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

.hero-slider-section {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--nav-height));
}

.hero-swiper,
.hero-slide {
  min-height: calc(100vh - var(--nav-height));
}

.hero-slide {
  position: relative;
  overflow: hidden;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.08) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 860px;
  color: #fff;
}

.hero-content .lead {
  color: rgba(255, 255, 255, 0.92);
}

.hero-content .display-2 strong {
  font-weight: 900;
}

.hero-slider-section .btn-ovefit-primary {
  --btn-bg: #fff;
  --btn-text: #111;
  --btn-border: #fff;
  --btn-hover-bg: #f1f1f1;
  --btn-hover-text: #111;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

.hero-swiper-prev,
.hero-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  backdrop-filter: blur(8px);
  z-index: 3;
  cursor: pointer;
}

.hero-swiper-prev {
  left: 1.25rem;
}

.hero-swiper-next {
  right: 1.25rem;
}

.hero-swiper-pagination {
  position: absolute;
  left: 0 !important;
  right: 0 !important;
  width: 100%;
  display: flex;
  justify-content: center;
  transform: none;
  bottom: 1.2rem !important;
  z-index: 3;
}

.hero-swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.45;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.navbar-ovefit {
  background: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid #ececec;
}

.site-header {
  z-index: 1040;
}

.top-contact-bar {
  background: var(--ovefit-purple);
  color: #fff;
  min-height: 30px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.top-contact-left {
  min-width: 0;
}

.top-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 0.75rem;
  line-height: 1;
}

.top-contact-link:hover,
.top-contact-link:focus-visible {
  color: #fff;
}

.top-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.top-social-link:hover,
.top-social-link:focus-visible {
  color: #fff;
  background: rgba(0, 0, 0, 0.16);
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  height: 66px;
  display: block;
}

.navbar-toggler {
  border-color: #d8d8d8;
}

.navbar-ovefit .container {
  position: relative;
}

.nav-shell {
  width: 100%;
}

.nav-main {
  gap: 0.5rem;
}

.nav-link-main {
  color: #1f1f1f;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 0.5rem 1.25rem !important;
  border-radius: 999px;
  text-decoration: none;
}

.nav-link-main:hover,
.nav-link-main:focus-visible {
  color: #1f1f1f;
  background: #f3f3f3;
}

.company-menu .dropdown-toggle::after,
.product-menu .dropdown-toggle::after {
  margin-left: 0.45rem;
}

.company-dropdown {
  margin-top: 0.7rem;
  padding: 0.5rem;
  min-width: 240px;
  border: 1px solid #ececec;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(12, 12, 12, 0.12);
}

.company-item {
  border-radius: 10px;
  font-weight: 600;
  color: #1f1f1f;
  padding: 0.62rem 0.8rem;
}

.company-item:hover,
.company-item:focus-visible {
  background: #f3f3f3;
  color: #111;
}

.language-current {
  border: 0;
  background: transparent;
  color: #111;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0;
}

.language-current:hover,
.language-current:focus,
.language-current:active {
  background: transparent;
  border-color: transparent;
  color: #111;
  box-shadow: none;
}

.lang-modal .modal-content {
  border: 0;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(17, 17, 17, 0.2);
  background: #fff;
}

.lang-modal .modal-title {
  font-weight: 700;
}

.lang-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.lang-option {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #111;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
  transition: all 0.2s ease;
}

.lang-option:hover {
  border-color: #d8d8d8;
  background: #fafafa;
  color: #111;
}

.lang-option.active {
  border-color: #111;
  background: #f6f6f6;
}

.lang-flag {
  font-size: 1.15rem;
}

.lang-name {
  font-weight: 600;
}

.lang-code {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.65;
}

@media (min-width: 992px) {
  .navbar-ovefit .container {
    position: relative;
    display: flex;
    align-items: center;
  }
  .nav-shell {
    display: flex !important;
    align-items: center;
    position: static;
    width: 100%;
    min-height: 66px;
  }
  .navbar-ovefit .navbar-collapse {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    justify-content: flex-end;
    position: static;
  }
  .nav-main {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
    margin: 0;
    width: max-content;
    max-width: calc(100% - 320px);
    z-index: 1;
  }
  .language-switch {
    margin-left: auto;
    position: relative;
    z-index: 2;
  }
}

.btn-ovefit-primary {
  --btn-bg: var(--ovefit-purple);
  --btn-text: var(--white);
  --btn-border: var(--ovefit-purple);
  --btn-hover-bg: var(--btn-text);
  --btn-hover-text: var(--btn-bg);
  background: var(--btn-bg);
  color: var(--btn-text);
  border-radius: 999px;
  border: 2px solid var(--btn-border);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(139, 105, 174, 0.3);
}

.btn-ovefit-primary:hover {
  background: var(--btn-hover-bg);
  color: var(--btn-hover-text);
}

.btn-pill {
  border-radius: 999px;
  border: 1px solid #ddd;
  padding: 0.5rem 1rem;
  font-weight: 600;
  background: var(--white);
  transition: all 0.2s ease;
}

.btn-pill.active,
.btn-pill:hover {
  background: var(--ovefit-lime);
  border-color: var(--ovefit-lime);
  color: #111;
}

.bg-ovefit-purple { background: var(--ovefit-purple); }
.bg-ovefit-red { background: var(--ovefit-red); }
.bg-ovefit-red-light { background: var(--ovefit-red-light); }
.bg-ovefit-lime { background: var(--ovefit-lime); }
.bg-ovefit-cream { background: var(--ovefit-cream); }
.text-ovefit-purple { color: var(--ovefit-purple); }
.text-ovefit-red { color: var(--ovefit-red); }
.text-ovefit-red-light { color: var(--ovefit-red-light); }
.text-ovefit-lime { color: var(--ovefit-lime); }
.text-ovefit-cream { color: var(--ovefit-cream); }


.feature-badge {
  background: #f1eff5;
  color: #2b2b2b;
  border-radius: 999px;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
}

.feature-grid h5 {
  font-size: 1.35rem;
  font-weight: 700;
}

.feature-icon {
  width: 110px;
  height: 110px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.feature-icon-fallback {
  font-size: 2.1rem;
  color: var(--ovefit-purple);
}

.home-feature-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 1.1rem 0.9rem 1rem;
  height: 100%;
  box-shadow: 0 10px 26px rgba(12, 12, 12, 0.05);
}

.home-feature-card h5 {
  font-size: 0.98rem;
  line-height: 1.3;
  font-weight: 700;
}

.hero-section {
  padding-top: 6rem;
}


.img-placeholder {
  border: 2px dashed #d2d2d2;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
}

.img-placeholder .placeholder-inner {
  padding: 1rem;
}

.product-groups-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.pg-card {
  display: flex;
  flex-direction: column;
  min-height: 335px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e9e9e9;
  box-shadow: 0 22px 50px rgba(12, 12, 12, 0.08);
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color 0.3s ease;
  position: relative;
  --shine-x: -140%;
}

.pg-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0) 65%);
  transform: translateX(var(--shine-x));
  pointer-events: none;
}

.pg-card:hover {
  border-color: #dbdbdb;
}

.pg-card-media {
  height: 235px;
  overflow: hidden;
  background: #f2f2f2;
}

.pg-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.pg-card:hover .pg-card-image {
  transform: scale(1.08);
}

.pg-card-body {
  padding: 1.05rem 1rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 86px;
}

.pg-card-title {
  display: block;
  color: #191919;
  font-weight: 700;
  font-size: 1.22rem;
  line-height: 1.3;
}

.about-home-visual,
.process-visual {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.12);
}

.about-home-visual img,
.process-visual img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.about-home-collage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.78fr);
  grid-template-areas:
    "main top"
    "main bottom";
  gap: 1.6rem;
  align-items: stretch;
  margin-top: 1.2rem;
  padding: 0.9rem 0.8rem 0.2rem;
}

.about-home-collage.single-media {
  display: block;
  padding: 0.4rem 0;
  margin-top: 0.6rem;
}

.about-collage-main {
  grid-area: main;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f7f7 0%, #ececec 100%);
  height: 470px;
  transform: translateY(-58px);
}

.about-home-collage.single-media .about-collage-main {
  height: 460px;
  transform: none;
}

.about-collage-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-collage-main video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-collage-float {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f7f7 0%, #ececec 100%);
  height: 215px;
}

.about-collage-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-collage-top {
  grid-area: top;
  padding: 0;
}

.about-collage-bottom {
  grid-area: bottom;
  padding: 0;
}

.retail-card {
  height: 100%;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 14px 34px rgba(8, 8, 8, 0.06);
}

.retail-card-category {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #7a7a7a;
  margin-bottom: 0.35rem;
}

.retail-card-image {
  height: 280px;
  overflow: hidden;
  margin-bottom: 0.9rem;
}

.retail-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.process-steps {
  display: grid;
  gap: 0.75rem;
}

.process-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid #ededed;
  border-radius: 14px;
  background: #fff;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.process-step p {
  margin: 0;
  font-weight: 600;
}

.faq-accordion-home .accordion-item {
  background: transparent;
  border: 0;
  margin-bottom: 0.85rem;
}

.faq-accordion-home .accordion-button {
  background: var(--ovefit-purple);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 1rem 1.35rem;
}

.faq-accordion-home .accordion-button:not(.collapsed) {
  background: var(--ovefit-purple);
  color: #fff;
}

.faq-accordion-home .accordion-button::after {
  filter: brightness(0) invert(1);
}

.faq-accordion-home .accordion-body {
  background: #fff;
  border-radius: 999px;
  padding: 1.25rem 1.55rem;
  border: 1px solid #ececec;
  margin-top: 0.45rem;
  line-height: 1.75;
}

.natural-farming-band {
  position: relative;
  padding: 0;
}

.natural-farming-bg {
  position: relative;
  background-image: url('../images/bg1.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.natural-farming-overlay {
  background:
    radial-gradient(circle at 50% 35%, rgba(206, 216, 76, 0.22) 0%, rgba(206, 216, 76, 0) 42%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.64) 0%, rgba(10, 10, 10, 0.78) 100%);
  padding: 7rem 0;
}

.natural-farming-content {
  max-width: 820px;
  margin: 0 auto;
  color: #fff;
}

.natural-farming-content h2 {
  color: #fff;
}

.natural-farming-content h2 span {
  color: var(--ovefit-lime);
}

.natural-farming-content .lead {
  color: rgba(255, 255, 255, 0.92);
}

.craft-band {
  position: relative;
  padding: 0;
}

.craft-bg {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.craft-overlay {
  background:
    radial-gradient(circle at 25% 30%, rgba(206, 216, 76, 0.2) 0%, rgba(206, 216, 76, 0) 45%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.62) 0%, rgba(10, 10, 10, 0.78) 100%);
  padding: 6.5rem 0;
}

.craft-content {
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
}

.craft-content h2 {
  color: #fff;
}

.craft-content .lead {
  color: rgba(255, 255, 255, 0.92);
}

.icon-circle {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.value-card {
  border: none;
}

.story-card {
  border: none;
}

.card-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-lift:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: var(--shadow-soft);
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.floating-fruit {
  position: absolute;
  width: 95px;
  height: 95px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
  transition: transform 0.2s ease;
  opacity: 0;
  animation: pop-in 0.8s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
  animation-delay: var(--pop-delay, 0s);
}

.fruit-1 { top: 12%; right: 5%; }
.fruit-2 { bottom: -10px; left: -10px; }

@keyframes pop-in {
  0% {
    opacity: 0;
    transform: scale(0.6) translateY(20px);
  }
  60% {
    opacity: 1;
    transform: scale(1.08) translateY(-6px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.shape-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.circle-1 {
  width: 220px;
  height: 220px;
  background: var(--ovefit-lime);
  top: -50px;
  left: -50px;
}

.circle-2 {
  width: 320px;
  height: 320px;
  background: var(--ovefit-purple);
  bottom: -120px;
  right: -80px;
}

.circle-3 {
  width: 260px;
  height: 260px;
  background: var(--ovefit-red);
  top: -80px;
  right: -80px;
}

.circle-4 {
  width: 200px;
  height: 200px;
  background: var(--ovefit-red);
  bottom: 20px;
  left: -60px;
  opacity: 0.1;
}

.product-banner {
  padding: 5rem 0;
}

.product-banner h3 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.product-figure {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: none;
  background: transparent;
}

.product-figure.tall {
  min-height: 360px;
}

.product-figure.card-figure {
  min-height: 260px;
  border-radius: var(--radius-lg);
}

.product-photo {
  width: 64%;
  height: 64%;
  object-fit: contain;
}

.product-card-modern {
  border: 1px solid #ececec;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(8, 8, 8, 0.12) !important;
  border-color: #e3e3e3;
}

.product-card-media {
  min-height: 320px;
  padding: 1.2rem;
  background: linear-gradient(180deg, #fbfbfb 0%, #f4f4f4 100%);
}

.product-card-modern .product-photo {
  width: 84%;
  height: 84%;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.12));
}

.product-card-title {
  font-size: 1.12rem;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 0.94rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.45em * 2);
}

.product-card-fruits {
  min-height: 1.3rem;
}

.category-content-section {
  padding-top: 3.2rem;
  padding-bottom: 2.4rem;
}

.category-content-body {
  font-size: 1.03rem;
  line-height: 1.8;
  color: #212121;
}

.category-content-body h2,
.category-content-body h3,
.category-content-body h4 {
  margin-bottom: 0.9rem;
  font-weight: 700;
}

.category-row-block .category-block-media {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  background: #f3f3f3;
}

.category-row-block .category-block-media img,
.category-row-block .category-block-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.category-row-block.media_media .category-block-media {
  min-height: 320px;
}

.category-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.category-media-item {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #f4f4f4;
  min-height: 210px;
}

.category-media-item.item-1 {
  grid-row: span 2;
  min-height: 430px;
}

.category-media-item img,
.category-media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo {
  width: 100%;
  height: auto;
  animation: pop-in 0.9s ease-out forwards;
  transform-origin: center;
  position: relative;
  z-index: 1;
}

.hero-visual-out + .shape-circle {
  z-index: 0;
}

.product-spec {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 1rem;
}

.product-spec .item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  color: inherit;
  padding: 0.6rem 1rem;
  border-left: 1px solid currentColor;
  max-width: 110px;
  white-space: normal;
  line-height: 1.4;
  font-size: 0.85rem;
}

.product-spec .item .icon-dot {
  margin-bottom: 0.3rem;
}

.product-spec .spec-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
}

.product-spec .spec-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.product-spec .item:first-child {
  border-left: none;
  padding-left: 0;
}

.product-spec.align-end {
  justify-content: flex-end;
}

.product-spec.align-end .item {
  align-items: center;
  text-align: center;
}

.product-spec .icon-dot {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: transparent;
  color: currentColor;
  margin-bottom: 0.4rem;
}

.product-description-block {
  color: inherit;
}

.product-desc-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "a b"
    "a c";
  gap: 0.9rem;
}

.product-desc-collage-item {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}

.product-desc-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-desc-collage .item-1 { grid-area: a; min-height: 360px; }
.product-desc-collage .item-2 { grid-area: b; min-height: 170px; }
.product-desc-collage .item-3 { grid-area: c; min-height: 170px; }
.product-desc-collage .item-4 { min-height: 170px; }

.product-desc-collage.collage-count-1 {
  grid-template-columns: 1fr;
  grid-template-areas: "a";
}

.product-desc-collage.collage-count-1 .item-1 {
  min-height: 360px;
}

.product-desc-collage.collage-count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas: "a b";
}

.product-desc-collage.collage-count-2 .item-1,
.product-desc-collage.collage-count-2 .item-2 {
  min-height: 260px;
}

.product-desc-collage.collage-count-3 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "a b"
    "a c";
}

.product-desc-collage.collage-count-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "a b"
    "a c"
    "d c";
}

.contact-card {
  background: var(--white);
  border: 1px solid #eee;
}

.contact-card-modern {
  border-radius: 20px;
  border: 1px solid #ececec;
  box-shadow: 0 16px 42px rgba(10, 10, 10, 0.08) !important;
}

.contact-form-head h4 {
  font-size: 1.35rem;
  font-weight: 700;
}

.modern-contact-form .form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #4a4a4a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.45rem;
}

.field-wrap {
  position: relative;
}

.field-wrap > i {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: #7a7a7a;
  font-size: 0.95rem;
  pointer-events: none;
  z-index: 2;
}

.field-wrap .modern-input {
  border-radius: 12px;
  min-height: 46px;
  border-color: #e6e6e6;
  padding-left: 2.4rem;
  background: #fcfcfc;
}

.field-wrap .modern-input:focus {
  background: #fff;
}

.field-wrap.field-wrap-textarea > i {
  top: 0.95rem;
  transform: none;
}

.field-wrap.field-wrap-textarea .modern-input {
  min-height: 132px;
  resize: vertical;
}

.modern-submit {
  border-radius: 12px;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.certificate-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 10px 26px rgba(12, 12, 12, 0.05);
}

.certificate-image-wrap {
  width: 100%;
  border: 0;
  height: 180px;
  border-radius: 12px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  overflow: hidden;
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.certificate-image-wrap:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(12, 12, 12, 0.14);
}

.certificate-image-wrap img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}


.footer-link {
  color: #000;
  text-decoration: none;
  opacity: 0.8;
}

.footer-link:hover {
  opacity: 1;
}

.footer-bg {
  position: relative;
  background-image: url('../images/footerbg1.jpg');
  background-size: 120%;
  background-position: center bottom;
  background-repeat: no-repeat;
  color: #000;
  padding-bottom: 5rem !important;
}

.footer-bg::before {
  content: none;
}

.footer-bg > .container {
  position: relative;
  z-index: 1;
}

.footer-bg * {
  color: #000 !important;
}

.footer-bg .border-top {
  border-color: #000 !important;
}

.language-switch .btn.active,
.language-switch-footer.active {
  background: var(--ovefit-purple);
  color: var(--white);
  border-color: var(--ovefit-purple);
}

.form-control:focus {
  border-color: var(--ovefit-purple);
  box-shadow: 0 0 0 0.2rem rgba(139, 105, 174, 0.2);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(139, 105, 174, 0.25);
}

.accordion-button:not(.collapsed) {
  color: #111;
  background-color: var(--ovefit-cream);
}

.faq-accordion .accordion-item {
  background: transparent;
  border: 0;
  margin-bottom: 0.8rem;
}

.faq-accordion .accordion-button {
  background-color: var(--ovefit-lime);
  color: #111;
  border-radius: 9999px;
  padding: 1rem 1.5rem;
  border: 0;
}

.faq-accordion .accordion-item:first-of-type > .accordion-header .accordion-button,
.faq-accordion .accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-radius: 9999px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: var(--ovefit-lime);
  color: #111;
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  filter: brightness(0);
}

.faq-accordion .accordion-body {
  background: transparent;
  padding: 0.75rem 1.5rem 0.25rem;
  color: #333;
}

.faq-accordion .accordion-collapse {
  border: 0;
}

#home-faq .faq-accordion.faq-accordion-home .accordion-button {
  background: var(--ovefit-purple) !important;
  color: #fff !important;
}

#home-faq .faq-accordion.faq-accordion-home .accordion-button:not(.collapsed) {
  background: var(--ovefit-purple) !important;
  color: #fff !important;
}

#home-faq .faq-accordion.faq-accordion-home .accordion-button::after {
  filter: brightness(0) invert(1) !important;
}

#home-faq .faq-accordion.faq-accordion-home .accordion-body {
  background: #fff !important;
  border-radius: 999px !important;
  padding: 1.25rem 1.55rem !important;
  border: 1px solid #ececec !important;
  line-height: 1.75 !important;
}

@media (max-width: 992px) {
  :root {
    --nav-height: 120px;
  }
  .hero-section {
    padding-top: 4rem;
  }
  .hero-slider-section,
  .hero-swiper,
  .hero-slide,
  .hero-content-wrap {
    min-height: calc(82vh - var(--nav-height));
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .hero-swiper-prev,
  .hero-swiper-next {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: 3.3rem;
    transform: none;
  }
  .hero-swiper-prev {
    left: calc(50% - 54px);
  }
  .hero-swiper-next {
    right: calc(50% - 54px);
  }
  .navbar-brand {
    position: static;
    transform: none;
    margin: 0;
  }
  .nav-main {
    align-items: flex-start;
  }
  .company-dropdown {
    margin-top: 0;
    min-width: 100%;
    border: 0;
    box-shadow: none;
    padding: 0.25rem 0 0.25rem 1rem;
    background: transparent;
  }
  .company-item {
    padding: 0.45rem 0;
    border-radius: 0;
    background: transparent;
  }
  .company-item:hover,
  .company-item:focus-visible {
    background: transparent;
    color: #111;
  }
  .navbar-collapse {
    margin-top: 1rem;
    border-top: 1px solid #ececec;
    padding-top: 1rem;
  }
  .top-contact-bar {
    min-height: 26px;
  }
  .top-contact-link span {
    display: none;
  }
  .product-spec,
  .product-spec.align-end {
    justify-content: center;
  }
  .product-spec {
    display: none;
  }
  .product-banner .text-end,
  .product-banner .text-lg-end {
    text-align: center !important;
  }
  .product-banner-text {
    text-align: center !important;
  }
  .product-banner .btn-ovefit-primary {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }
  .product-detail-text {
    text-align: center;
  }
  .product-detail-text .product-spec {
    justify-content: center;
  }
  .product-detail-text .badge {
    margin-left: auto;
    margin-right: auto;
  }
  .product-desc-collage .item-1 {
    min-height: 280px;
  }
  .product-desc-collage .item-2,
  .product-desc-collage .item-3,
  .product-desc-collage .item-4 {
    min-height: 130px;
  }
  .product-banner-text {
    padding: 0 !important;
  }
  .product-photo {
    width: 78%;
    height: auto;
  }
  .product-card-media {
    min-height: 280px;
    padding: 0.9rem;
  }
  .product-card-modern .product-photo {
    width: 88%;
    height: 88%;
  }
  .product-spec .item {
    max-width: 90px;
    padding: 0.5rem 0.6rem;
    font-size: 0.8rem;
  }
  .product-banner h1,
  .product-banner h3,
  .product-banner p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .natural-farming-band {
    padding: 0;
  }
  .natural-farming-overlay {
    padding: 4.5rem 0;
  }
  .craft-overlay {
    padding: 4.2rem 0;
  }
  .product-groups-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }
  .pg-card {
    min-height: 300px;
    border-radius: 18px;
  }
  .pg-card-media {
    height: 208px;
  }
  .pg-card-body {
    min-height: 72px;
    padding: 0.8rem 0.7rem 0.9rem;
  }
  .pg-card-title {
    font-size: 1.04rem;
  }
  .category-media-grid {
    grid-template-columns: 1fr;
  }
  .category-media-item,
  .category-media-item.item-1 {
    min-height: 260px;
    grid-row: auto;
  }
  .category-row-block .category-block-media,
  .category-row-block.media_media .category-block-media {
    min-height: 240px;
  }
  .about-home-collage {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
    margin-top: 1.1rem;
    gap: 1.1rem;
    padding: 0;
  }
  .about-home-collage.single-media {
    display: block;
  }
  .about-collage-main {
    height: 400px;
    transform: translateY(-34px);
  }
  .about-home-collage.single-media .about-collage-main {
    height: 360px;
    transform: none;
  }
  .about-collage-float {
    height: 195px;
  }
  .about-collage-top,
  .about-collage-bottom {
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 3.5rem 0;
  }
  #product-groups.section {
    padding-bottom: 1rem;
  }
  #benefits.section {
    padding-top: 2rem;
  }
  .navbar-ovefit {
    padding: 0.8rem 0;
  }
  .pg-card {
    min-height: 255px;
    border-radius: 16px;
  }
  .pg-card-media {
    height: 170px;
  }
  .pg-card-title {
    font-size: 0.96rem;
  }
  .about-home-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "main main"
      "top bottom";
    gap: 0.8rem;
    padding: 0;
    margin-top: 0.4rem;
  }
  .about-home-collage.single-media {
    display: block;
  }
  .product-desc-collage {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c" "d";
  }
  .product-desc-collage .item-1,
  .product-desc-collage .item-2,
  .product-desc-collage .item-3,
  .product-desc-collage .item-4 {
    min-height: 200px;
  }
  .about-collage-main,
  .about-collage-top,
  .about-collage-bottom {
    width: 100%;
    height: 190px;
    padding: 0;
    border-radius: 18px;
  }
  .about-collage-main {
    grid-column: 1 / -1;
    height: 250px;
    transform: none;
  }
  .about-home-collage.single-media .about-collage-main {
    height: 250px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  .floating-fruit {
    transform: none !important;
  }
}
