﻿/* css/style.css */
:root {
  /* Paleta de culori solicitată */
  --color-pink: #ff85a2;
  --color-turquoise: #00d2d3;
  
  /* Culori de suport */
  --color-bg-light: #f9fbfb;
  --color-text-main: #2d3436;
  --color-text-muted: #636e72;
  --color-white: #ffffff;
  
  /* Tipografie și setări generale */
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --transition-speed: 0.3s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg-light);
  color: var(--color-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- Tipografie --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-text-main);
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

a {
  color: var(--color-turquoise);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--color-pink);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

/* --- Butoane --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  border: none;
  text-decoration: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--color-pink);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(255, 133, 162, 0.4);
}

.btn-primary:hover {
  background-color: #ff6b8e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 133, 162, 0.6);
  color: var(--color-white);
}

.btn-secondary {
  background-color: var(--color-turquoise);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(0, 210, 211, 0.4);
}

.btn-secondary:hover {
  background-color: #00b8b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 210, 211, 0.6);
  color: var(--color-white);
}

/* --- Buton Plutitor WhatsApp --- */
.whatsapp-float-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--color-turquoise);
  color: var(--color-white);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0 4px 15px rgba(0, 210, 211, 0.4);
  cursor: pointer;
  z-index: 1000;
  transition: all var(--transition-speed) ease;
  border: none;
}

.whatsapp-float-btn:hover {
  background-color: var(--color-pink);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(255, 133, 162, 0.5);
}

/* Element grafic pentru accent de culoare */
.accent-text {
  color: var(--color-pink);
}

/* --- Header & Navigare --- */
.header {
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.header.header-expanded .nav-container {
  height: 105px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.logo span {
  color: var(--color-turquoise);
}

/* --- Carduri / Elemente de prezentare --- */
.card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform var(--transition-speed) ease;
  border-top: 4px solid var(--color-pink);
}

.card:hover {
  transform: translateY(-5px);
}

/* --- Design Responsiv pentru Mobil --- */
@media (max-width: 880px) {
  .section {
    padding: 3rem 0;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.35rem; }
  
  .nav-container {
    height: 70px;
  }
  
  .header.header-expanded .nav-container {
    height: 95px;
  }

  /* Ajustarea butonului WhatsApp pentru display-uri mai mici */
  .whatsapp-float-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 55px;
    height: 55px;
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  
  .btn {
    width: 100%; /* Butoanele ocupă toată lățimea pe ecrane foarte mici */
    margin-bottom: 0.5rem;
  }
}

/* --- Navigare --- */
.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--color-text-main);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--color-pink);
}

