/* ==============================
   PRODUCT FRESH PAGE
============================== */
.product_page {
   width: 100%;
   color: var(--color-text-primary);
   overflow-x: clip;
}

/*------------------------------------
   Product Visual Header Mode
------------------------------------*/
.product_fresh .header.is_visual_mode:not(.is_scroll) {
   background-color: var(--color-bg-base);
   backdrop-filter: none;
   -webkit-backdrop-filter: none;
   box-shadow: none;
}

.product_fresh .header.is_visual_mode:not(.is_scroll) .gnb_main {
   color: var(--color-text-primary);
}

.product_fresh .header.is_scroll,
.product_fresh .header.is_scroll:hover,
.product_fresh .header.is_scroll.is_visual_mode,
.product_fresh .header.is_scroll.is_visual_mode:hover {
   background-color: var(--color-surface);
   backdrop-filter: none;
   -webkit-backdrop-filter: none;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.product_fresh .header.is_scroll .gnb_main,
.product_fresh .header.is_scroll.is_visual_mode .gnb_main {
   color: var(--color-text-primary);
}

.product_fresh .header.is_visual_mode:not(.is_scroll):hover {
   background-color: var(--color-bg-base);
}

.product_fresh .header.is_visual_mode:hover .gnb_main,
.product_fresh .header.is_scroll.is_visual_mode:hover .gnb_main {
   color: var(--color-text-primary);
}

.product_fresh .header.is_visual_mode:hover .gnb_item:hover .gnb_main,
.product_fresh .header.is_scroll.is_visual_mode:hover .gnb_item:hover .gnb_main {
   color: var(--color-brand);
}

/*------------------------------------
   Product Visual
 ------------------------------------*/
.product_visual_scene {
   position: relative;
   width: 100%;
   height: 260vh;
   background: var(--color-bg-base);
}

.product_visual_sticky {
   position: sticky;
   top: 0;
   width: 100%;
   min-height: 100vh;
   overflow: hidden;
   background: var(--color-bg-base);
   --product-line-top: clamp(148px, 22vh, 222px);
}

.product_visual_grid {
   position: absolute;
   inset: 0;
   z-index: 2;
   pointer-events: none;
}

.product_visual_line {
   position: absolute;
   display: block;
   background: rgba(102, 155, 69, 0.32);
   will-change: transform, opacity;
}

.product_visual_line_h {
   left: 0;
   width: 100%;
   height: 1px;
   transform-origin: left center;
}

.product_visual_line_h01 {
   top: var(--product-line-top);
}

.product_visual_line_h02 {
   bottom: clamp(96px, 13vh, 140px);
}

.product_visual_line_v {
   top: 0;
   width: 1px;
   height: 100%;
   transform-origin: center top;
}

.product_visual_line_v01 {
   left: clamp(72px, 8vw, 150px);
}

.product_visual_line_v02 {
   left: clamp(560px, 43vw, 820px);
}

.product_visual_line_v03 {
   right: clamp(40px, 4vw, 72px);
}

.product_visual_panel {
   position: absolute;
   left: clamp(72px, 8.5vw, 160px);
   top: 45%;
   z-index: 6;
   width: min(52vw, 900px);
   height: auto;
   color: var(--color-text-primary);
   pointer-events: none;
   will-change: opacity, transform;
}

.product_visual_title {
   width: max-content;
   max-width: 100%;
   transform: translateY(-50%);
}

.product_visual_title h2 {
   margin: 0;
   color: var(--color-text-primary);
   font-family: "Bahnschrift", "Pretendard", sans-serif;
   font-size: clamp(92px, 8.8vw, 178px);
   font-weight: 500;
   font-stretch: condensed;
   line-height: 0.88;
   letter-spacing: 0;
   white-space: nowrap;
   -webkit-font-smoothing: antialiased;
   text-rendering: geometricPrecision;
}

.product_visual_title h2>span {
   display: block;
   overflow: hidden;
   padding-top: 0.06em;
   margin-top: -0.06em;
}

.product_visual_title h2>span>span {
   display: block;
   will-change: transform;
}

.product_visual_media {
   position: absolute;
   left: clamp(560px, 43vw, 820px);
   right: clamp(40px, 4vw, 72px);
   top: clamp(130px, 18vh, 190px);
   bottom: clamp(96px, 13vh, 140px);
   z-index: 3;
   overflow: hidden;
   background: var(--color-line);
   clip-path: inset(0 0 0 0);
   --product-visual-dim: 0.06;
   --product-frame-alpha: 1;
   --product-visual-blur: 0px;
   --product-visual-scale: 1;
   will-change: left, right, top, bottom, clip-path;
}

.product_visual_media::before {
   content: "";
   position: absolute;
   inset: 22px;
   z-index: 2;
   border: 1px solid rgba(255, 255, 255, 0.72);
   opacity: var(--product-frame-alpha);
   pointer-events: none;
}

.product_visual_media::after {
   content: "";
   position: absolute;
   inset: 0;
   z-index: 1;
   background: rgba(0, 0, 0, var(--product-visual-dim));
   pointer-events: none;
}

.product_visual_media img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center center;
   filter: blur(var(--product-visual-blur));
   transform: scale(var(--product-visual-scale));
   transform-origin: center center;
   will-change: filter, transform;
}

.product_visual_copy {
   position: absolute;
   left: 50%;
   top: 50%;
   z-index: 6;
   width: calc(100% - 48px);
   opacity: 0;
   visibility: hidden;
   text-align: center;
   pointer-events: none;
   will-change: opacity, transform;
}

.product_visual_copy p {
   margin: 0;
   color: var(--color-text-light);
   font-size: clamp(36px, 5vw, 70px);
   font-weight: 700;
   line-height: 1.35;
   letter-spacing: 0;
   text-shadow: 0 3px 18px rgba(0, 0, 0, 0.28);
   word-break: keep-all;
}

.product_scroll_guide {
   position: absolute;
   left: calc(clamp(72px, 8vw, 152px) + 0.2%);
   bottom: clamp(110px, 16vh, 150px);
   z-index: 8;
   display: inline-flex;
   align-items: center;
   gap: clamp(12px, 1vw, 16px);
   color: rgba(34, 34, 34, 0.42);
   text-decoration: none;
   opacity: 0;
   visibility: hidden;
   will-change: opacity, transform;
}

.product_scroll_guide:hover {
   color: rgba(34, 34, 34, 0.68);
}

.product_scroll_mouse {
   position: relative;
   flex: 0 0 auto;
   display: block;
   width: clamp(23px, 1.65vw, 28px);
   height: clamp(34px, 2.45vw, 42px);
   border: 1.5px solid currentColor;
   border-radius: 999px;
   box-sizing: border-box;
}

