/* BURPLE - PROFESSIONAL STYLING */
:root {
  --primary-bg: #0a0a0a;
  --primary-text: #ffffff;
  --accent-purple: #7d5ba6;
  --accent-bright: #9d75d1;
  --accent-dark: #5a3e7d;
  --secondary-text: #e0e0e0;
  --border-color: #2a2a2a;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 32px;
  --spacing-lg: 64px;
  --spacing-xl: 128px;
}

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: #ffffff;
  background-color: #0a0a0a;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #ffffff;
}

h3 {
  font-size: 24px;
  color: #9d75d1;
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 0;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* BACK TO PORTFOLIO */
.back-bar {
  background-color: #141414;
  padding: 16px 0;
  border-bottom: 1px solid #2a2a2a;
}

.back-link {
  color: #7d5ba6;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.back-link:hover {
  color: #9d75d1;
}

/* HEADER */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: rgba(10, 10, 10, 0.98);
  border-bottom: 1px solid #2a2a2a;
  padding: 20px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #9d75d1;
}

/* SECTIONS */
section {
  padding: 80px 0;
}

/* HERO */
.hero {
  position: relative;
  margin-top: 100px;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #7d5ba6, #9d75d1);
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  margin: 0 10px;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(125, 91, 166, 0.6);
}

/* FLAVORS SECTION */
.flavors {
  background-color: #0a0a0a;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header p {
  font-size: 16px;
  margin-top: 12px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.card {
  background: linear-gradient(135deg, rgba(125, 91, 166, 0.05), rgba(157, 117, 209, 0.05));
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 1;
}

.card:hover {
  transform: translateY(-12px);
  border-color: #7d5ba6;
  background: linear-gradient(135deg, rgba(125, 91, 166, 0.15), rgba(157, 117, 209, 0.15));
  box-shadow: 0 12px 40px rgba(125, 91, 166, 0.3);
}

.card-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-image img {
  max-width: 140px;
  height: auto;
  transition: transform 0.3s ease;
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.card h3 {
  margin: 0;
}

.card p {
  margin: 0;
  font-size: 15px;
}

/* FEATURES SECTION */
.features {
  background: linear-gradient(135deg, rgba(125, 91, 166, 0.08), rgba(10, 10, 10, 0.5));
  border-top: 1px solid #2a2a2a;
}

/* PRODUCTS SECTION */
.products {
  background-color: #0a0a0a;
  border-top: 1px solid #2a2a2a;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.product-card {
  background: linear-gradient(135deg, rgba(125, 91, 166, 0.05), rgba(157, 117, 209, 0.05));
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: #7d5ba6;
  background: linear-gradient(135deg, rgba(125, 91, 166, 0.15), rgba(157, 117, 209, 0.15));
  box-shadow: 0 12px 40px rgba(125, 91, 166, 0.3);
}

.product-card img {
  max-width: 120px;
  height: auto;
  margin: 0 auto;
}

.product-card h3 {
  margin: 0;
  font-size: 18px;
}

.product-card p {
  margin: 0;
  font-size: 13px;
}

.product-image {
  text-align: center;
}

.product-image img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.product-content h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.product-content p {
  margin-bottom: 20px;
}

.product-features {
  list-style: none;
  margin: 20px 0;
}

.product-features li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: #e0e0e0;
  font-size: 15px;
}

.product-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7d5ba6;
  font-weight: bold;
  font-size: 18px;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #5a3e7d, #7d5ba6, rgba(125, 91, 166, 0.3));
  border-top: 1px solid #2a2a2a;
  text-align: center;
}

.promo-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.promo-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.promo-item:hover {
  transform: translateY(-8px);
  background: rgba(157, 117, 209, 0.15);
  border-color: #9d75d1;
}

.promo-icon {
  font-size: 48px;
  line-height: 1;
}

.promo-item h3 {
  margin: 0;
  font-size: 22px;
  color: #9d75d1;
}

.promo-item p {
  margin: 0;
  font-size: 14px;
  color: #e0e0e0;
}

