/* ===== CSS Variables ===== */
:root {
  --primary-deep: #0a1628;
  --primary-forest: #1a2332;
  --accent-emerald: #0d9488;
  --accent-teal: #14b8a6;
  --accent-gold: #d4af37;
  --accent-cyan: #06b6d4;
  --chili-red: #dc2626;
  --chili-red-dark: #b91c1c;
  --chili-red-light: #ef4444;
  --bg-dark: #0f1419;
  --bg-darker: #0a0e13;
  --bg-card: #1a1f2e;
  --bg-card-hover: #1f2535;
  --text-light: #e5e7eb;
  --text-medium: #cbd5e1;
  --text-dark: #94a3b8;
  --text-red: #fca5a5;
  --border-dark: #1e293b;
  --border-light: #334155;
  --shadow-sm: rgba(0, 0, 0, 0.3);
  --shadow-md: rgba(0, 0, 0, 0.4);
  --shadow-lg: rgba(0, 0, 0, 0.5);
  --shadow-xl: rgba(13, 148, 136, 0.3);
  --shadow-red: rgba(220, 38, 38, 0.3);
  --gradient-primary: linear-gradient(135deg, #0a1628 0%, #1a2332 100%);
  --gradient-accent: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  --gradient-cyan: linear-gradient(135deg, #06b6d4 0%, #0d9488 100%);
  --gradient-red: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

/* ===== Reset & Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 80px;
}

body {
  font-family: "Lato", sans-serif;
  color: var(--text-light);
  line-height: 1.7;
  background-color: var(--bg-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== Typography ===== */
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  background: linear-gradient(
    135deg,
    var(--text-light) 0%,
    var(--chili-red-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-light);
}

h3 span.red-accent {
  color: var(--chili-red-light);
}

p {
  font-size: 1.125rem;
  color: var(--text-medium);
  line-height: 1.8;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(15, 20, 25, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 3px var(--shadow-sm);
  border-bottom: 1px solid var(--border-dark);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: rgba(15, 20, 25, 0.98);
  box-shadow: 0 4px 24px var(--shadow-md);
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 1.75rem;
  background: linear-gradient(
    135deg,
    var(--chili-red-light) 0%,
    var(--chili-red) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.03em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-medium);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  font-size: 0.875rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-red);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--text-light);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--text-light);
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 2.5px;
  background-color: var(--text-light);
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background-image: url("image/spicy.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.9) 0%,
    rgba(26, 35, 50, 0.85) 50%,
    rgba(107, 114, 128, 0.7) 100%
  );
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(220, 38, 38, 0.15) 0%,
    transparent 50%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 900px;
  padding: 0 40px;
}

.hero-title {
  font-size: 4.5rem;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  animation: textReveal 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero-subtitle {
  font-size: 1.75rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.hero-subtitle .subtitle-prefix {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
  position: relative;
  padding-bottom: 12px;
}

.hero-subtitle .subtitle-prefix::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
}

.hero-subtitle .subtitle-highlight {
  font-size: 2rem;
  color: var(--chili-red-light);
  font-weight: 600;
  text-shadow: 0 4px 20px rgba(220, 38, 38, 0.6);
  letter-spacing: 0.03em;
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.hero-subtitle .subtitle-highlight::before,
.hero-subtitle .subtitle-highlight::after {
  content: "◆";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.6em;
  color: var(--chili-red-light);
  opacity: 0.7;
}

.hero-subtitle .subtitle-highlight::before {
  left: -10px;
}

.hero-subtitle .subtitle-highlight::after {
  right: -10px;
}

.cta-button {
  display: inline-block;
  padding: 18px 48px;
  background: var(--chili-red);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  animation: scaleIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: var(--transition);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: var(--chili-red-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(220, 38, 38, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ===== Section Styles ===== */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-header.animated {
  opacity: 1;
  transform: translateY(0);
}

.section-header::before {
  content: "🌶️";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  opacity: 0.2;
  animation: float 3s ease-in-out infinite;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.section-header.animated .section-title {
  opacity: 1;
  transform: translateY(0);
}

.title-underline {
  width: 100px;
  height: 4px;
  background: var(--gradient-red);
  margin: 0 auto 24px;
  border-radius: 2px;
  position: relative;
}

.title-underline::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--chili-red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--bg-dark);
}

.section-description {
  font-size: 1.25rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

.section-title {
  color: var(--text-light);
}

/* ===== About Section ===== */
.about {
  background-color: var(--bg-darker);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border-light),
    transparent
  );
}

.about-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

.about-text {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-text.animated {
  opacity: 1;
  transform: translateX(0);
}

.about-text h3 {
  color: var(--text-light);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  position: relative;
  padding-left: 20px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-text.animated h3 {
  opacity: 1;
  transform: translateX(0);
}

.about-text.animated h3:nth-child(1) {
  transition-delay: 0.1s;
}
.about-text.animated h3:nth-child(3) {
  transition-delay: 0.2s;
}
.about-text.animated h3:nth-child(5) {
  transition-delay: 0.3s;
}

.about-text h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: var(--gradient-red);
  border-radius: 2px;
}

.about-text h3:first-child {
  margin-top: 0;
}

.about-text p {
  margin-bottom: 1.75rem;
  line-height: 1.9;
  color: var(--text-medium);
}

.features-list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 12px;
}

.features-list li {
  padding: 16px 20px;
  font-size: 1.05rem;
  color: var(--text-medium);
  background: var(--bg-card);
  border-left: 3px solid var(--chili-red);
  border-radius: 4px;
  transition: var(--transition-fast);
}

.features-list li:hover {
  background: var(--bg-card-hover);
  transform: translateX(4px);
  border-left-color: var(--chili-red-light);
}

.about-images {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-lg);
  position: relative;
  width: 100%;
  height: 300px;
  background: var(--bg-card);
  opacity: 0;
  transform: translateX(50px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image.animated {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.about-image:nth-child(2) {
  animation-delay: 0.2s;
}

.about-image:nth-child(3) {
  animation-delay: 0.4s;
}

.about-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.1) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
  transform: scale(1.1) rotate(1deg);
}

/* ===== Team Section (under About) ===== */
.team-section {
  margin-top: 80px;
}

.team-title {
  font-size: 2rem;
  margin-bottom: 32px;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.95),
    rgba(15, 23, 42, 0.9)
  );
  border-radius: 16px;
  padding: 24px 24px 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.25);
  text-align: center;
  transition: var(--transition-fast);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px var(--shadow-red);
  border-color: rgba(248, 113, 113, 0.7);
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.team-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: var(--gradient-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: 0 6px 18px var(--shadow-red);
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: var(--text-light);
}

.team-role {
  font-size: 0.95rem;
  color: var(--chili-red-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.65;
}

/* ===== Products Section ===== */
.products {
  background: linear-gradient(
    to bottom,
    var(--bg-dark) 0%,
    var(--bg-darker) 100%
  );
  position: relative;
}

.products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(220, 38, 38, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(220, 38, 38, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

.products > .container {
  position: relative;
  z-index: 1;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.product-card {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow-md);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-dark);
  position: relative;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}

.product-card.animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
  z-index: 1;
}

.product-card::after {
  content: "🔥";
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  opacity: 0;
  transform: scale(0);
  transition: var(--transition);
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Reduced delays for faster loading */
.product-card:nth-child(1) {
  transition-delay: 0s;
}
.product-card:nth-child(2) {
  transition-delay: 0.05s;
}
.product-card:nth-child(3) {
  transition-delay: 0.1s;
}
.product-card:nth-child(4) {
  transition-delay: 0.05s;
}
.product-card:nth-child(5) {
  transition-delay: 0.1s;
}
.product-card:nth-child(6) {
  transition-delay: 0.15s;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px var(--shadow-red);
  border-color: var(--chili-red);
  background: var(--bg-card-hover);
}

.product-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    var(--primary-deep) 100%
  );
  position: relative;
}

.product-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(6, 182, 212, 0.2) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.2) rotate(2deg);
}

