@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400&family=Dancing+Script:wght@600;700&display=swap');

:root {
  --crimson: #6B1111;
  --crimson-dark: #4A0C0C;
  --orange: #D96A1A;
  --orange-light: #E8812D;
  --cream: #FDF5EB;
  --dark: #161616;
  --dark-2: #1E1E1E;
  --text-light: #f5f0eb;
  --text-muted: #bfb8b0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  background: #fff;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

#main-header .nav-links {
  grid-column: 2;
}

#main-header .hamburger {
  grid-column: 3;
  justify-self: end;
}

#main-header.scrolled {
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
}

.logo-wrap {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

.header-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo-img {
  height: 125px;
  width: auto;
  object-fit: contain;
  display: block;
  max-width: 100%;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-btn {
  background: var(--orange);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600 !important;
  transition: background 0.3s !important;
}

.nav-btn:hover {
  background: var(--orange-light) !important;
}

.nav-btn::after {
  display: none !important;
}

.hero-section {
  position: relative;
  background: var(--crimson);
  overflow: hidden;
  min-height: 100vh;
}

.hero-swiper {
  width: 100%;
  height: 100vh;
  min-height: 600px;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 5% 0 7%;
  overflow: hidden;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 0 0 50%;
  max-width: 50%;
  padding-top: 60px;
}

.hero-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 26px;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title span {
  color: var(--orange);
}

.hero-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--crimson);
  padding: 13px 32px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.hero-btn:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(217, 106, 26, 0.4);
}

.hero-btn .btn-arrow {
  font-size: 18px;
  transition: transform 0.3s;
}

.hero-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.hero-badge {
  position: absolute;
  left: 50%;
  top: 25%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: badgeTextRotate 14s linear infinite;
}

.badge-icon-center {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
}

.badge-icon-center i {
  font-size: 40px;
  color: var(--orange);
}

@keyframes badgeTextRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-swiper .swiper-pagination {
  bottom: 32px;
}

.hero-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  opacity: 1;
  transition: all 0.3s;
}

.hero-swiper .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 4px;
  background: var(--orange);
}

.products-section {
  background: var(--orange);
  padding: 80px 5% 80px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.products-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  margin-bottom: 50px;
}

.product-swiper {
  padding: 20px 10px 50px !important;
  overflow: visible !important;
}

.product-swiper .swiper-wrapper {
  align-items: stretch;
}

.product-card {
  background: #fff;
  border-radius: 0;
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.product-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.product-flavor {
  font-size: 16px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.product-name {
  font-size: 14px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.25;
  position: relative;
  z-index: 2;
}

.product-circle {
  position: absolute;
  width: 115%;
  aspect-ratio: 1;
  border-radius: 50%;
  bottom: -20%;
  right: -25%;
  z-index: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card:hover .product-circle {
  width: 125%;
}

.product-image-wrap {
  position: absolute;
  z-index: 1;
  width: 105%;
  height: 88%;
  bottom: -6%;
  right: -8%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.22));
  transform: rotate(-30deg);
  transition: transform 0.3s ease;
}

.product-card:hover .product-image-wrap img {
  transform: rotate(-30deg) scale(1.1);
}

.products-cta-wrap {
  display: flex;
  justify-content: center;
  padding: 10px 0 50px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #fff;
  color: var(--orange);
  background: #fff;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  background: #fff;
  color: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-pagination {
  position: static !important;
  margin-top: 24px;
}

.product-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: rgba(255,255,255,0.5);
  opacity: 1;
  transition: all 0.3s;
}

.product-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
  background: #fff;
}

.features-bar {
  padding: 28px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-align: center;
  padding: 0 18px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s;
}

.feature-item:hover .feature-icon {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.8);
  transform: scale(1.1);
}

.feature-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0.92;
}

.about-section {
  background: #fff;
  padding: 160px 7% 100px;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 100%);
  margin-top: -60px;
  z-index: 2;
}

.about-left {
  flex: 0 0 48%;
  max-width: 48%;
}

.about-section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: block;
}

.about-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.about-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 24px;
  color: var(--orange);
  margin-bottom: 24px;
  display: block;
}

.about-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 28px;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 38px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.about-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--orange);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='12' height='12'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 14px 34px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(107, 17, 17, 0.3);
}

.about-btn:hover {
  background: var(--orange-light);
  box-shadow: 0 8px 30px rgba(217,106,26,0.4);
  transform: translateY(-2px) !important;
}

.about-right {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.about-blob-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rotating-blob {
  position: absolute;
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, rgba(217,106,26,0.2) 0%, rgba(107,17,17,0.3) 100%);
  border: 2px solid rgba(217,106,26,0.2);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: blobMorph 10s ease-in-out infinite, blobRotate 18s linear infinite;
  z-index: 0;
}