.promo-button {
  background: linear-gradient(135deg, #7d5ba6, #9d75d1);
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.promo-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(125, 91, 166, 0.4);
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.social-link {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #9d75d1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #9d75d1;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.social-link:hover {
  background: #9d75d1;
  color: #0a0a0a;
  transform: translateY(-4px) scale(1.1);
}

/* CONTACT SECTION */
.contact-section {
  background-color: #0a0a0a;
  border-top: 1px solid #2a2a2a;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(125, 91, 166, 0.05);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #ffffff;
  transition: all 0.3s ease;
  line-height: 1.5;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7d5ba6;
  background: rgba(125, 91, 166, 0.1);
  box-shadow: 0 0 0 3px rgba(125, 91, 166, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.5), rgba(10, 10, 10, 0.8));
  border-top: 1px solid #2a2a2a;
  text-align: center;
  padding: 80px 0;
}

footer h3 {
  font-size: 32px;
  margin-bottom: 12px;
}

footer p {
  margin: 12px 0;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  nav {
    padding: 0 24px;
  }

  h2 {
    font-size: 32px;
  }

  .product-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .promo-container {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 20px;
  }

  .cards-grid {
    gap: 24px;
  }

  .card {
    padding: 24px;
  }

  section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .promo-button {
    font-size: 14px;
    padding: 10px 15px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--primary-text);
  line-height: 1.6;
  background-color: var(--primary-bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

h2 {
  font-size: clamp(32px, 5vw, 64px);
  margin-bottom: var(--spacing-md);
}

h3 {
  font-size: clamp(20px, 3.5vw, 32px);
}

p {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--secondary-text);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: var(--accent-purple);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-bright);
}

.hidden {
  position: absolute;
  left: -9999px;
}

/* BACK TO PORTFOLIO */
.back-to-portfolio {
  background-color: rgba(20, 20, 20, 0.95);
  padding: var(--spacing-sm);
  border-bottom: 1px solid var(--border-color);
}

.back-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-purple);
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-sm);
  transition: all 0.3s ease;
}

.back-link:hover {
  color: var(--accent-bright);
  transform: translateX(-4px);
}

/* HEADER AND NAVIGATION */
.main-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(10px);
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 48px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
  margin: 0;
  padding: 0;
}

.nav-links li a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-text);
  position: relative;
  transition: color 0.3s ease;
}

.nav-links li a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-bright));
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: var(--accent-bright);
}

.nav-links li a:hover::before {
  width: 100%;
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-sm);
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.burger-menu span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--accent-purple);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(125, 91, 166, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.hero-text {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--secondary-text);
  margin-bottom: var(--spacing-lg);
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-bright));
  color: var(--primary-text);
  box-shadow: 0 8px 24px rgba(125, 91, 166, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(125, 91, 166, 0.6);
}

.btn-secondary {
  border: 2px solid var(--accent-purple);
  color: var(--accent-purple);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(125, 91, 166, 0.1);
  color: var(--accent-bright);
  border-color: var(--accent-bright);
}

.video-controls {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 10;
  display: flex;
  gap: var(--spacing-sm);
}

.control-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--primary-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.control-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FLAVORS SECTION */
.flavors {
  padding: 80px 0;
  background: var(--primary-bg);
  position: relative;
  z-index: 5;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-header h2 {
  color: var(--primary-text);
  margin: 0 0 var(--spacing-md) 0;
  line-height: 1.2;
}

.section-header p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--secondary-text);
  margin: 0;
  line-height: 1.6;
}

.flavor-card {
  background: linear-gradient(135deg, rgba(125, 91, 166, 0.05), rgba(157, 117, 209, 0.05));
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: var(--spacing-lg);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  min-height: auto;
}

.flavor-card:hover {
  transform: translateY(-12px);
  border-color: var(--accent-purple);
  background: linear-gradient(135deg, rgba(125, 91, 166, 0.15), rgba(157, 117, 209, 0.15));
  box-shadow: 0 12px 40px rgba(125, 91, 166, 0.3);
}

.flavor-image {
  width: 100%;
  height: auto;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.flavor-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 150px;
  transition: transform 0.3s ease;
}

.flavor-card:hover .flavor-image img {
  transform: scale(1.1);
}

.flavor-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.flavor-info h3 {
  color: var(--accent-bright);
  font-size: 24px;
  margin: 0;
  line-height: 1.2;
}

.flavor-info p {
  font-size: 15px;
  color: var(--secondary-text);
  margin: 0;
  line-height: 1.5;
}

/* FEATURES SECTION */
.features {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(125, 91, 166, 0.05), rgba(10, 10, 10, 0));
  border-top: 1px solid var(--border-color);
}

