@import url("https://unpkg.com/swiper/swiper-bundle.min.css");

:root {
  --primary-color: #1e90ff;
  --accent-color: #ff4500;
  --secondary-color: #32cd32;
  --bg-light: #f0f2f5;
  --bg-dark: #272727;
  --text-color: #333333;
  --header-height: 60px;
  --transition-speed: 0.3s;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg-light);
  color: var(--text-color);
  line-height: 1.6;
}
a,
button {
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--header-height);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  z-index: 100;
  animation: slideDown 0.6s ease forwards;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 4rem 1rem;
}
.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
  transition: transform var(--transition-speed) ease;
}
.nav-list li a {
  color: #fff;
  font-weight: 500;
  position: relative;
  padding: 0.5rem;
  transition: color var(--transition-speed);
}
.nav-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width var(--transition-speed), left var(--transition-speed);
}
.nav-list li a:hover {
  color: var(--accent-color);
}
.nav-list li a:hover::after {
  width: 100%;
  left: 0;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #fff;
}

@media (max-width: 768px) {
  .nav-list {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    transform: translateY(-150%);
  }
  .nav-list.nav-open {
    transform: translateY(0);
  }
  .nav-list li a {
    color: #fff;
  }
  .nav-toggle {
    display: block;
    margin-left: 1rem;
  }
}

.hero {
  position: relative;
  background: url("../assets/images/hero.jpeg") center/cover no-repeat;
  height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  animation: fadeIn 1s ease forwards;
}
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 600px;
  padding: 0 1rem;
  animation: fadeInUp 1s ease 0.5s forwards;
  opacity: 0;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.btn {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-speed),
    box-shadow var(--transition-speed);
}
.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.products {
  padding: 4rem 0;
}
.products h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  position: relative;
}
.products h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
}

.product-slider {
  padding-bottom: 2rem;
}
.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-speed),
    box-shadow var(--transition-speed);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.product-card img {
  border-radius: 8px;
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 1rem;
}
.product-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--bg-dark);
}
.price {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 1rem;
}
.btn-sm {
  background: var(--primary-color);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  transition: background var(--transition-speed),
    transform var(--transition-speed);
}
.btn-sm:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}
.hide {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: opacity var(--transition-speed), transform var(--transition-speed);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.filter-btn {
  padding: 0.6rem 1.2rem;
  border: 2px solid var(--primary-color);
  background: #fff;
  border-radius: 8px;
  font-weight: 500;
  transition: background var(--transition-speed), color var(--transition-speed);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

.product-slider {
  position: relative;
}

.product-slider .swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.product-slider .swiper-button-prev {
  left: 10px;
}
.product-slider .swiper-button-next {
  right: 10px;
}

.hero .swiper-pagination,
.hero .swiper-button-prev,
.hero .swiper-button-next {
  display: none !important;
}

@media (max-width: 1024px) {
  .products {
    padding: 3rem 0;
  }
  .product-card {
    padding: 1.25rem;
  }
  .product-card img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .products {
    display: none;
  }
  .products h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .product-slider {
    padding-bottom: 1.5rem;
  }
  .product-card {
    padding: 1rem;
  }
  .product-card img {
    height: 200px;
  }
  .product-card h3 {
    font-size: 1rem;
  }
  .price {
    font-size: 0.95rem;
  }
  .btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
  .filter-tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .filter-btn {
    flex: 1;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .products {
    padding: 2rem 0;
  }
  .products h2 {
    font-size: 1.75rem;
  }
  .product-card img {
    height: 150px;
  }
  .product-card h3 {
    font-size: 0.95rem;
  }
  .price {
    font-size: 0.9rem;
  }
  .btn-sm {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }
  .filter-tabs {
    gap: 0.25rem;
  }
  .filter-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}

.promotions {
  padding: 4rem 0;
  background: var(--bg-light);
}
.promotions h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  position: relative;
}
.promotions h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.promo-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-speed),
    box-shadow var(--transition-speed);
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.promo-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.promo-card p {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.reviews {
  padding: 4rem 0;
}
.reviews h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  position: relative;
}
.reviews h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
}
.reviews-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.review-item {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-speed),
    box-shadow var(--transition-speed);
}
.review-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.review-item blockquote {
  font-style: italic;
  margin-bottom: 0.75rem;
}
.review-item cite {
  display: block;
  text-align: right;
  color: #666;
  font-size: 0.9rem;
}