.product-info {
  padding: 32px;
}

.product-info h3 {
  color: var(--text-light);
  margin-bottom: 14px;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-info h3 {
  color: var(--chili-red-light);
  transform: translateX(5px);
}

.product-info h3::first-letter {
  color: var(--chili-red-light);
  font-size: 1.2em;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-info h3::first-letter {
  transform: scale(1.2);
}

.product-description {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-medium);
  font-size: 1rem;
}

.product-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
}

.product-origin {
  font-size: 0.9rem;
  color: var(--text-medium);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-origin::before {
  content: "📍";
  font-size: 0.85rem;
}

.product-grade {
  font-size: 0.9rem;
  color: var(--chili-red-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-grade::before {
  content: "⭐";
  font-size: 0.85rem;
}

/* ===== Gallery Section ===== */
.gallery {
  background: radial-gradient(
      circle at 0% 0%,
      rgba(220, 38, 38, 0.06) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(6, 182, 212, 0.06) 0%,
      transparent 40%
    ),
    var(--bg-darker);
  position: relative;
  padding-top: 60px; /* tighter space above gallery */
}

.gallery-wrapper {
  position: relative;
  padding-bottom: 10px;
  overflow: hidden; /* hide any vertical overflow from tall items */
}

.gallery-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden; /* prevent vertical scrollbar */
  padding-bottom: 8px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--chili-red-light) rgba(15, 23, 42, 0.7);
}

.gallery-track::-webkit-scrollbar {
  height: 6px;
}

.gallery-track::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.7);
  border-radius: 999px;
}

.gallery-track::-webkit-scrollbar-thumb {
  background: linear-gradient(
    135deg,
    var(--chili-red) 0%,
    var(--chili-red-light) 100%
  );
  border-radius: 999px;
}