.product_scroll_wheel {
   position: absolute;
   left: 50%;
   top: 8px;
   display: block;
   width: 3px;
   height: 7px;
   border-radius: 999px;
   background: currentColor;
   transform: translateX(-50%);
   animation: productScrollWheel 1.65s cubic-bezier(.215, .61, .355, 1) infinite;
}

.product_scroll_text {
   display: block;
   color: currentColor;
   font-size: clamp(11px, 0.78vw, 13px);
   font-weight: 500;
   line-height: 1;
   letter-spacing: 0.13em;
   white-space: nowrap;
}

@keyframes productScrollWheel {
   0% {
      opacity: 0;
      transform: translate(-50%, 0);
   }

   20% {
      opacity: 1;
   }

   58% {
      opacity: 1;
   }

   100% {
      opacity: 0;
      transform: translate(-50%, 11px);
   }
}

@keyframes productScrollArrow {
   0% {
      opacity: 0;
   }

   50% {
      opacity: 1;
   }

   100% {
      opacity: 0;
   }
}

/*------------------------------------
   Product Content Sections
------------------------------------*/
.product_content_section {
   position: relative;
   background: var(--color-bg-base);
}

.product_content_inner {
   width: min(1600px, calc(100% - 200px));
   margin: 0 auto;
}

.product_section_heading {
   display: flex;
   align-items: flex-end;
   justify-content: space-between;
   gap: clamp(48px, 6vw, 100px);
   margin-bottom: clamp(76px, 8vw, 120px);
}

.product_section_heading span,
.fresh_contact_inner>p {
   display: block;
   color: var(--color-brand);
   font-family: "Roboto", "Pretendard", sans-serif;
   font-size: clamp(14px, 0.95vw, 18px);
   font-weight: 400;
   line-height: 1;
   letter-spacing: 0.08em;
   text-transform: uppercase;
}

.product_section_heading h2 {
   margin: 20px 0 0;
   color: var(--color-text-primary);
   font-size: clamp(54px, 5.2vw, 96px);
   font-weight: 700;
   line-height: 1.08;
   word-break: keep-all;
}

.product_section_heading p {
   margin: 0 0 10px;
   color: var(--color-text-muted);
   font-size: clamp(17px, 1.18vw, 22px);
   font-weight: 400;
   line-height: 1.65;
   text-align: right;
   word-break: keep-all;
}

.fresh_intro {
   padding: clamp(170px, 12vw, 220px) 0 clamp(150px, 10vw, 200px);
}

.fresh_intro_layout {
   display: grid;
   grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
   gap: clamp(52px, 6vw, 100px);
   align-items: center;
}

.fresh_intro_image {
   position: relative;
   margin: 0;
   aspect-ratio: 760 / 500;
   overflow: hidden;
   background: var(--color-line);
}

.fresh_intro_image::after {
   content: "";
   position: absolute;
   inset: 22px;
   border: 1px solid rgba(255, 255, 255, 0.68);
   pointer-events: none;
}

.fresh_intro_image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
}

.fresh_intro_content {
   width: min(100%, 620px);
   justify-self: end;
}

.fresh_intro_lead {
   margin: 0;
   color: var(--color-text-primary);
   font-size: clamp(28px, 2.35vw, 44px);
   font-weight: 600;
   line-height: 1.38;
   letter-spacing: -0.045em;
   word-break: keep-all;
}

.fresh_intro_points {
   margin-top: clamp(42px, 4.3vw, 70px);
   border-top: 1px solid rgba(102, 155, 69, 0.26);
}

.fresh_intro_points li {
   display: grid;
   grid-template-columns: minmax(130px, 0.32fr) minmax(0, 1fr);
   gap: 28px;
   padding: 28px 0;
   border-bottom: 1px solid rgba(102, 155, 69, 0.16);
   align-items: center;
}

.fresh_intro_points strong {
   color: var(--color-brand);
   font-family: "Bahnschrift", "Pretendard", sans-serif;
   font-size: clamp(16px, 1.1vw, 20px);
   font-weight: 500;
   font-stretch: condensed;
   letter-spacing: 0.08em;
   text-transform: uppercase;
}

.fresh_intro_points span {
   color: var(--color-text-secondary);
   font-size: clamp(18px, 1.2vw, 22px);
   font-weight: 500;
   line-height: 1.4;
   word-break: keep-all;
}

.fresh_format {
   padding: clamp(155px, 11vw, 210px) 0;
   background: #fff;
}

.fresh_format_grid {
   display: grid;
   grid-template-columns: repeat(4, minmax(0, 1fr));
   border-top: 1px solid #d9dfd1;
   border-left: 1px solid #d9dfd1;
}

.fresh_format_card {
   position: relative;
   top: 0;
   min-height: clamp(310px, 24vw, 390px);
   padding: clamp(30px, 2.6vw, 46px);
   display: flex;
   flex-direction: column;
   background: var(--color-bg-base);
   border-right: 1px solid #d9dfd1;
   border-bottom: 1px solid #d9dfd1;
   transition:
      background 0.35s ease,
      border-color 0.35s ease,
      top 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.fresh_format_card>span {
   color: var(--color-brand);
   font-family: "Bahnschrift", "Pretendard", sans-serif;
   font-size: clamp(22px, 1.5vw, 34px);
   font-weight: 300;
   font-stretch: condensed;
   letter-spacing: 0em;
}

.fresh_format_card h3 {
   margin: clamp(36px, 3vw, 52px) 0 18px;
   color: var(--color-text-primary);
   font-size: clamp(24px, 1.75vw, 34px);
   font-weight: 700;
   line-height: 1.25;
   letter-spacing: -0.045em;
}

.fresh_format_card p {
   margin: 0;
   color: var(--color-text-secondary);
   font-size: clamp(15px, 1vw, 18px);
   font-weight: 400;
   line-height: 1.65;
   word-break: keep-all;
}

.fresh_format_tags {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   margin-top: auto;
   padding-top: 36px;
}

.fresh_format_tags em {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   height: 30px;
   padding: 0 14px;
   border: 1px solid rgba(102, 155, 69, 0.18);
   color: var(--color-brand);
   font-size: 14px;
   font-style: normal;
   font-weight: 500;
   line-height: 1;
   white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
   .fresh_format_card:hover {
      z-index: 1;
      top: -6px;
      background: var(--color-bg-soft);
      border-color: rgba(102, 155, 69, 0.28);
   }
}

.fresh_control {
   padding: clamp(145px, 9.6vw, 190px) 0;
   background: var(--color-bg-dark);
   color: var(--color-text-light);
}

.fresh_control .product_section_heading span {
   color: var(--color-brand-light);
}

.fresh_control .product_section_heading h2 {
   color: var(--color-text-light);
}

.fresh_control .product_section_heading p {
   color: rgba(245, 245, 245, 0.68);
}

.fresh_control_steps {
   position: relative;
   display: grid;
   grid-template-columns: repeat(4, minmax(0, 1fr));
   gap: clamp(28px, 3vw, 48px);
   counter-reset: fresh-control;
   border-top: 1px solid rgba(159, 197, 130, 0.28);
   --fresh-control-progress: 0;
}

.fresh_control_steps li {
   position: relative;
   z-index: 1;
   min-height: auto;
   padding: clamp(40px, 4vw, 66px) 0 0;
   --fresh-control-dot-opacity: 0.45;
   --fresh-control-dot-scale: 0.72;
   --fresh-control-text-fill: 0;
}

.fresh_control_steps li::before {
   content: "";
   position: absolute;
   left: 0;
   top: -5px;
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background: var(--color-brand-light);
   opacity: var(--fresh-control-dot-opacity);
   box-shadow: 0 0 0 8px rgba(159, 197, 130, 0.12);
   transform: scale(var(--fresh-control-dot-scale));
   transform-origin: center;
   will-change: opacity, transform;
}

@media screen and (min-width: 1301px) {
   .fresh_control_steps::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 1px;
      z-index: 0;
      background: linear-gradient(90deg, var(--color-brand-light) 0%, rgba(159, 197, 130, 0.62) 100%);
      transform: scaleX(var(--fresh-control-progress));
      transform-origin: left center;
      pointer-events: none;
      will-change: transform;
   }
}

