@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --primary-red: #cc0000;
  --dark-red: #8b0000;
  --gold: #c9a84c;
  --light-gold: #f5e6c3;
  --white: #ffffff;
  --light-pink: #fff5f5;
  --text-dark: #333333;
  --text-grey: #666666;
  --muted-red: #aa0000;
  --success-green: #25d366;
  --border: #f0dede;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  animation: pageFade 0.7s ease;
}

@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section {
  padding: 82px 0;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.3vw, 2.6rem);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--text-grey);
  text-align: center;
  margin-bottom: 35px;
}

.title-decoration {
  width: 110px;
  height: 3px;
  margin: 0 auto 35px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.pill-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 13px 26px;
  font-weight: 600;
  transition: all 0.28s ease;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transition: 0.55s ease;
}

.btn:hover::after {
  left: 120%;
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary-red), var(--dark-red));
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(204, 0, 0, 0.26);
}

.btn-outline-red {
  border-color: var(--primary-red);
  color: var(--primary-red);
  background: var(--white);
}

.btn-outline-red:hover {
  background: var(--primary-red);
  color: var(--white);
}

.btn-whatsapp {
  background: var(--white);
  border-color: var(--success-green);
  color: var(--success-green);
}

.btn-whatsapp:hover {
  background: #edfff5;
}

.btn-green {
  background: linear-gradient(120deg, #25d366, #128c7e);
  color: var(--white);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.22);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
}

/* =========================
   TOP BAR
   ========================= */

.top-bar {
  background: var(--primary-red);
  color: var(--white);
  font-size: 12px;
  padding: 3px 0;
}

.top-bar-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 5px 20px;
  width: 100%;
}

.top-bar-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.top-bar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.25s ease;
}

.social-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.social-icon:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  color: var(--gold);
}

.main-header {
  background: var(--white);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 15px rgba(204, 0, 0, 0.1);
}

.main-header-content {
  min-height: 65px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
}

.logo-wrap img {
  width: auto;
  height: 55px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #eecfcf;
  background: var(--white);
  color: var(--primary-red);
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
  border-radius: 2px;
}

.nav {
  justify-self: center;
}

.nav-list {
  display: flex;
  gap: 28px;
}

.nav-link {
  position: relative;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--text-dark);
  padding: 8px 0;
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-red);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gold);
}

.spacer {
  justify-self: end;
}

.header-right-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.header-whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.header-whatsapp-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.header-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  color: #888888;
  letter-spacing: 0.5px;
}

.header-tagline span {
  color: #888888;
  font-size: 11px;
}