.gallery-item {
  min-width: 320px;
  max-width: 400px;
  height: 570px; /* 50% taller gallery images */
  border-radius: 20px;
  overflow: hidden;
  background: radial-gradient(
      circle at 0% 0%,
      rgba(248, 250, 252, 0.08),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(248, 250, 252, 0.06),
      transparent 55%
    ),
    rgba(15, 23, 42, 0.9);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
  flex-shrink: 0;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px var(--shadow-red);
  border-color: var(--chili-red);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ===== View More Button ===== */
.view-more-container {
  text-align: center;
  margin-top: 60px;
  padding: 40px 0;
}

.view-more-button {
  display: inline-block;
  padding: 18px 48px;
  background: var(--chili-red);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0;
  transform: translateY(30px);
}

.view-more-button.animated {
  opacity: 1;
  transform: translateY(0);
}

.view-more-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: all 0.6s ease;
}

.view-more-button:hover::before {
  left: 100%;
}

.view-more-button:hover {
  background: var(--chili-red-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(220, 38, 38, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ===== Products Page Styles ===== */
.products-page-header {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  margin-top: 70px;
}

.products-page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(220, 38, 38, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(220, 38, 38, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.page-title {
  font-size: 3.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-subtitle {
  font-size: 1.5rem;
  color: var(--text-medium);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.all-products {
  background: linear-gradient(
    to bottom,
    var(--bg-dark) 0%,
    var(--bg-darker) 100%
  );
  padding: 40px 0 80px;
  position: relative;
}

.all-products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(220, 38, 38, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(220, 38, 38, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

.all-products > .container {
  position: relative;
  z-index: 1;
}

.products-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 0;
}

/* Faster animations for products page */
.products-grid-full .product-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Contact Section ===== */
.contact {
  background-color: var(--bg-darker);
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border-light),
    transparent
  );
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-item h3 {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.info-item h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-red);
  border-radius: 2px;
}

.info-item p {
  line-height: 1.9;
  color: var(--text-medium);
  font-size: 1.05rem;
}

.social-links h3 {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.social-links h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-red);
  border-radius: 2px;
}

.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icon {
  padding: 12px 24px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px var(--shadow-md);
}

.social-icon:hover {
  background: var(--chili-red);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--shadow-red);
}

.map-container {
  background: var(--bg-card);
  padding: 0;
  border-radius: 24px;
  box-shadow: 0 8px 32px var(--shadow-md);
  border: 1px solid var(--border-dark);
  overflow: hidden;
  height: 500px;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ===== Footer ===== */
.footer {
  background: var(--gradient-primary);
  color: rgba(255, 255, 255, 0.9);
  padding: 40px 0;
  text-align: center;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

.footer p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 8px 0;
}

.footer-credit {
  margin-top: 16px !important;
  font-size: 0.9rem !important;
  opacity: 0.8;
}

.footer-credit .heart {
  color: var(--chili-red-light);
  animation: pulse 2s ease-in-out infinite;
  display: inline-block;
  margin: 0 4px;
}

.footer-credit .kyntax {
  color: var(--chili-red-light);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* ===== Scroll Animation Classes ===== */
.animate-on-scroll {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
}

.fade-in-up {
  transform: translateY(50px);
}

.fade-in-up.animated {
  transform: translateY(0);
}

.fade-in-left {
  transform: translateX(-50px);
}

.fade-in-left.animated {
  transform: translateX(0);
}

.fade-in-right {
  transform: translateX(50px);
}

.fade-in-right.animated {
  transform: translateX(0);
}

.scale-in {
  transform: scale(0.8);
}

.scale-in.animated {
  transform: scale(1);
}

.zoom-in {
  transform: scale(0.9);
}

.zoom-in.animated {
  transform: scale(1);
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
  .container {
    padding: 0 24px;
  }

  .nav-container {
    padding: 1rem 24px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--bg-darker);
    width: 100%;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 40px var(--shadow-lg);
    padding: 2rem 0;
    gap: 0;
    border-bottom: 1px solid var(--border-dark);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    padding: 1rem 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .hero-subtitle .subtitle-prefix {
    font-size: 0.95rem;
  }

  .hero-subtitle .subtitle-highlight {
    font-size: 1.6rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-images {
    order: -1;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }

  .products-grid-full {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .page-subtitle {
    font-size: 1.2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .map-container {
    height: 400px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 600px;
    background-attachment: scroll;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-subtitle .subtitle-prefix {
    font-size: 0.85rem;
    padding-bottom: 10px;
  }

  .hero-subtitle .subtitle-prefix::after {
    width: 40px;
  }

  .hero-subtitle .subtitle-highlight {
    font-size: 1.4rem;
    padding: 0 15px;
  }

  .hero-subtitle .subtitle-highlight::before,
  .hero-subtitle .subtitle-highlight::after {
    font-size: 0.5em;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-grid-full {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .products-page-header {
    padding: 120px 0 60px;
  }

  .page-title {
    font-size: 2rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 2rem;
  }

  section {
    padding: 80px 0;
  }

  .about-content,
  .contact-content {
    gap: 40px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .nav-container {
    padding: 1rem 20px;
  }

  .logo h1 {
    font-size: 1.4rem;
  }

  .hero-content {
    padding: 0 20px;
  }

  .cta-button {
    padding: 16px 36px;
    font-size: 0.9rem;
  }

  .map-container {
    height: 350px;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