.fresh_control_steps span {
   display: block;
   color: rgba(159, 197, 130, 0.3);
   font-family: "Bahnschrift", "Pretendard", sans-serif;
   font-size: clamp(34px, 3.2vw, 62px);
   font-weight: 300;
   font-stretch: condensed;
   line-height: 1;
   background: linear-gradient(90deg,
         var(--color-brand-light) 0%,
         var(--color-brand-light) calc(var(--fresh-control-text-fill) * 1%),
         rgba(159, 197, 130, 0.3) calc(var(--fresh-control-text-fill) * 1%),
         rgba(159, 197, 130, 0.3) 100%);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
}

.fresh_control_steps h3 {
   margin: clamp(38px, 3.8vw, 68px) 0 18px;
   color: rgba(217, 217, 217, 0.28);
   font-size: clamp(24px, 1.7vw, 34px);
   font-weight: 700;
   letter-spacing: -0.04em;
   background: linear-gradient(90deg,
         var(--color-text-light) 0%,
         var(--color-text-light) calc(var(--fresh-control-text-fill) * 1%),
         rgba(217, 217, 217, 0.28) calc(var(--fresh-control-text-fill) * 1%),
         rgba(217, 217, 217, 0.28) 100%);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
}

.fresh_control_steps p {
   margin: 0;
   color: rgba(217, 217, 217, 0.24);
   font-size: clamp(15px, 1vw, 18px);
   line-height: 1.65;
   word-break: keep-all;
   background: linear-gradient(90deg,
         rgba(245, 245, 245, 0.68) 0%,
         rgba(245, 245, 245, 0.68) calc(var(--fresh-control-text-fill) * 1%),
         rgba(217, 217, 217, 0.24) calc(var(--fresh-control-text-fill) * 1%),
         rgba(217, 217, 217, 0.24) 100%);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
}

.fresh_products {
   padding: clamp(130px, 8.8vw, 170px) 0;
   background: var(--color-bg-base);
}

.fresh_products .product_section_heading {
   margin-bottom: clamp(58px, 5.8vw, 86px);
   --fresh-product-heading-fill: 100;
}

.fresh_products .product_section_heading span,
.fresh_products .product_section_heading h2 {
   background: linear-gradient(90deg,
         var(--fresh-product-heading-active-color) 0%,
         var(--fresh-product-heading-active-color) calc(var(--fresh-product-heading-fill) * 1%),
         var(--fresh-product-heading-muted-color) calc(var(--fresh-product-heading-fill) * 1%),
         var(--fresh-product-heading-muted-color) 100%);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
}

.fresh_products .product_section_heading span {
   --fresh-product-heading-active-color: var(--color-brand);
   --fresh-product-heading-muted-color: rgba(102, 155, 69, 0.3);
}

.fresh_products .product_section_heading h2 {
   --fresh-product-heading-active-color: var(--color-text-primary);
   --fresh-product-heading-muted-color: var(--color-text-reveal-base);
}

.fresh_products_layout {
   display: grid;
   grid-template-columns: minmax(0, 4fr) minmax(0, 5.5fr);
   gap: clamp(54px, 5.5vw, 92px);
   align-items: center;
}

.fresh_products_visual {
   position: relative;
   height: clamp(430px, 34vw, 620px);
   margin: 0;
   overflow: hidden;
   background: var(--color-line);
   will-change: clip-path;
}

.fresh_products_visual::after {
   content: "";
   position: absolute;
   inset: 24px;
   z-index: 3;
   border: 1px solid rgba(255, 255, 255, 0.7);
   pointer-events: none;
}

.fresh_products_visual img {
   position: absolute;
   inset: 0;
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
   will-change: opacity, transform;
}

.fresh_products_visual_next {
   z-index: 2;
   pointer-events: none;
   will-change: clip-path;
}

.fresh_products_content {
   display: block;
}

.fresh_products_summary {
   padding: 0 0 clamp(26px, 2.4vw, 38px);
}

.fresh_products_summary span {
   display: block;
   color: rgba(102, 155, 69, 70%);
   font-family: "Roboto", "Pretendard", sans-serif;
   font-size: clamp(13px, 0.82vw, 16px);
   font-weight: 500;
   line-height: 1;
   letter-spacing: 0.08em;
}

.fresh_products_summary p {
   margin: clamp(18px, 1.6vw, 28px) 0 0;
   color: var(--color-text-primary);
   font-size: clamp(22px, 1.45vw, 30px);
   font-weight: 600;
   line-height: 1.42;
   letter-spacing: -0.045em;
   word-break: keep-all;
}

.fresh_products_list {
   display: block;
   margin-top: clamp(28px, 3vw, 44px);
   border-top: 1px solid rgba(102, 155, 69, 0.2);
}