.hero {
  margin-top: 0;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.slides {
  display: flex;
  transition: transform 0.7s ease;
}

.slide {
  min-width: 100%;
  min-height: 600px;
  display: grid;
  grid-template-columns: 55% 45%;
}

.hero-tag {
  background: var(--gold);
  color: #333333;
  font-size: 11px;
  letter-spacing: 3px;
  padding: 6px 20px;
  border-radius: 20px;
}

.hero-line {
  width: 100px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin: 0 auto 22px;
  animation: lineGrow 0.9s ease forwards;
}

@keyframes lineGrow {
  from {
    width: 10px;
    opacity: 0;
  }
  to {
    width: 80px;
    opacity: 1;
  }
}

.slide-magazine {
  color: var(--text-dark);
}

.slide-left {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 60px;
  text-align: center;
}

.slide-right {
  background: linear-gradient(135deg, #cc0000, #8b0000);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.slide-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 14px);
  z-index: 1;
}

.hero-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(6rem, 16vw, 12.5rem);
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  opacity: 0.06;
  z-index: 2;
  pointer-events: none;
  color: var(--white);
}

.hero-image-wrap {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  position: relative;
  z-index: 3;
}

.hero-image-wrap img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.gold-ring {
  position: absolute;
  width: 340px;
  height: 340px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 2px dashed var(--gold);
  border-radius: 50%;
  animation: spinRing 20s linear infinite;
}

@keyframes spinRing {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero-info-card {
  position: absolute;
  left: 11%;
  bottom: 16%;
  z-index: 4;
  background: var(--white);
  border-left: 3px solid var(--primary-red);
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  color: #444444;
  font-size: 13px;
  font-weight: 600;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin: 0 auto;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 7vw, 4rem);
  line-height: 1.2;
  color: var(--primary-red);
  margin: 18px 0 16px;
}

.hero-content h1 span {
  color: #222222;
  font-weight: 400;
}

.hero-content p {
  color: #555555;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 4px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
}

.btn-hero-primary {
  background: var(--primary-red);
  color: var(--white);
}

.btn-hero-gold {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.slide .hero-tag,
.slide .hero-content h1,
.slide .hero-content p,
.slide .hero-buttons .btn {
  opacity: 0;
  transform: translateY(24px);
}

.slide.is-active .hero-tag {
  animation: fadeInDown 0.5s ease 0.2s forwards;
}

.slide.is-active .hero-content h1 {
  animation: fadeInUp 0.6s ease 0.3s forwards;
}

.slide.is-active .hero-content p {
  animation: fadeInUp 0.6s ease 0.5s forwards;
}

.slide.is-active .hero-buttons .btn {
  animation: fadeInUp 0.6s ease 0.7s forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quality-card h3 {
  color: #222222;
}

.slider-controls {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-red);
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: grid;
  place-items: center;
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-red);
}

.slider-arrow-left {
  left: 14px;
}

.slider-arrow-right {
  right: 14px;
}

.slider-arrow:hover {
  background: var(--white);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  pointer-events: auto;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.slider-dot.active {
  width: 30px;
  height: 10px;
  border-radius: 5px;
  background: var(--white);
}

.marquee-strip {
  background: var(--primary-red);
  color: var(--white);
  height: 44px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 34px;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  font-size: 13px;
  animation: marquee 24s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

.stats-section {
  border-top: 3px solid var(--primary-red);
  background: var(--white);
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 65%;
  background: var(--gold);
  position: absolute;
  right: -9px;
  top: 18%;
}

.stat-number {
  font-size: clamp(2.3rem, 4vw, 3rem);
  color: var(--primary-red);
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.stat-label {
  color: var(--text-grey);
  font-size: 14px;
}

.about-preview {
  background: var(--light-pink);
}

.about-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}

.about-card-visual {
  background: linear-gradient(145deg, var(--primary-red), var(--dark-red));
  border-radius: 20px;
  padding: 40px 34px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-frame {
  border: 2px solid rgba(201, 168, 76, 0.8);
  border-radius: 14px;
  padding: 24px;
  min-height: 100%;
  display: grid;
  place-items: center;
}

.about-frame img {
  width: 220px;
  object-fit: contain;
}

.about-badge {
  position: absolute;
  bottom: 22px;
  right: 20px;
  background: var(--gold);
  color: var(--text-dark);
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.about-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  margin: 16px 0;
  line-height: 1.25;
}

.about-content p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.check-list li {
  margin-bottom: 10px;
  color: #5f5f5f;
  font-weight: 500;
}

.check-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--primary-red);
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card,
.product-card,
.testimonial-card,
.value-card,
.info-card {
  background: var(--white);
  border-radius: 16px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-card {
  border-top: 3px solid var(--primary-red);
  padding: 25px 18px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(176, 84, 84, 0.09);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: #ffecec;
  color: var(--primary-red);
  display: grid;
  place-items: center;
  font-size: 22px;
}

.feature-card:hover,
.product-card:hover,
.testimonial-card:hover,
.value-card:hover,
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 32px rgba(204, 0, 0, 0.14);
}

.feature-card:hover {
  border-color: var(--gold);
}

.featured-products {
  background: var(--light-pink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-grid.products-page-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  overflow: hidden;
  border: 1px solid #f2dede;
}

.product-thumb {
  background: #ffffff;
  height: 280px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.category-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: var(--text-dark);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.ribbon {
  position: absolute;
  top: 12px;
  right: -27px;
  transform: rotate(38deg);
  background: #d3af52;
  color: #593e06;
  padding: 4px 30px;
  font-size: 10px;
  font-weight: 700;
}

.product-content {
  padding: 17px;
}

.product-content h3 {
  color: var(--primary-red);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.product-content p {
  color: #575757;
  font-size: 14px;
  margin-bottom: 14px;
}

.link-red {
  color: var(--primary-red);
  font-weight: 600;
}

.center-btn {
  text-align: center;
  margin-top: 30px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  border-left: 4px solid var(--gold);
  box-shadow: 0 8px 20px rgba(138, 53, 53, 0.09);
  padding: 24px;
  position: relative;
}

.quote-mark {
  color: var(--primary-red);
  font-size: 42px;
  line-height: 1;
}

.testimonial-stars {
  color: #d09f28;
  margin: 8px 0;
}

.testimonial-card p {
  color: #595959;
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial-card h4 {
  color: var(--primary-red);
}

.testimonial-city {
  color: #8b8b8b;
  font-size: 13px;
}

.trust-banner {
  background: linear-gradient(120deg, var(--primary-red), var(--dark-red));
  color: var(--white);
  text-align: center;
  padding: 36px 15px;
}

.trust-banner h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.trust-banner p {
  margin-top: 8px;
  color: var(--light-gold);
}

.page-banner {
  padding: 100px 0 82px;
  background: linear-gradient(140deg, var(--primary-red), #d45757);
  color: var(--white);
  text-align: center;
}

.page-banner h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 5vw, 3rem);
  margin-bottom: 8px;
}

.breadcrumb {
  color: #ffe9e9;
}

.story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.story-text {
  border-left: 5px solid var(--primary-red);
  padding-left: 18px;
  color: #525252;
}

.story-box {
  border: 2px solid var(--gold);
  border-radius: 14px;
  padding: 24px;
  background: #fffdf8;
}

.story-box li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #e8d4a5;
  padding: 10px 0;
  color: #555555;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.mission-card,
.vision-card {
  border-radius: 16px;
  padding: 26px;
}

.mission-card {
  background: linear-gradient(120deg, var(--primary-red), var(--dark-red));
  color: var(--white);
}

.vision-card {
  border: 2px solid var(--gold);
  color: var(--primary-red);
  background: var(--white);
}

.about-stats {
  background: linear-gradient(120deg, var(--primary-red), var(--dark-red));
  color: var(--white);
}

.about-stats .stat-number {
  color: var(--white);
}

.about-stats .stat-label {
  color: var(--light-gold);
}

.timeline {
  position: relative;
  margin-top: 12px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--gold);
}

.timeline-item {
  width: 50%;
  position: relative;
  padding: 14px 28px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-content {
  background: var(--white);
  border: 1px solid #f2dddd;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 7px 18px rgba(171, 102, 102, 0.12);
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary-red);
  border: 2px solid var(--gold);
  position: absolute;
  top: 24px;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -7px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -7px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  border-top: 3px solid var(--gold);
  padding: 22px;
  box-shadow: 0 7px 17px rgba(182, 113, 113, 0.1);
}

.value-card h3 {
  color: var(--primary-red);
}

.value-card p {
  color: #5d5d5d;
  margin-top: 6px;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quality-card {
  background: var(--white);
  border-radius: 16px;
  border-top: 3px solid var(--gold);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(204, 0, 0, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  text-align: center;
}

.quality-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 32px rgba(204, 0, 0, 0.14);
}

.quality-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: var(--primary-red);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 26px;
}

.quality-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #222222;
  margin-bottom: 10px;
}

.quality-card p {
  font-size: 15px;
  color: #555555;
  line-height: 1.75;
}

.quality-banner {
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  color: var(--white);
  text-align: center;
  padding: 44px 0;
}

.quality-banner h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3.8vw, 2.2rem);
}

.quality-banner p {
  margin-top: 10px;
  color: var(--light-gold);
  font-size: 15px;
}

.search-wrap {
  position: relative;
  max-width: 520px;
  margin: 0 auto 20px;
}

.search-wrap input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  border-radius: 999px;
  border: 1px solid #f1cccc;
  outline: none;
  font-size: 15px;
}

.search-wrap .search-icon {
  position: absolute;
  left: 16px;
  top: 11px;
  color: var(--primary-red);
  font-size: 20px;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--primary-red);
  color: var(--primary-red);
  background: var(--white);
  font-weight: 500;
  cursor: pointer;
}