.contact {
  padding: 4rem 0;
  background: #fff;
  text-align: center;
}
.contact h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}
.contact p {
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.site-footer {
  background: var(--bg-dark);
  color: #fff;
  padding: 2.5rem 0 1rem;
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo img {
  width: 120px;
  filter: brightness(0) invert(1);
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #ddd;
  font-size: 0.9rem;
  transition: color var(--transition-speed);
}
.footer-nav a:hover {
  color: #fff;
}
.footer-copy {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #bbb;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-nav ul {
    justify-content: center;
    gap: 0.75rem;
  }
  .footer-logo img {
    margin-bottom: 0.5rem;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .product-slider {
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .products h2,
  .promotions h2,
  .reviews h2 {
    font-size: 2rem;
  }
  .hero {
    height: calc(70vh - var(--header-height));
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .nav-list {
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .filter-tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

.large-contact {
  padding: 4rem 2rem;
  background: #fff;
}
.large-contact h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}
.large-contact h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--accent-color);
}
.large-contact .contact-info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.large-contact .contact-info__item {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-speed),
    box-shadow var(--transition-speed);
}
.large-contact .contact-info__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.large-contact .contact-info__item h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}
.large-contact .contact-info__item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}
.large-contact .contact-info__item a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-speed);
}
.large-contact .contact-info__item a:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .large-contact {
    padding: 3rem 1rem;
  }
  .large-contact h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .large-contact .contact-info__grid {
    gap: 1.5rem;
  }
  .large-contact .contact-info__item {
    padding: 1.5rem;
  }
  .large-contact .contact-info__item h3 {
    font-size: 1.1rem;
  }
  .large-contact .contact-info__item p {
    font-size: 0.95rem;
  }
}

.interactive-reviews {
  padding: 4rem 0;
  background: var(--bg-light);
}
.interactive-reviews h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  position: relative;
}
.interactive-reviews h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
}

.reviews-slider {
  position: relative;
  padding-bottom: 3rem;
}

.review-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform var(--transition-speed),
    box-shadow var(--transition-speed);
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.review-card blockquote {
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.5;
  color: var(--text-color);
}
.review-card cite {
  display: block;
  color: var(--accent-color);
  font-weight: 600;
}

.reviews-slider .swiper-pagination {
  bottom: 0 !important;
}
.reviews-slider .swiper-button-prev,
.reviews-slider .swiper-button-next {
  color: #fff;
  background: var(--primary-color);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  text-shadow: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.reviews-slider .swiper-button-prev:hover,
.reviews-slider .swiper-button-next:hover {
  background: var(--accent-color);
}

@media (max-width: 1024px) {
  .interactive-reviews {
    padding: 3rem 0;
  }
  .interactive-reviews h2 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .interactive-reviews {
    padding: 2.5rem 0;
  }
  .review-card {
    padding: 1.5rem;
  }
}

.product-detail {
  padding: 4rem 0;
  background: #fff;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.detail-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.8s ease forwards;
}
.detail-content {
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
  transform: translateY(20px);
}
.detail-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
}
.detail-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
}
.detail-description {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--text-color);
}
.detail-specs {
  list-style: none;
  margin-bottom: 2rem;
  padding-left: 0;
}
.detail-specs li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
.detail-specs li strong {
  color: var(--secondary-color);
}
.detail-btn {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}
.detail-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .product-detail {
    padding: 3rem 1rem;
  }
  .detail-content h2 {
    font-size: 1.75rem;
  }
  .detail-specs li {
    font-size: 0.95rem;
  }
}