.fresh_products_list li {
   position: relative;
   overflow: hidden;
   display: grid;
   grid-template-columns: minmax(48px, 0.16fr) minmax(150px, 0.4fr) minmax(0, 1fr);
   align-items: center;
   gap: clamp(18px, 2.2vw, 42px);
   min-height: auto;
   --fresh-products-padding-top: clamp(26px, 2.2vw, 38px);
   --fresh-products-padding-right: clamp(54px, 4vw, 72px);
   --fresh-products-padding-bottom: clamp(26px, 2.2vw, 38px);
   padding: var(--fresh-products-padding-top) var(--fresh-products-padding-right) var(--fresh-products-padding-bottom) 0;
   border-right: 0;
   border-bottom: 1px solid rgba(102, 155, 69, 0.18);
   background: transparent;
   --fresh-products-text-fill: 0%;
   transition: border-color 0.36s ease;
}

.fresh_products_fill {
   position: absolute;
   inset: var(--fresh-products-padding-top) var(--fresh-products-padding-right) var(--fresh-products-padding-bottom) 0;
   z-index: 2;
   display: grid;
   grid-template-columns: inherit;
   align-items: inherit;
   gap: inherit;
   overflow: hidden;
   pointer-events: none;
   clip-path: inset(0 calc(100% - var(--fresh-products-text-fill)) 0 0);
   transition: clip-path 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.fresh_products_list li> :not(.fresh_products_fill) {
   position: relative;
   z-index: 1;
}

.fresh_products_list li[role="button"] {
   cursor: pointer;
}

.fresh_products_list li.is_active {
   z-index: 1;
   border-bottom-color: rgba(102, 155, 69, 0.34);
   --fresh-products-text-fill: 100%;
}

.fresh_products_list li:focus-visible {
   z-index: 2;
   outline: 2px solid rgba(102, 155, 69, 0.46);
   outline-offset: -6px;
   --fresh-products-text-fill: 100%;
}

@media (hover: hover) and (pointer: fine) {
   .fresh_products_list li[role="button"]:hover {
      z-index: 2;
      border-bottom-color: rgba(102, 155, 69, 0.34);
      --fresh-products-text-fill: 100%;
   }
}

.fresh_products_list span {
   display: block;
   color: rgba(102, 155, 69, 0.34);
   font-family: "Bahnschrift", "Pretendard", sans-serif;
   font-size: clamp(17px, 1.05vw, 24px);
   font-weight: 400;
   font-stretch: condensed;
   line-height: 1;
}

.fresh_products_list strong {
   display: block;
   margin-top: 0;
   color: rgba(48, 50, 52, 0.5);
   font-size: clamp(20px, 1.3vw, 27px);
   font-weight: 700;
   line-height: 1.22;
   letter-spacing: -0.045em;
}

.fresh_products_list p {
   margin: 0;
   color: rgba(102, 102, 102, 0.52);
   font-size: clamp(14px, 0.94vw, 17px);
   font-weight: 400;
   line-height: 1.58;
   word-break: keep-all;
}

.fresh_products_fill span {
   color: var(--color-brand);
}

.fresh_products_fill strong {
   color: var(--color-text-primary);
}

.fresh_products_fill p {
   color: var(--color-text-secondary);
}

.fresh_products_accordion {
   display: none;
}

.fresh_products_accordion_summary {
   padding: 0 0 clamp(28px, 4vw, 42px);
}

.fresh_products_accordion_summary span {
   display: block;
   color: var(--color-brand);
   font-family: "Roboto", "Pretendard", sans-serif;
   font-size: clamp(12px, 1.5vw, 15px);
   font-weight: 600;
   line-height: 1;
   letter-spacing: 0.16em;
}

.fresh_products_accordion_summary p {
   margin: clamp(18px, 2.4vw, 26px) 0 0;
   color: var(--color-text-primary);
   font-size: clamp(20px, 3vw, 28px);
   font-weight: 600;
   line-height: 1.45;
   letter-spacing: -0.045em;
   word-break: keep-all;
}

.fresh_products_accordion_list {
   position: relative;
   border-top: 1px solid rgba(102, 155, 69, 0.2);
}

.fresh_products_accordion_item {
   position: relative;
   border-bottom: 1px solid rgba(102, 155, 69, 0.18);
}

.fresh_products_accordion_head {
   width: 100%;
   height: 132px;
   padding: 0;
   display: grid;
   grid-template-columns: 64px minmax(150px, 0.48fr) minmax(0, 1fr) 40px;
   align-items: center;
   column-gap: clamp(16px, 3vw, 34px);
   background: transparent;
   border: 0;
   color: inherit;
   text-align: left;
   cursor: pointer;
   font-family: "Pretendard", sans-serif;
}

.fresh_products_accordion_num {
   color: rgba(102, 155, 69, 0.45);
   font-family: "Bahnschrift", "Pretendard", sans-serif;
   font-size: clamp(18px, 2.6vw, 26px);
   font-weight: 500;
   font-stretch: condensed;
   line-height: 1;
   letter-spacing: 0.04em;
   transition: color 0.35s ease;
}

.fresh_products_accordion_title {
   color: rgba(48, 50, 52, 0.58);
   font-size: clamp(22px, 3.2vw, 30px);
   font-weight: 700;
   line-height: 1.25;
   letter-spacing: -0.045em;
   word-break: keep-all;
   transition: color 0.35s ease;
}

.fresh_products_accordion_desc {
   color: rgba(102, 102, 102, 0.62);
   font-size: clamp(14px, 1.9vw, 17px);
   font-weight: 400;
   line-height: 1.6;
   letter-spacing: -0.025em;
   word-break: keep-all;
   transition: color 0.35s ease;
}

.fresh_products_accordion_icon {
   position: relative;
   width: 40px;
   height: 40px;
   border: 1px solid rgba(102, 155, 69, 0.26);
   border-radius: 50%;
   justify-self: end;
   transition:
      background 0.35s ease,
      border-color 0.35s ease,
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.fresh_products_accordion_icon::before,
.fresh_products_accordion_icon::after {
   content: "";
   position: absolute;
   left: 50%;
   top: 50%;
   width: 16px;
   height: 2px;
   background: var(--color-brand);
   border-radius: 999px;
   transform: translate(-50%, -50%);
   transition:
      background 0.35s ease,
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.fresh_products_accordion_icon::after {
   transform: translate(-50%, -50%) rotate(90deg);
}

.fresh_products_accordion_panel {
   display: grid;
   grid-template-rows: 0fr;
   overflow: hidden;
   opacity: 0;
   transition:
      grid-template-rows 0.82s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.32s ease;
}

.fresh_products_accordion_panel_inner {
   min-height: 0;
   overflow: hidden;
   box-sizing: border-box;
}

.fresh_products_accordion_image {
   position: relative;
   width: 100%;
   height: clamp(300px, 52vw, 480px);
   margin: 0;
   overflow: hidden;
   background: var(--color-line);
}

.fresh_products_accordion_image::after {
   content: "";
   position: absolute;
   inset: 18px;
   z-index: 2;
   border: 1px solid rgba(255, 255, 255, 0.68);
   pointer-events: none;
}

.fresh_products_accordion_image img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
   transform: scale(1.035);
   transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
   will-change: transform;
}

.fresh_products_accordion_item.is-active .fresh_products_accordion_num,
.fresh_products_accordion_item.is-active .fresh_products_accordion_title {
   color: var(--color-text-primary);
}

.fresh_products_accordion_item.is-active .fresh_products_accordion_num {
   color: var(--color-brand);
}

.fresh_products_accordion_item.is-active .fresh_products_accordion_desc {
   color: var(--color-text-secondary);
}

.fresh_products_accordion_item.is-active .fresh_products_accordion_panel {
   grid-template-rows: 1fr;
   opacity: 1;
}

.fresh_products_accordion_item.is-active .fresh_products_accordion_panel_inner {
   margin-bottom: 42px;
}

.fresh_products_accordion_item.is-active .fresh_products_accordion_icon {
   background: var(--color-brand);
   border-color: var(--color-brand);
   transform: rotate(180deg);
}

.fresh_products_accordion_item.is-active .fresh_products_accordion_icon::before,
.fresh_products_accordion_item.is-active .fresh_products_accordion_icon::after {
   background: #fff;
}

.fresh_products_accordion_item.is-active .fresh_products_accordion_icon::after {
   transform: translate(-50%, -50%) rotate(0deg);
}

.fresh_products_accordion_item.is-active .fresh_products_accordion_image img {
   transform: scale(1);
}

.fresh_contact_banner {
   position: relative;
   overflow: hidden;
   padding: clamp(110px, 8vw, 160px) 0;
   background:
      linear-gradient(90deg, rgba(102, 155, 69, 0.08) 1px, transparent 1px) 0 0 / min(20vw, 380px) 100%,
      var(--color-bg-base);
   color: var(--color-text-primary);
   border-top: 1px solid rgba(102, 155, 69, 0.16);
}

.fresh_contact_inner {
   position: relative;
   z-index: 1;
   width: min(1600px, calc(100% - 160px));
   margin: 0 auto;
   display: grid;
   grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
   grid-template-areas:
      "label actions"
      "title actions";
   column-gap: clamp(56px, 7vw, 128px);
   row-gap: 24px;
   align-items: end;
   padding: clamp(62px, 5vw, 92px) clamp(42px, 4vw, 72px);
   box-sizing: border-box;
   border-top: 1px solid rgba(102, 155, 69, 0.18);
   border-bottom: 1px solid rgba(102, 155, 69, 0.18);
}

.fresh_contact_inner>p {
   grid-area: label;
   margin: 0;
   color: var(--color-brand);
   text-shadow: none;
}

.fresh_contact_inner>p::after {
   content: "";
   display: block;
   width: 45px;
   height: 1px;
   margin-top: 18px;
   background: rgba(102, 155, 69, 0.62);
}

.fresh_contact_inner h2 {
   grid-area: title;
   margin: 0;
   color: var(--color-text-primary);
   font-size: clamp(44px, 4vw, 70px);
   font-weight: 700;
   line-height: 1.18;
   letter-spacing: -0.04em;
   text-shadow: none;
   word-break: keep-all;
}

.fresh_contact_actions {
   grid-area: actions;
   width: 100%;
   display: grid;
   grid-template-columns: 1fr;
   gap: 14px;
   margin: 0;
}

.fresh_contact_actions a {
   position: relative;
   overflow: hidden;
   isolation: isolate;
   display: flex;
   align-items: center;
   justify-content: space-between;
   min-width: 0;
   gap: 20px;
   padding: clamp(20px, 1.8vw, 28px) clamp(22px, 2.2vw, 34px);
   color: var(--color-text-primary);
   border: 1px solid rgba(102, 155, 69, 0.18);
   background: var(--color-bg-base);
   box-shadow: none;
   font-size: clamp(17px, 1.2vw, 22px);
   font-weight: 600;
   line-height: 1.25;
   text-decoration: none;
   text-shadow: none;
   transition:
      color 0.35s ease,
      border-color 0.35s ease,
      transform 0.35s ease;
}

.fresh_contact_actions a::after {
   content: "";
   position: absolute;
   left: 0;
   top: 0;
   z-index: -1;
   width: 100%;
   height: 100%;
   background: var(--color-brand);
   transform: scaleX(0);
   transform-origin: left center;
   transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.fresh_contact_actions span {
   flex-shrink: 0;
   font-size: clamp(20px, 1.5vw, 26px);
   transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
   .fresh_contact_actions a:hover,
   .fresh_contact_actions a:focus-visible {
      color: var(--color-text-light);
      border-color: var(--color-brand);
      transform: translateY(-3px);
   }

   .fresh_contact_actions a:hover::after,
   .fresh_contact_actions a:focus-visible::after {
      transform: scaleX(1);
   }

   .fresh_contact_actions a:hover span,
   .fresh_contact_actions a:focus-visible span {
      transform: translateX(8px);
   }
}

/*------------------------------------
   Responsive
------------------------------------*/
@media screen and (max-width: 1024px) {
   .product_visual_media::before,
   .fresh_intro_image::after,
   .fresh_products_visual::after,
   .fresh_products_accordion_image::after {
      display: none;
   }
}

@media screen and (min-width: 1025px) and (max-width: 1600px) {
   .product_visual_sticky {
      --product-line-top: clamp(124px, 20vh, 176px);
   }

   .product_visual_line_h02 {
      bottom: clamp(78px, 11vh, 110px);
   }

   .product_visual_line_v01,
   .product_visual_panel {
      left: clamp(64px, 7vw, 112px);
   }

   .product_visual_line_v02,
   .product_visual_media {
      left: clamp(520px, 42vw, 700px);
   }

   .product_visual_media {
      right: clamp(36px, 4vw, 64px);
      top: clamp(116px, 16vh, 160px);
      bottom: clamp(78px, 11vh, 110px);
   }

   .product_visual_panel {
      top: 50%;
      width: min(50vw, 760px);
   }

   .product_scroll_guide {
      left: calc(clamp(64px, 7vw, 112px) + 0.2%);
      bottom: clamp(88px, 13vh, 124px);
   }

   .product_visual_title h2 {
      font-size: clamp(86px, 8.2vw, 136px);
   }
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
   .product_visual_scene {
      height: 380svh;
   }

   .product_visual_sticky {
      height: 100vh;
      height: 100dvh;
      min-height: 100svh;
      --tab-visual-side: clamp(24px, 4vw, 40px);
      --tab-image-left: clamp(276px, 46vw, 470px);
      --tab-image-top: clamp(112px, 15dvh, 150px);
      --tab-image-bottom: clamp(88px, 11dvh, 122px);
      --tab-intro-line-top: clamp(148px, 21dvh, 190px);
      --tab-title-gap: clamp(18px, 2.5dvh, 28px);
      --tab-title-top: calc(var(--tab-intro-line-top) + var(--tab-title-gap));
      --tab-title-size: clamp(66px, 10.5vw, 96px);
      --product-line-top: var(--tab-intro-line-top);
   }

   .product_visual_line_h01 {
      top: var(--product-line-top);
   }

   .product_visual_line_h02 {
      display: block;
      bottom: var(--tab-image-bottom);
   }

   .product_visual_line_v01,
   .product_visual_panel {
      left: var(--tab-visual-side);
   }

   .product_visual_line_v02,
   .product_visual_media {
      left: var(--tab-image-left);
   }

   .product_visual_line_v03,
   .product_visual_media {
      right: var(--tab-visual-side);
   }

   .product_visual_media {
      top: var(--tab-image-top);
      bottom: var(--tab-image-bottom);
   }

   .product_visual_media img {
      object-position: 50% center;
   }

   .product_visual_panel {
      top: var(--tab-title-top);
      width: calc(
         var(--tab-image-left)
         - var(--tab-visual-side)
         - clamp(20px, 3vw, 32px)
      );
   }

   .product_visual_title {
      transform: none;
   }

   .product_visual_title h2 {
      font-weight: 600;
      font-size: var(--tab-title-size);
      line-height: 0.9;
   }

   .product_scroll_guide {
      left: calc(var(--tab-visual-side) + 8px);
      top: auto;
      bottom: calc(var(--tab-image-bottom) + 4px);
      display: block;
      width: 32px;
      height: 42px;
      transform: none;
      color: var(--color-text-secondary);
      pointer-events: auto;
   }

   .product_scroll_guide:hover {
      color: rgba(34, 34, 34, 0.58);
   }

   .product_scroll_mouse {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      border: 0;
      border-radius: 0;
   }

   .product_scroll_mouse::before,
   .product_scroll_mouse::after,
   .product_scroll_wheel {
      position: absolute;
      left: 50%;
      display: block;
      width: 16px;
      height: 16px;
      margin-left: -8px;
      border: 0;
      border-left: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      border-radius: 0;
      background: transparent;
      transform: rotate(-45deg);
      animation: productScrollArrow 2s infinite;
      opacity: 0;
      box-sizing: border-box;
   }

   .product_scroll_mouse::before,
   .product_scroll_mouse::after {
      content: "";
   }

   .product_scroll_mouse::before {
      top: 0;
      animation-delay: 0s;
   }

   .product_scroll_wheel {
      top: 10px;
      animation-delay: 0.15s;
   }

   .product_scroll_mouse::after {
      top: 20px;
      animation-delay: 0.3s;
   }

   .product_scroll_text {
      display: none;
   }
}

@media screen and (min-width: 600px) and (max-width: 1024px) and (max-height: 900px) {
   .product_visual_sticky {
      --tab-image-left: clamp(260px, 44vw, 430px);
      --tab-image-top: clamp(94px, 13dvh, 118px);
      --tab-image-bottom: clamp(64px, 8dvh, 82px);
      --tab-intro-line-top: clamp(126px, 18dvh, 154px);
      --tab-title-gap: clamp(14px, 2dvh, 20px);
      --tab-title-size: clamp(60px, 15vw, 96px);
   }
}

@media screen and (min-width: 600px) and (max-width: 1024px) and (min-height: 1000px) {
   .product_visual_sticky {
      --tab-image-top: clamp(138px, 14dvh, 170px);
      --tab-image-bottom: clamp(112px, 11dvh, 142px);
      --tab-intro-line-top: clamp(180px, 18dvh, 220px);
      --tab-title-size: clamp(72px, 10.8vw, 102px);
   }
}

@media screen and (min-width: 300px) and (max-width: 599px) {
   .product_visual_scene {
      height: 260svh;
   }

   .product_visual_sticky {
      height: 100vh;
      height: 100dvh;
      min-height: 100svh;
      --mo-img-bottom: 90px;
      --mo-img-h: max(180px, calc((100vw - 40px) * 0.6));
      --mo-title-gap: 25px;
   }

   .product_visual_grid {
      z-index: 2;
   }

   .product_visual_line {
      background: rgba(102, 155, 69, 0.32);
   }

   .product_visual_line_h01 {
      top: calc(
         100dvh
         - var(--mo-img-bottom)
         - var(--mo-img-h)
         - var(--mo-title-gap)
      );
   }

   .product_visual_line_h02,
   .product_visual_line_v02,
   .product_visual_line_v03 {
      display: none;
   }

   .product_visual_line_v01 {
      left: 20px;
   }

   .product_visual_panel {
      left: 20px;
      right: 20px;
      top: auto;
      bottom: calc(var(--mo-img-bottom) + var(--mo-img-h) + var(--mo-title-gap));
      width: auto;
   }

   .product_visual_title {
      transform: none;
   }

   .product_visual_title h2 {
      font-size: clamp(58px, 16vw, 84px);
      font-weight: 600;
      line-height: 0.94;
   }

   .product_visual_title h2>span>span {
      white-space: nowrap;
   }

   .product_visual_media {
      left: 20px;
      right: 20px;
      top: calc(100svh - var(--mo-img-bottom) - var(--mo-img-h));
      bottom: var(--mo-img-bottom);
   }

   .product_visual_media::before {
      inset: 14px;
   }

   .product_visual_copy {
      width: calc(100% - 40px);
      text-align: center;
   }

   .product_visual_copy p {
      font-size: clamp(30px, 9vw, 44px);
      line-height: 1.35;
   }

   .product_scroll_guide {
      left: 50%;
      top: auto;
      bottom: 25px;
      display: block;
      width: 32px;
      height: 42px;
      transform: translateX(-50%);
      color: var(--color-text-secondary);
      pointer-events: none;
   }

   .product_scroll_guide:hover {
      color: var(--color-text-secondary);
   }

   .product_scroll_mouse {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      border: 0;
      border-radius: 0;
   }

   .product_scroll_mouse::before,
   .product_scroll_mouse::after,
   .product_scroll_wheel {
      position: absolute;
      left: 50%;
      display: block;
      width: 16px;
      height: 16px;
      margin-left: -8px;
      border-left: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      border-radius: 0;
      background: transparent;
      box-sizing: border-box;
      transform: rotate(-45deg);
      animation: productScrollArrow 2s infinite;
      opacity: 0;
   }

   .product_scroll_mouse::before,
   .product_scroll_mouse::after {
      content: "";
   }

   .product_scroll_mouse::before {
      top: 0;
      animation-delay: 0s;
   }

   .product_scroll_wheel {
      top: 10px;
      animation-delay: 0.15s;
   }

   .product_scroll_mouse::after {
      top: 20px;
      animation-delay: 0.3s;
   }

   .product_scroll_text {
      display: none;
   }
}

@media screen and (min-width: 300px) and (max-width: 390px) and (max-height: 700px) and (min-aspect-ratio: 9 / 16) {
   .product_visual_sticky {
      --mo-img-bottom: 80px;
      --mo-img-h: max(180px, calc((100vw - 40px) * 0.6));
      --mo-title-gap: 18px;
   }
}

@media screen and (min-width: 1025px) and (max-width: 1600px) {
   .product_content_inner {
      width: calc(100% - 120px);
   }

   .fresh_intro_layout {
      grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
      gap: clamp(44px, 5vw, 72px);
   }

   .fresh_products_layout {
      grid-template-columns: minmax(0, 4.5fr) minmax(0, 5.5fr);
      gap: clamp(48px, 4.8vw, 72px);
   }

   .fresh_contact_inner {
      width: calc(100% - 120px);
      grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
      column-gap: 56px;
   }
}

@media screen and (min-width: 1025px) and (max-width: 1300px) {
   .fresh_format_grid,
   .fresh_control_steps {
      grid-template-columns: repeat(2, minmax(0, 1fr));
   }

   .fresh_control_steps {
      border-top: 0;
      row-gap: 42px;
   }

   .fresh_control_steps li {
      padding-top: 44px;
      border-top: 1px solid rgba(159, 197, 130, 0.2);
   }

   .fresh_control_steps li:nth-child(odd) {
      border-left: 0;
   }

   .fresh_contact_inner {
      grid-template-columns: 1fr;
      grid-template-areas:
         "label"
         "title"
         "actions";
      align-items: start;
   }

   .fresh_contact_actions {
      width: min(620px, 100%);
      margin-top: 42px;
   }
}

@media screen and (min-width: 1025px) {
   html[lang="en"] .product_section_heading>div {
      min-width: 0;
   }

   html[lang="en"] .product_section_heading h2 {
      font-size: clamp(54px, 4vw, 78px);
   }

   html[lang="en"] .product_section_heading>p {
      flex: 0 1 620px;
      max-width: 620px;
   }

   html[lang="en"] .fresh_intro_lead {
      font-size: clamp(28px, 1.85vw, 35px);
      line-height: 1.45;
   }

   html[lang="en"] .fresh_products_summary p {
      font-size: clamp(21px, 1.3vw, 26px);
   }

   html[lang="en"] .fresh_format_card h3 {
      min-height: 2.5em;
   }

   html[lang="en"] .fresh_contact_inner h2 {
      font-size: clamp(44px, 3.2vw, 58px);
   }
}

@media screen and (min-width: 1025px) and (max-width: 1499px) {
   html[lang="en"] .product_section_heading {
      display: block;
   }

   html[lang="en"] .product_section_heading>p {
      margin: 28px 0 0;
      text-align: left;
   }

   html[lang="en"] .fresh_contact_inner {
      grid-template-columns: 1fr;
      grid-template-areas:
         "label"
         "title"
         "actions";
      align-items: start;
   }

   html[lang="en"] .fresh_contact_actions {
      width: min(620px, 100%);
      margin-top: 42px;
   }
}

@media screen and (max-width: 1024px) {
   html[lang="en"] .fresh_en_desktop_br {
      display: none;
   }
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
   .product_content_inner {
      width: calc(100% - 48px);
   }

   .fresh_intro,
   .fresh_format,
   .fresh_control,
   .fresh_products {
      padding: 140px 0;
   }

   .product_section_heading {
      display: block;
      margin-bottom: 76px;
   }

   .product_section_heading h2 {
      font-size: clamp(48px, 7.8vw, 72px);
      line-height: 1.1;
   }

   .product_section_heading p {
      margin: 28px 0 0;
      max-width: 620px;
      text-align: left;
   }

   .fresh_intro_layout {
      grid-template-columns: 1fr;
      gap: 56px;
   }

   .fresh_intro_image {
      aspect-ratio: 720 / 420;
   }

   .fresh_intro_content {
      width: 100%;
      justify-self: stretch;
      padding-bottom: 0;
   }

   .fresh_intro_points li {
      grid-template-columns: 170px minmax(0, 1fr);
   }

   .fresh_format_grid,
   .fresh_control_steps {
      grid-template-columns: repeat(2, minmax(0, 1fr));
   }

   .fresh_control_steps {
      border-top: 0;
      row-gap: 40px;
   }

   .fresh_format_card {
      min-height: 300px;
   }

   .fresh_control_steps li {
      min-height: auto;
      padding-top: 42px;
      border-top: 1px solid rgba(159, 197, 130, 0.2);
   }

   .fresh_control_steps li:nth-child(odd) {
      border-left: 0;
   }

   .fresh_products_layout {
      display: none;
   }

   .fresh_products .product_section_heading {
      margin-bottom: 46px;
   }

   .fresh_products_accordion {
      display: block;
   }

   .fresh_products_accordion_summary {
      display: none;
   }

   .fresh_products_accordion_list {
      border-top: 1px solid rgba(102, 155, 69, 0.22);
   }

   .fresh_products_accordion_head {
      height: 140px;
      grid-template-columns: 60px minmax(168px, 0.48fr) minmax(0, 1fr) 40px;
      column-gap: 16px;
   }

   .fresh_products_accordion_panel_inner {
      padding: 0;
   }

   .fresh_products_accordion_item.is-active .fresh_products_accordion_panel_inner {
      margin-bottom: 40px;
   }

   .fresh_products_accordion_image {
      height: clamp(320px, 52vw, 460px);
   }

   .fresh_contact_banner {
      padding: 110px 0;
   }

   .fresh_contact_inner {
      width: calc(100% - clamp(48px, 8vw, 80px));
      display: block;
      padding: 58px 0;
   }

   .fresh_contact_inner>p {
      margin: 0;
      font-size: 16px;
      letter-spacing: 0.04em;
   }

   .fresh_contact_inner>p::after {
      width: 45px;
      margin-top: 18px;
   }

   .fresh_contact_inner h2 {
      margin-top: clamp(24px, 3.2vw, 32px);
      font-size: clamp(46px, 7vw, 62px);
      line-height: 1.18;
      letter-spacing: -0.04em;
   }

   .fresh_contact_actions {
      width: 100%;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      margin-top: 60px;
   }

   .fresh_contact_actions a {
      padding: 18px 20px;
      font-size: 16px;
   }

   .fresh_contact_actions span {
      font-size: 16px;
   }
}

@media screen and (min-width: 800px) and (max-width: 900px) and (max-height: 700px) {
   .fresh_intro_image {
      height: clamp(340px, 58dvh, 370px);
      aspect-ratio: auto;
   }

   .fresh_products_accordion_image {
      height: clamp(390px, 65dvh, 400px);
   }
}

@media screen and (min-width: 300px) and (max-width: 599px) {
   .product_content_inner,
   .fresh_contact_inner {
      width: calc(100% - 40px);
   }

   .fresh_intro,
   .fresh_format,
   .fresh_control,
   .fresh_products {
      padding: 100px 0;
   }

   .product_section_heading {
      display: block;
      margin-bottom: 44px;
   }

   .product_section_heading span,
   .fresh_contact_inner>p {
      font-size: 12px;
      letter-spacing: 0.08em;
   }

   .product_section_heading h2 {
      margin-top: 14px;
      font-size: clamp(34px, 10vw, 44px);
      line-height: 1.15;
      letter-spacing: -0.055em;
   }

   html[lang="en"] .product_section_heading h2 {
      font-size: clamp(27px, 8.5vw, 36px);
      letter-spacing: -0.04em;
   }

   .product_section_heading p {
      margin: 22px 0 0;
      font-size: 14px;
      line-height: 1.6;
      text-align: left;
   }

   html[lang="en"] .product_section_heading>p br,
   html[lang="en"] .fresh_contact_inner h2 br {
      display: none;
   }

   .fresh_intro_layout {
      grid-template-columns: 1fr;
      gap: 34px;
   }

   .fresh_intro_image {
      aspect-ratio: 335 / 230;
   }

   .fresh_intro_image::after {
      inset: 14px;
   }

   .fresh_intro_lead {
      font-size: clamp(24px, 7vw, 30px);
      line-height: 1.42;
   }

   .fresh_intro_points {
      margin-top: 34px;
   }

   .fresh_intro_points li {
      display: block;
      padding: 22px 0;
   }

   .fresh_intro_points span {
      display: block;
      margin-top: 8px;
      font-size: 16px;
   }

   .fresh_format_grid {
      display: block;
      border-top: 1px solid #d9dfd1;
      border-left: 0;
   }

   .fresh_format_card {
      min-height: auto;
      padding: 28px 0 30px;
      background: transparent;
      outline: 0;
      border-right: 0;
      border-bottom: 1px solid #d9dfd1;
   }

   .fresh_format_card h3 {
      margin: 26px 0 14px;
      font-size: 24px;
   }

   .fresh_format_card p {
      font-size: 14px;
      line-height: 1.55;
   }

   .fresh_format_tags {
      padding-top: 26px;
   }

   .fresh_format_tags em {
      height: 28px;
      padding: 0 12px;
      font-size: 12px;
   }

   .fresh_control_steps {
      display: block;
      padding-left: 24px;
      border-top: 0;
      border-left: 1px solid rgba(159, 197, 130, 0.2);
   }

   .fresh_control_steps li,
   .fresh_control_steps li:first-child {
      min-height: auto;
      padding: 0 0 34px;
      border-right: 0;
      border-left: 0;
      border-bottom: 0;
   }

   .fresh_control_steps li::before {
      left: -29px;
      top: 4px;
      width: 9px;
      height: 9px;
      box-shadow: 0 0 0 6px rgba(159, 197, 130, 0.12);
   }

   .fresh_control_steps h3 {
      margin: 34px 0 12px;
      font-size: 24px;
   }

   .fresh_control_steps p {
      font-size: 14px;
      line-height: 1.58;
   }

   .fresh_products_layout {
      display: none;
   }

   .fresh_products .product_section_heading {
      margin-bottom: 34px;
   }

   .fresh_products_accordion {
      display: block;
   }

   .fresh_products_accordion_summary {
      display: none;
   }

   .fresh_products_accordion_list {
      border-top: 1px solid rgba(102, 155, 69, 0.22);
   }

   .fresh_products_accordion_head {
      height: auto;
      min-height: auto;
      padding: 22px 0 18px;
      grid-template-columns: 42px minmax(0, 1fr) 34px;
      column-gap: 10px;
      row-gap: 16px;
      align-items: center;
   }

   .fresh_products_accordion_num {
      grid-column: 1;
      grid-row: 1;
      font-size: 24px;
   }

   .fresh_products_accordion_title {
      grid-column: 2;
      grid-row: 1;
      font-size: 22px;
      line-height: 1.35;
   }

   .fresh_products_accordion_icon {
      grid-column: 3;
      grid-row: 1;
      width: 34px;
      height: 34px;
   }

   .fresh_products_accordion_icon::before,
   .fresh_products_accordion_icon::after {
      width: 14px;
   }

   .fresh_products_accordion_desc {
      grid-column: 1 / -1;
      grid-row: 2;
      font-size: 14px;
      line-height: 1.55;
   }

   .fresh_products_accordion_panel {
      transition:
         grid-template-rows 0.58s cubic-bezier(0.22, 1, 0.36, 1),
         opacity 0.25s ease;
   }

   .fresh_products_accordion_item.is-active .fresh_products_accordion_panel_inner {
      margin-bottom: 22px;
   }

   .fresh_products_accordion_image {
      height: clamp(190px, 56vw, 260px);
   }

   .fresh_products_accordion_image::after {
      inset: 14px;
   }

   .fresh_contact_banner {
      padding: 82px 0;
   }

   .fresh_contact_inner {
      display: block;
      padding: 42px 0;
   }

   .fresh_contact_inner>p {
      margin-bottom: 18px;
   }

   .fresh_contact_inner>p::after {
      width: 32px;
      height: 1px;
      margin-top: 12px;
   }

   .fresh_contact_inner h2 {
      font-size: clamp(32px, 9vw, 40px);
      line-height: 1.25;
   }

   .fresh_contact_actions {
      grid-template-columns: 1fr;
      gap: 18px;
      margin-top: 42px;
   }

   .fresh_contact_actions a {
      padding: 18px 20px;
      font-size: 16px;
   }

   .fresh_contact_actions span {
      font-size: 16px;
   }
}