.filter-btn.active {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(120deg, var(--primary-red), var(--dark-red));
}

.product-actions {
  display: flex;
  gap: 10px;
}

.product-actions .btn {
  font-size: 13px;
  padding: 10px 12px;
  flex: 1;
}

.product-actions .btn-outline-red {
  padding-inline: 8px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(73, 28, 28, 0.72);
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 1300;
  padding: 20px 0;
  overflow-y: auto;
}

.modal-overlay.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal {
  width: min(700px, 100%);
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
}

.modal-header {
  background: var(--primary-red);
  color: var(--white);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-close {
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}

.modal-body {
  padding: 22px;
  max-height: 80vh;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.modal-content,
.product-modal .modal-inner,
.modal-box {
  max-height: 80vh;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.modal-content::-webkit-scrollbar,
.modal-body::-webkit-scrollbar,
.modal-box::-webkit-scrollbar {
  width: 5px;
}

.modal-content::-webkit-scrollbar-track {
  background: #fff5f5;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #cc0000;
  border-radius: 10px;
}

.modal-overlay,
.modal-backdrop {
  overflow-y: auto;
  align-items: flex-start;
  padding: 20px 0;
}

.modal-emoji {
  font-size: 64px;
  text-align: center;
}

.modal-title {
  color: var(--primary-red);
  text-align: center;
  font-size: 1.6rem;
  margin: 8px 0;
}

.gold-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 15px 0;
}

.features-list li::before {
  content: "✓";
  color: var(--primary-red);
  margin-right: 8px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 18px;
}

.spec-table td {
  border: 1px solid #f0dddd;
  padding: 9px 11px;
  font-size: 14px;
}

.contact-social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.social-connect-card {
  border-radius: 14px;
  color: var(--white);
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-connect-card svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.social-connect-card small {
  opacity: 0.95;
}

.whatsapp-bg {
  background: linear-gradient(120deg, #25d366, #128c7e);
}

.insta-bg {
  background: linear-gradient(120deg, #833ab4, #e1306c);
}

.call-bg {
  background: linear-gradient(120deg, var(--primary-red), var(--dark-red));
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-card {
  border: 1px solid #f2dede;
  padding: 18px;
}

.contact-form {
  border: 1px solid #f2dede;
  border-radius: 16px;
  padding: 22px;
  background: var(--white);
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #5a5a5a;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #efd8d8;
  border-radius: 10px;
  padding: 11px 12px;
  margin-bottom: 14px;
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.success-message {
  margin-top: 10px;
  color: #147c3e;
  font-weight: 600;
  display: none;
}

.company-panel {
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 24px;
  background: #fffdf9;
}

.company-panel-logo {
  width: 180px;
  margin: 0 auto 10px;
}

.company-panel h3 {
  text-align: center;
  color: var(--primary-red);
  margin-bottom: 12px;
}

.company-panel li {
  margin-bottom: 10px;
  color: #565656;
}

.company-socials {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.map-wrap iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 12px;
}

.site-footer {
  background: #8b0000;
  color: var(--white);
  border-top: 3px solid var(--gold);
  margin-top: 0;
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 16px);
  z-index: 1;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 46px;
  position: relative;
  z-index: 2;
}

.footer-logo {
  width: auto;
  height: 90px;
  object-fit: contain;
  margin-bottom: 10px;
}

.footer-logo-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 10px;
}

.footer-tagline {
  color: var(--white);
  font-size: 14px;
  font-style: italic;
  line-height: 1.8;
}

.footer-tagline-alt {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
}

.footer-col {
  position: relative;
}

.footer-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: -23px;
  width: 1px;
  height: calc(100% - 16px);
  background: rgba(201, 168, 76, 0.45);
}

.footer-heading {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 7px;
}

.footer-heading-line {
  width: 30px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 14px;
}

.footer-links li {
  margin-bottom: 0;
}

.footer-links a {
  font-size: 14px;
  color: var(--white);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.footer-links li:last-child a {
  border-bottom: none;
}

.footer-contact li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.6;
}

.contact-icon {
  color: var(--gold);
  font-size: 16px;
  line-height: 1.2;
  min-width: 18px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 16px 0;
  font-size: 13px;
  position: relative;
  z-index: 2;
}

.footer-bottom-inner {
  text-align: center;
}

.footer-bottom-inner p {
  color: var(--white);
}

.footer-contact a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-divider {
  border-top: 1px solid rgba(201, 168, 76, 0.4);
  margin-top: 40px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.floating-whatsapp,
.scroll-top {
  position: fixed;
  z-index: 1100;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(80, 30, 30, 0.26);
}

.floating-whatsapp {
  left: 18px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: pulse 1.8s ease infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.wa-tooltip {
  position: absolute;
  left: 68px;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--white);
  background: #1f8f4d;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.floating-whatsapp:hover .wa-tooltip {
  opacity: 1;
}

.scroll-top {
  right: 24px;
  bottom: 100px;
  width: 50px;
  height: 50px;
  background: var(--primary-red);
  color: var(--white);
  border: none;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.28s ease;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.chatbot-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  font-family: "Poppins", sans-serif;
}

.chat-toggle-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cc0000, #8b0000);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(204, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease;
  animation: chatPulse 2s infinite;
}

.chat-toggle-btn:hover {
  transform: scale(1.1);
}

@keyframes chatPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(204, 0, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(204, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(204, 0, 0, 0);
  }
}

.chat-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}

.chat-box {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 340px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #f0d0d0;
  max-height: 480px;
}

.chat-box.open {
  display: flex;
}

.chat-header {
  background: linear-gradient(135deg, #cc0000, #8b0000);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-title {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  margin: 0;
}

.chat-status {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  margin: 0;
}

.chat-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 300px;
  background: #fafafa;
}

.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.6;
}

.bot-msg {
  background: var(--white);
  border: 1px solid #f0d0d0;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  color: #333333;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.bot-msg p {
  margin: 2px 0;
}

.user-msg {
  background: linear-gradient(135deg, #cc0000, #8b0000);
  color: var(--white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.typing-msg {
  background: var(--white);
  border: 1px solid #f0d0d0;
  align-self: flex-start;
  color: #888888;
  font-style: italic;
  font-size: 12px;
}

.chat-input-area {
  padding: 12px;
  display: flex;
  gap: 8px;
  border-top: 1px solid #f0e0e0;
  background: var(--white);
}

.chat-input-area input {
  flex: 1;
  border: 1px solid #e0c0c0;
  border-radius: 24px;
  padding: 10px 16px;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  outline: none;
  color: #333333;
}

.chat-input-area input:focus {
  border-color: #cc0000;
}

.chat-input-area button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cc0000, #8b0000);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .slide {
    grid-template-columns: 1fr;
    min-height: 560px;
  }

  .slide-left {
    padding: 50px 28px 24px;
  }

  .slide-right {
    min-height: 360px;
  }

  .hero-info-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: 8%;
    text-align: center;
    white-space: nowrap;
  }

  .features-grid,
  .product-grid,
  .product-grid.products-page-grid,
  .testimonials-grid,
  .quality-grid,
  .values-grid,
  .contact-social-grid,
  .info-cards-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-col:nth-child(2)::after {
    display: none;
  }

  .about-preview-grid,
  .story-grid,
  .contact-grid,
  .mission-vision {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 8px;
    transform: none;
  }

  .timeline-item,
  .timeline-item:nth-child(even),
  .timeline-item:nth-child(odd) {
    width: 100%;
    left: 0;
    text-align: left;
    padding-left: 30px;
    padding-right: 0;
  }

  .timeline-item .timeline-dot,
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 2px;
    right: auto;
  }
}

@media (max-width: 860px) {
  .main-header-content {
    display: flex;
    justify-content: space-between;
    position: relative;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    border: 1px solid #f0dada;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 16px 24px rgba(166, 87, 87, 0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav.open {
    max-height: 340px;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    display: block;
    border-bottom: 1px solid #f5e8e8;
    padding: 14px;
    letter-spacing: 0.4px;
  }

  .nav-link.active::after {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  /* TOP BAR - MOBILE */
  .top-bar-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 8px 15px;
  }

  .top-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .top-bar-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
  }

  .header-right-info {
    display: none;
  }
}

@media (max-width: 640px) {
  .features-grid,
  .product-grid,
  .product-grid.products-page-grid,
  .testimonials-grid,
  .quality-grid,
  .values-grid,
  .contact-social-grid,
  .info-cards-grid,
  .footer-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-col::after {
    display: none;
  }

  .stat-item::after {
    display: none;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-image-wrap,
  .hero-image-wrap img {
    width: 250px;
    height: 250px;
  }

  .gold-ring {
    width: 270px;
    height: 270px;
  }

  .hero-watermark {
    font-size: clamp(4.2rem, 22vw, 7rem);
  }

  .slider-arrow {
    width: 44px;
    height: 44px;
  }

  .product-actions {
    flex-direction: column;
  }

  .footer-bottom-inner {
    text-align: center;
  }
}