.mobile-menu-icon {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-pink);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  z-index: 1;
  min-height: 85vh;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradient peste o imagine de fundal (de la Unsplash) */
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(249, 251, 251, 0.5)),
                    url('https://images.unsplash.com/photo-1602351447937-745cb720612f?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8OHx8Y2FrZXxlbnwwfHwwfHx8MA%3D%3D');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scaleX(-1);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--color-turquoise);
  position: relative;
  display: inline-block;
  z-index: 1;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 12px;
  background-color: rgba(255, 133, 162, 0.25);
  bottom: 8px;
  left: 0;
  z-index: -1;
  border-radius: 6px;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  color: var(--color-text-main);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background-color: #1e272e;
  color: #d4d2d2;
  padding: 5rem 0 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-col h3 {
  color: var(--color-white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-col p {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul a {
  color: #d4d2d2;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: var(--color-pink);
}

.footer-anpc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
  .footer-anpc {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.footer-anpc img {
  max-width: 220px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s;
}

.footer-anpc img:hover {
  transform: scale(1.02);
}

.footer .copyright {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 2rem;
}

.footer-note {
  background-color: rgba(255, 133, 162, 0.1);
  border: 1px solid rgba(255, 133, 162, 0.3);
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  margin: 0 auto 4rem;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.footer-note i {
  font-size: 1.8rem !important;
  margin-bottom: 0 !important;
  display: inline-block !important;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-note p {
  color: #d4d2d2;
}

.footer-note strong {
  color: var(--color-pink);
  font-weight: 700;
}

/* --- Global Elements pt Secțiuni Noi --- */
.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-title h2 {
  font-size: 2.5rem;
  color: var(--color-text-main);
  margin-bottom: 0.5rem;
}
.section-title h2 span {
  color: var(--color-pink);
}
.section-title p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

/* --- Categorii Grid --- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.category-card {
  background-color: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.category-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.category-info {
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.category-info h3 {
  color: var(--color-turquoise);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.category-info p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* --- Features Grid (De ce noi) --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.features-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-box {
  text-align: center;
  padding: 2.5rem 2rem;
  background-color: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  transition: transform var(--transition-speed) ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 133, 162, 0.1);
  color: var(--color-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem auto;
  transition: transform var(--transition-speed) ease, background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

.feature-box:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background-color: var(--color-pink);
  color: var(--color-white);
}

.feature-box h3 {
  color: var(--color-text-main);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-box p {
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .categories-grid, .features-grid, .features-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .categories-grid, .features-grid, .features-grid-3 {
    grid-template-columns: 1fr;
  }
  .section-title h2 {
    font-size: 2rem;
  }
}

/* --- Media Queries Suplimentare --- */
@media (max-width: 880px) {
  .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
    border-top: 1px solid rgba(0,0,0,0.05);
    
    /* Setări pentru animație */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .mobile-menu-icon {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-content {
    padding: 2rem 1.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    gap: 1rem;
  }
}

/* --- Clase Utilitare Pagini Interioare --- */
.page-header {
  background-color: var(--color-bg-light);
  padding: 4rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--color-pink);
  margin-bottom: 1rem;
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background-color: #f1f2f6;
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info .btn {
  margin-top: auto;
}

.product-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-main);
}

.product-price {
  color: var(--color-turquoise);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Structură Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.contact-box {
  padding: 2.5rem;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.contact-box p {
  flex-grow: 1;
}

.contact-box .btn {
  margin-top: auto !important;
}

.contact-box i {
  font-size: 2.5rem;
  color: var(--color-turquoise);
  margin-bottom: 1rem;
}

@media (max-width: 865px) {
  .contact-grid .contact-box:nth-child(3) {
    grid-column: 1 / -1;
  }
}

/* --- Magical Sparkle Cursor Trail --- */
.sparkle-trail {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  animation: sparkle-anim 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes sparkle-anim {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(calc(-50% + var(--offset-x)), -50px) scale(0.1);
    opacity: 0;
  }
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* --- Gallery Styles --- */
.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  cursor: pointer;
  background-color: #f1f2f6;
}

.gallery-card:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-card:hover::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.1);
  pointer-events: none;
}

.gallery-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

/* --- Lightbox Styles --- */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.show {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  animation: zoomIn 0.3s ease;
  object-fit: contain;
}

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

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 10000;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--color-pink);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  font-size: 24px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
  z-index: 10000;
  backdrop-filter: blur(5px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.4);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* --- Pagina Povestea Noastră --- */
.story-split {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (min-width: 992px) {
  .story-split {
    flex-direction: row;
    align-items: flex-start;
  }
  .story-split .story-image, .story-split .story-text {
    flex: 1;
  }
}

.story-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  object-fit: cover;
}

.story-text h2 {
  font-size: 2.5rem;
  color: var(--color-text-main);
  margin-bottom: 1.5rem;
}

.story-text h2 span {
  color: var(--color-pink);
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--color-text-muted);
}

/* Timeline */
.timeline-section {
  background-color: var(--color-bg-light);
  padding: 5rem 0;
  border-radius: 30px;
  margin-bottom: 5rem;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  height: 100%;
  width: 3px;
  background-color: rgba(255, 133, 162, 0.3);
}

@media (min-width: 768px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 60px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .timeline-item {
    width: 50%;
    padding-left: 0;
    padding-right: 40px;
    margin-left: 0;
  }
  
  .timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 40px;
    padding-right: 0;
  }
}

.timeline-dot {
  position: absolute;
  left: 11px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-pink);
  border: 4px solid var(--color-white);
  box-shadow: 0 0 0 3px rgba(255, 133, 162, 0.2);
}

@media (min-width: 768px) {
  .timeline-dot {
    left: 100%;
    transform: translateX(-50%);
  }
  
  .timeline-item:nth-child(even) .timeline-dot {
    left: 0;
    transform: translateX(-50%);
  }
}

.timeline-content {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.timeline-content h3 {
  color: var(--color-pink);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Call to Action */
.story-cta {
  text-align: center;
  padding: 4rem 0;
}

.story-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

/* Pricing Page Styles */
.pricing-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 15px;
}
.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}
.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 1rem;
}
.pricing-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.3rem;
}
.pricing-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin: 0;
}
.pricing-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
}
.offer-box {
    background-color: transparent;
    border: 1px solid var(--color-pink);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    display: block;
}
.offer-desc {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
}
.offer-title {
    font-size: 1.4rem;
    margin: 0;
    font-weight: 500;
    color: var(--color-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Dropdown Navigare --- */
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}
.dropbtn {
    display: flex;
    align-items: center;
    gap: 5px;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--color-white);
    min-width: 240px;
    box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 12px;
    overflow: hidden;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 15px;
    border: 1px solid rgba(0,0,0,0.05);
}

.dropdown-content a {
    color: var(--color-text-main);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    text-align: center;
}
.dropdown-content a:last-child {
    border-bottom: none;
}
.dropdown-content a:hover {
    background-color: var(--color-pink);
    color: var(--color-white);
}
.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDropdown 0.3s ease;
}

@keyframes fadeInDropdown {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

@media (max-width: 880px) {
    .dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
.dropdown::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}
    .dropdown-content {
        position: static;
        display: block;
        box-shadow: none;
        min-width: 100%;
        background-color: transparent;
        margin-top: 0.5rem;
        transform: none;
        border: none;
    }
    
    .dropdown-content a {
        padding: 8px 16px;
        font-size: 0.95rem;
        color: var(--color-text-muted);
    }
    .dropdown-content a:hover {
        background-color: transparent;
        color: var(--color-pink);
    }
    .dropdown:hover .dropdown-content {
        animation: none;
    }
}

/* Center specific product pages on mobile */
@media (max-width: 880px) {
    .center-mobile-story {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