.faq {
  padding: 4rem 2rem;
  background: #fff;
}
.faq h2 {
  text-align: center;
  font-size: 2.25rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  position: relative;
}
.faq h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
}
.faq-item {
  margin-bottom: 1.5rem;
  background: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.faq-question {
  padding: 1rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: background var(--transition-speed);
}
.faq-question:hover {
  background: rgba(0, 0, 0, 0.03);
}
.faq-question::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  transition: transform var(--transition-speed);
}
.faq-question.active::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  background: #f9f9f9;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer.open {
  max-height: 500px;
  padding: 1rem 1.5rem;
}

@media (max-width: 768px) {
  .faq {
    padding: 3rem 1rem;
  }
  .faq h2 {
    font-size: 2rem;
  }
}

.promo-detail {
  padding: 4rem 0;
  background: #fff;
}
.promo-detail .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.promo-detail-hero {
  text-align: center;
}
.promo-detail-hero__img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  animation: fadeIn 0.8s ease forwards;
}
.promo-detail-hero__title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}
.promo-detail-hero__desc {
  font-size: 1.125rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}
.promo-detail-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
}
.promo-detail-info h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
}
.promo-detail-info ul {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}
.promo-detail-info ul li {
  position: relative;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
}
.promo-detail-info ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}
.promo-detail .detail-btn {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}
.promo-detail .detail-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .promo-detail .container {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
@media (max-width: 768px) {
  .promo-detail {
    padding: 3rem 1rem;
  }
  .promo-detail-hero__title {
    font-size: 2rem;
  }
  .promo-detail-info h3 {
    font-size: 1.75rem;
  }
}

.about-us {
  padding: 4rem 2rem;
  background: #fff;
}
.about-us h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
}
.about-us h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
}
.about-us p {
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--text-color);
  line-height: 1.7;
  text-align: center;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}
.about-item {
  background: var(--bg-light);
  padding: 1.75rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-speed),
    box-shadow var(--transition-speed);
}
.about-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.about-item h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}
.about-item p,
.about-item ul {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
}
.about-item ul {
  list-style: none;
  padding-left: 1.25rem;
}
.about-item ul li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
}
.about-item ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}
.about-btn {
  display: block;
  width: max-content;
  margin: 0 auto;
  background: var(--accent-color);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: transform var(--transition-speed),
    box-shadow var(--transition-speed);
}
.about-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .about-us {
    padding: 3rem 1.5rem;
  }
}
@media (max-width: 768px) {
  .about-us {
    padding: 2.5rem 1rem;
  }
  .about-us h2 {
    font-size: 2rem;
  }
  .about-grid {
    gap: 1.5rem;
  }
}

.title_background {
  background: var(--primary-color);
  padding: 4rem 0;
}
.title_background .container {
  text-align: center;
  padding: 0 1rem;
}
.title_background .title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.text_background {
  background: var(--bg-light);
  padding: 3rem 0;
}
.text_background .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
.text_background .text {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.75;
  white-space: pre-wrap;
  margin: 0;
}

@media (max-width: 768px) {
  .title_background {
    padding: 3rem 0;
  }
  .title_background .title {
    font-size: 2rem;
  }
  .text_background {
    padding: 2rem 0;
  }
  .text_background .text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

.animated-products {
  padding: 4rem 2rem;
  background: #fff;
}
.animated-products h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  position: relative;
}
.animated-products h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.6rem 1.2rem;
  border: 2px solid var(--primary-color);
  background: #fff;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

.products-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.product-card.show {
  opacity: 1;
  transform: translateY(0);
}
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.product-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}
.price {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 1rem;
}
.btn-sm {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  transition: background 0.3s, transform 0.3s;
}
.btn-sm:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .animated-products {
    padding: 3rem 1.5rem;
  }
}
@media (max-width: 768px) {
  .animated-products {
    padding: 2rem 1rem;
  }
  .products-grid {
    gap: 1rem;
  }
  .product-card {
    padding: 1rem;
  }
  .product-card img {
    height: 150px;
  }
}