@keyframes blobMorph {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
  50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
  75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

@keyframes blobRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.rotating-blob-2 {
  position: absolute;
  width: 340px;
  height: 340px;
  background: rgba(217,106,26,0.2);
  border: 1px dashed rgba(217,106,26,0.3);
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  animation: blobMorph2 14s ease-in-out infinite, blobRotate2 24s linear infinite;
  z-index: 0;
}

@keyframes blobMorph2 {
  0%, 100% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
  33% { border-radius: 42% 58% 55% 45% / 37% 63% 37% 63%; }
  66% { border-radius: 60% 40% 50% 50% / 50% 40% 60% 50%; }
}

@keyframes blobRotate2 {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.about-dot-accent {
  position: absolute;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.6;
}

.about-dot-1 {
  width: 14px;
  height: 14px;
  top: 10%;
  right: 8%;
  animation: dotFloat 4s ease-in-out infinite;
}

.about-dot-2 {
  width: 8px;
  height: 8px;
  bottom: 15%;
  left: 5%;
  animation: dotFloat 5s ease-in-out infinite 1s;
}

.about-dot-3 {
  width: 20px;
  height: 20px;
  top: 20%;
  left: 2%;
  opacity: 0.3;
  background: var(--crimson);
  animation: dotFloat 6s ease-in-out infinite 0.5s;
}

@keyframes dotFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.1); }
}

.about-image {
  position: relative;
  z-index: 2;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

footer {
  background: rgb(0,0,0);
  color: #fff;
  clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 100%);
  margin-top: -60px;
  position: relative;
  z-index: 3;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 5% 50px;
  gap: 40px;
  max-width: 90%;
  margin: 0 auto;
}


.footer-tagline {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  max-width: 720px;
  text-align: right;
}

.footer-tagline span {
  color: var(--orange);
}

.footer-middle {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 5%;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  max-width: 90%;
  margin: 0 auto;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-3px);
}

.footer-links-grid {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-links-col h4,
.footer-links-col h4 a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  text-decoration: none;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-links-col ul li a:hover {
  color: #fff;
}

.footer-links-col .contact-info {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  line-height: 1.8;
}

.footer-bottom {
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 44px;
  }

  .about-section {
    flex-direction: column;
    padding: 120px 5% 70px;
  }

  .about-left, .about-right {
    flex: 1;
    max-width: 100%;
  }

  .about-right {
    min-height: 350px;
  }

  .rotating-blob {
    width: 300px;
    height: 300px;
  }

  .about-image {
    width: 280px;
    height: 280px;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-tagline {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-section,
  footer {
    clip-path: polygon(0 0, 100% 28px, 100% 100%, 0 100%);
    margin-top: -28px;
  }

  .products-section {
    padding-top: 60px;
  }

  .product-card {
    height: 300px;
  }

  .product-circle {
    width: 240px;
    height: 240px;
    bottom: -55px;
    right: -52px;
  }

  .product-card:hover .product-circle {
    width: 260px;
    height: 260px;
  }

  .product-image-wrap {
    width: 215px;
    height: 255px;
    bottom: -28px;
    right: -14px;
  }

  .about-section {
    padding-top: 110px;
  }

  .footer-top {
    padding-top: 80px;
  }

  #main-header {
    padding: 0 4%;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .hero-badge {
    left: 75%;
    top: 30%;
    width: 130px;
    height: 130px;
  }

  .badge-icon-center {
    width: 72px;
    height: 72px;
  }

  .badge-icon-center i {
    font-size: 32px;
  }

  .features-bar {
    gap: 12px;
    padding: 20px 4%;
  }

  .feature-label {
    font-size: 9px;
  }

  .footer-middle {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links-grid {
    gap: 30px;
    justify-content: center;
  }
}

@media (max-width: 539px) {
  .product-card {
    height: 280px;
  }

  .product-circle {
    width: 220px;
    height: 220px;
    bottom: -55px;
    right: -50px;
  }

  .product-card:hover .product-circle {
    width: 240px;
    height: 240px;
  }

  .product-image-wrap {
    width: 200px;
    height: 230px;
    bottom: -45px;
    right: -22px;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(20, 6, 6, 0.98);
  backdrop-filter: blur(12px);
  display: none;
  flex-direction: column;
  padding: 24px 7%;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.product-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  color: var(--crimson);
  font-size: 16px;
  z-index: 10;
  transition: all 0.3s;
}

.product-nav-btn:hover {
  background: var(--crimson);
  color: #fff;
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

.product-nav-prev {
  left: -22px;
}

.product-nav-next {
  right: -22px;
}

.product-swiper-container {
  position: relative;
  padding: 0 40px;
}
