﻿/* ===== catalog-modern.css ===== */

.category-chip {
  border: 0;
  background: transparent;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
}
.category-circle {
  overflow: hidden;
  padding: 0;
  box-shadow: 0 10px 28px rgba(8, 78, 74, 0.08);
  transition:
    transform 0.35s cubic-bezier(0.2, 0.75, 0.25, 1),
    box-shadow 0.35s ease,
    border-color 0.3s ease;
}
.category-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 0.3s ease;
}
.category-chip:hover .category-circle {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(8, 78, 74, 0.16);
}
.category-chip:hover .category-circle img {
  transform: scale(1.08);
}
.category-chip.active .category-circle {
  border: 4px solid #087f79;
  box-shadow:
    0 0 0 5px #d8f1ed,
    0 16px 36px rgba(8, 78, 74, 0.2);
  background: #087f79;
}
.category-all {
  background: linear-gradient(135deg, #087f79, #0ba39a) !important;
  color: #fff !important;
}
.product-card {
  padding: 0;
  min-height: 440px;
  overflow: hidden;
  background: #fff;
  border-color: #e1e9e6;
}
.product-card[hidden] {
  display: none;
}
.product-media {
  height: 190px;
  position: relative;
  overflow: hidden;
  background: #e8f3f1;
}
.product-media:after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(7, 38, 36, 0.28));
}
.product-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.65s cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 0.4s ease;
}
.product-card:hover .product-media > img {
  transform: scale(1.055);
  filter: saturate(1.05);
}
.media-badges {
  position: absolute;
  inset: 18px 18px auto;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.media-badges .product-icon {
  width: 48px;
  height: 48px;
  margin: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-size: 18px;
}
.media-badges .featured {
  background: #d9ff64;
  color: #17201d;
}
.product-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 25px 27px 27px;
}
.product-content p {
  min-height: 48px;
}
.product-content .card-detail-link {
  margin-top: auto;
}
.product-card.filter-in {
  animation: cardReveal 0.4s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}