.feature-item {
  background: rgba(125, 91, 166, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: var(--spacing-lg);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  min-height: auto;
}

.feature-item:hover {
  transform: translateY(-8px);
  border-color: var(--accent-purple);
  background: rgba(125, 91, 166, 0.15);
  box-shadow: 0 12px 32px rgba(125, 91, 166, 0.2);
}

.feature-icon {
  font-size: 48px;
  line-height: 1;
  height: auto;
}

.feature-item h3 {
  color: var(--accent-bright);
  font-size: 22px;
  margin: 0;
  line-height: 1.2;
}

.feature-item p {
  margin: 0;
  color: var(--secondary-text);
  font-size: 14px;
  line-height: 1.5;
}

/* PRODUCTS SECTION */
.products {
  padding: 80px 0;
  background: var(--primary-bg);
  border-top: 1px solid var(--border-color);
}

.product-showcase {
  display: flex;
  gap: var(--spacing-xl);
  align-items: flex-start;
  flex-wrap: wrap;
}

.product-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

.product-content {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.product-content h3 {
  font-size: 32px;
  color: var(--accent-bright);
  margin: 0;
  line-height: 1.2;
}

.product-content > p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.product-features li {
  padding: 0;
  padding-left: var(--spacing-lg);
  position: relative;
  color: var(--secondary-text);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-purple);
  font-weight: bold;
  font-size: 18px;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* CTA SECTION */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-purple), rgba(125, 91, 166, 0.3));
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.cta-content h2 {
  color: var(--primary-text);
  margin: 0 0 var(--spacing-md) 0;
  line-height: 1.2;
}

.cta-content > p {
  font-size: 18px;
  margin: 0 0 var(--spacing-lg) 0;
  color: var(--secondary-text);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--accent-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-bright);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-bright);
  color: var(--primary-bg);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(157, 117, 209, 0.4);
}

/* CONTACT SECTION */
.contact-section {
  padding: 80px 0;
  background: var(--primary-bg);
  border-top: 1px solid var(--border-color);
}

.contact-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.contact-header h2 {
  color: var(--primary-text);
  margin: 0 0 var(--spacing-md) 0;
  line-height: 1.2;
}

.contact-header p {
  font-size: 18px;
  color: var(--secondary-text);
  margin: 0;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  background: rgba(125, 91, 166, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--primary-text);
  transition: all 0.3s ease;
  line-height: 1.5;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-purple);
  background: rgba(125, 91, 166, 0.1);
  box-shadow: 0 0 0 3px rgba(125, 91, 166, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form .btn {
  align-self: flex-start;
  padding: 16px 40px;
  width: auto;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.5), rgba(10, 10, 10, 0.8));
  border-top: 1px solid var(--border-color);
  padding: 80px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-brand h3 {
  font-size: 32px;
  color: var(--accent-bright);
  margin: 0 0 var(--spacing-sm) 0;
  line-height: 1.2;
}

.footer-brand p {
  margin: var(--spacing-sm) 0;
  color: var(--secondary-text);
  font-size: 16px;
  line-height: 1.6;
}

.copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: var(--spacing-md);
  line-height: 1.6;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1199px) {
  .nav-links {
    gap: var(--spacing-md);
  }

  .nav-links li a {
    font-size: 13px;
  }

  .product-showcase {
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .product-image {
    order: 2;
  }

  .product-content {
    order: 1;
  }
}

@media (max-width: 767px) {
  .main-header {
    padding: var(--spacing-sm) 0;
  }

  .nav-links {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100vh - 100px);
    background: var(--primary-bg);
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .burger-menu {
    display: flex;
  }

  .hero {
    margin-top: 80px;
    height: 70vh;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-buttons {
    gap: var(--spacing-md);
  }

  .btn {
    padding: 14px 32px;
    font-size: 13px;
  }

  .section-header {
    margin-bottom: var(--spacing-lg);
  }

  .section-header h2 {
    font-size: 32px;
  }

  .product-showcase {
    flex-direction: column;
  }

  .flavor-card,
  .feature-item {
    padding: var(--spacing-md);
  }

  .social-links {
    gap: var(--spacing-md);
  }

  .social-link {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  footer {
    padding: var(--spacing-lg) 0;
  }

  .cta-content > p {
    font-size: 16px;
  }
}

/* CRITICAL FIX - Force proper card display */
.flavor-card,
.feature-item {
  display: flex !important;
  flex-direction: column !important;
  height: unset !important;
  min-height: unset !important;
  max-height: unset !important;
}

.flavor-image {
  height: auto !important;
  min-height: 180px !important;
  max-height: unset !important;
}

.flavor-image img {
  max-width: 140px !important;
  height: auto !important;
  max-height: 140px !important;
}

/* Force proper text display */
.flavor-info,
.feature-item > * {
  overflow: visible !important;
  white-space: normal !important;
}

.flavor-info h3,
.feature-item h3 {
  overflow: visible !important;
  white-space: normal !important;
  word-break: break-word !important;
}

.flavor-info p,
.feature-item p {
  overflow: visible !important;
  white-space: normal !important;
  word-break: break-word !important;
}