@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.modern-process {
  text-align: left;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0e1c19, #102a26);
}
.modern-process:before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(217, 255, 100, 0.12);
  border-radius: 50%;
  left: -280px;
  top: -260px;
  box-shadow:
    0 0 0 70px rgba(217, 255, 100, 0.025),
    0 0 0 140px rgba(217, 255, 100, 0.018);
}
.process-intro {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 70px;
  position: relative;
}
.process-intro .eyebrow {
  grid-column: 1/-1;
  margin-bottom: -42px;
  color: #91bcb3;
}
.process-intro > p {
  color: #aabbb6;
  line-height: 1.8;
  max-width: 420px;
}
.modern-process .process-grid {
  position: relative;
  gap: 18px;
  border: 0;
}
.modern-process .process-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 0.4s cubic-bezier(0.2, 0.75, 0.25, 1),
    background 0.35s ease,
    border-color 0.35s ease;
  overflow: hidden;
}
.modern-process .process-grid article:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(217, 255, 100, 0.35);
}
.modern-process .process-grid article > b {
  left: auto;
  right: 24px;
  top: 20px;
  font-size: 52px;
  color: rgba(255, 255, 255, 0.05);
}
.modern-process .process-grid article > span {
  margin: 0 0 auto;
  transition: transform 0.4s ease;
}
.modern-process .process-grid article:hover > span {
  transform: rotate(8deg) scale(1.08);
}
.modern-process .process-grid article small {
  display: block;
  color: #91bcb3;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 9px;
  margin: 25px 0 8px;
}
.modern-process .process-grid article h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.modern-process .process-grid article p {
  max-width: 320px;
}
.modern-cta {
  min-height: 430px;
  padding: 90px clamp(24px, 8vw, 130px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
  text-align: left;
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #cfff55, #e6ff96 58%, #bdeee8);
}
.modern-cta > div {
  position: relative;
  z-index: 2;
}
.modern-cta h2 {
  margin-bottom: 20px;
}
.modern-cta p {
  max-width: 570px;
  color: #46534e;
  line-height: 1.7;
}
.modern-cta .button {
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
  background: #10211d;
  color: #fff;
  padding: 18px 26px;
}
.cta-orbit {
  position: absolute;
  right: -70px;
  top: -120px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(16, 33, 29, 0.13);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 90px;
  color: rgba(16, 33, 29, 0.07);
  animation: orbit 14s linear infinite;
}
@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}
.footer {
  background: #0b1512;
  padding-top: 84px;
}
.footer > div a:hover {
  color: #d9ff64;
  transform: translateX(3px);
}
@media (max-width: 900px) {
  .process-intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .process-intro .eyebrow {
    margin: 0;
  }
  .modern-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-media {
    height: 210px;
  }
}
@media (max-width: 600px) {
  .product-card {
    min-height: 420px;
  }
  .product-media {
    height: 190px;
  }
  .modern-process .process-grid article {
    min-height: 290px;
  }
  .modern-cta {
    padding: 70px 20px;
  }
  .category-chip {
    min-width: 125px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .product-card.filter-in,
  .cta-orbit {
    animation: none;
  }
}


/* ===== production.css ===== */

.about-section {
  padding: 120px clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
  background: #f4f8f5;
  position: relative;
  overflow: hidden;
}
.about-section:after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -260px;
  bottom: -260px;
  background: radial-gradient(circle, #d9ff64 0, rgba(217, 255, 100, 0) 70%);
  opacity: 0.45;
}
.about-visual {
  height: 680px;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 35px 80px rgba(15, 51, 45, 0.16);
}
.about-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2, 0.75, 0.25, 1);
}
.about-visual:hover > img {
  transform: scale(1.035);
}
.about-proof {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #d9ff64;
  color: #10211d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}
.about-proof strong {
  font-size: 38px;
  line-height: 1;
}
.about-proof span {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 8px;
}
.about-copy h2 {
  font-size: clamp(40px, 4.6vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
}
.about-copy h2 em {
  color: #087f79;
}
.about-copy > p {
  font-size: 17px;
  line-height: 1.8;
  color: #5f6f69;
  max-width: 650px;
}
.about-values {
  margin: 35px 0;
  display: grid;
  gap: 10px;
}
.about-values article {
  display: flex;
  gap: 17px;
  padding: 18px;
  border: 1px solid #dce6e1;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}
.about-values article:hover {
  transform: translateX(6px);
  border-color: #9bc9c1;
  background: #fff;
}
.about-values article > .icon {
  width: 24px;
  height: 24px;
  color: #087f79;
  margin-top: 3px;
}
.about-values h3 {
  font-size: 15px;
  margin: 0 0 5px;
}
.about-values p {
  font-size: 13px;
  line-height: 1.55;
  color: #71807a;
  margin: 0;
}
.about-stats {
  display: flex;
  gap: 30px;
  padding-top: 28px;
  border-top: 1px solid #d9e3de;
}
.about-stats span {
  display: flex;
  flex-direction: column;
}
.about-stats strong {
  font-size: 15px;
}
.about-stats small {
  font-size: 10px;
  color: #81908a;
  margin-top: 5px;
}
.modern-process .process-grid {
  grid-template-columns: repeat(4, 1fr);
}
.modern-process .process-grid:before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 77px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #d9ff64 15%,
    #d9ff64 85%,
    transparent
  );
  opacity: 0.25;
}
.modern-process .process-grid article {
  min-height: 350px;
}
.modern-process .process-grid article > span .icon {
  width: 27px;
  height: 27px;
}
.detail-facts {
  display: grid;
  gap: 10px;
  margin-top: 42px;
}
.detail-facts > div {
  padding: 18px 20px;
  border: 1px solid #dfe7e2;
  border-radius: 15px;
  background: #f7faf8;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.detail-facts small {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 9px;
  color: #74817c;
}
.detail-facts strong {
  font-size: 13px;
  line-height: 1.5;
}
.detail-disclaimer {
  font-size: 12px !important;
  padding: 17px 19px;
  border-left: 3px solid #087f79;
  background: #f1f8f6;
  border-radius: 0 12px 12px 0;
}
.product-media > img,
.detail-art img {
  object-position: center;
}
.brand-logo img {
  width: 225px;
}
.footer .brand-logo img {
  filter: none;
  background: #fff;
  border-radius: 12px;
  padding: 6px 10px;
}
.category-chip small {
  min-height: 18px;
}
@media (max-width: 1100px) {
  .modern-process .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .modern-process .process-grid:before {
    display: none;
  }
}
@media (max-width: 900px) {
  .about-section {
    grid-template-columns: 1fr;
  }
  .about-visual {
    height: 520px;
  }
  .about-copy {
    max-width: 720px;
  }
}
@media (max-width: 600px) {
  .about-section {
    padding: 80px 20px;
  }
  .about-visual {
    height: 420px;
  }
  .about-proof {
    width: 125px;
    height: 125px;
  }
  .about-stats {
    flex-wrap: wrap;
  }
  .modern-process .process-grid {
    grid-template-columns: 1fr;
  }
  .brand-logo img {
    width: 185px;
  }
}


