/* Pink & Black - Modern Box Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

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

:root {
  --primary: #E11D73;
  --primary-hover: #C91A66;
  --black: #141414;
  --white: #FFFFFF;
  --pink-light: #FDF2F6;
  --pink-50: #FDF2F8;
  --pink-100: #FCE7F3;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --border-dark: rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px -5px rgba(0, 0, 0, 0.15);
  --radius: 1.5rem;
  --whatsapp: #25D366;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

/* Box Container */
.box-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .box-container { padding: 0 2rem; }
}

@media (min-width: 1024px) {
  .box-container { padding: 0 3rem; }
}

/* Decorative Line */
.deco-line {
  width: 3rem;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #F472B6 100%);
  border-radius: 2px;
}

/* Hover Lift Effect */
.hover-lift {
  transition: all 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  border-bottom: 2px solid var(--border-dark);
}

.navbar .box-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 640px) {
  .navbar-brand {
    display: block;
  }
  .navbar-brand-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.05em;
  }
  .navbar-brand-sub {
    display: block;
    font-size: 0.625rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
  }
}

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}


.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--black);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.dropdown { position: relative; }

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 2px solid var(--border-dark);
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  margin-top: 0.5rem;
  padding: 0.5rem;
  overflow: hidden;
}

.dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background-color: var(--pink-50);
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: var(--shadow-lg);
}

.btn-black {
  background-color: #141414;
  color: #FFFFFF !important;
}

.btn-black:hover {
  background-color: #333333;
  color: #FFFFFF !important;
}

.btn-outline {
  background-color: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}

.btn-outline:hover {
  background-color: var(--black);
  color: white;
}

.btn-outline-white {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-white:hover {
  background-color: white;
  color: var(--black);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--black);
}

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background-color: var(--whatsapp);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #20BA5C;
  transform: scale(1.1);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
}

/* Hero Section */
.hero {
  padding: 2rem 0;
}

.hero-box {
  position: relative;
  background-color: var(--black);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.6), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 4rem 2rem;
  max-width: 650px;
}

@media (min-width: 768px) {
  .hero-content { padding: 5rem 4rem; }
}

@media (min-width: 1024px) {
  .hero-content { padding: 6rem 4rem; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: white;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 3.5rem; }
}

.hero .highlight {
  color: var(--primary);
}

.hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Stats */
.stats-section {
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.stat-card {
  background: var(--pink-50);
  border: 2px solid var(--pink-100);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Section */
.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .deco-line {
  margin: 0 auto 1rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--black);
}

@media (min-width: 768px) {
  .section-header h2 { font-size: 2.5rem; }
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Category Cards */
.category-grid {
  display: grid;
  gap: 1.5rem;
}

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

.category-card {
  background: white;
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.category-card:hover {
  border-color: rgba(225, 29, 115, 0.3);
}

.category-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.category-card:hover .category-card-image img {
  transform: scale(1.1);
}

.category-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.category-badge.pink { background: linear-gradient(135deg, var(--primary), #F472B6); }
.category-badge.black { background: linear-gradient(135deg, #1F2937, #374151); }

.category-card-content {
  padding: 1.5rem;
}

.category-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.category-card:hover h3 { color: var(--primary); }

.category-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.category-card .link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

/* Feature Cards */
.feature-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--border-dark);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(225, 29, 115, 0.2);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.feature-icon.pink { background: var(--primary); }
.feature-icon.black { background: var(--black); }

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
}

.cta-box {
  background: linear-gradient(to right, var(--black), #1F2937, var(--black));
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-box { padding: 4rem; }
}

.cta-glow {
  position: absolute;
  width: 16rem;
  height: 16rem;
  background: var(--primary);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
}

.cta-glow.top-left { top: -8rem; left: -8rem; }
.cta-glow.bottom-right { bottom: -8rem; right: -8rem; }

.cta-content {
  position: relative;
  z-index: 10;
}

.cta-content h2 {
  font-size: 1.75rem;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-content h2 { font-size: 2.25rem; }
}

.cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background-color: var(--black);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

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

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-brand img {
  height: 4rem;
  width: auto;
  background: white;
  border-radius: 0.5rem;
  padding: 0.25rem;
}

.footer-brand-text h3 {
  font-size: 1.25rem;
  color: white;
}

.footer-brand-text span {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.footer h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.footer p, .footer li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.footer ul {
  list-style: none;
}

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

.footer a:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Page Header */
.page-header {
  padding: 2rem 0;
}

.page-header-box {
  background: linear-gradient(to right, var(--pink-50), white);
  border: 2px solid var(--pink-100);
  border-radius: var(--radius);
  padding: 2rem;
}

@media (min-width: 768px) {
  .page-header-box { padding: 3rem; }
}

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

@media (min-width: 768px) {
  .page-header h1 { font-size: 3rem; }
}

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

/* Product Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

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

.product-card {
  background: white;
  border: 2px solid var(--border-dark);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: rgba(225, 29, 115, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #F9FAFB;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.1);
}

.product-card-content {
  padding: 1rem;
}

.product-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.product-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Contact Cards */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border: 2px solid var(--border-dark);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(225, 29, 115, 0.2);
}

.contact-card.highlight {
  background: var(--pink-50);
  border-color: var(--pink-100);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-icon.pink { background: var(--primary); color: white; }
.contact-icon.black { background: var(--black); color: white; }

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.contact-card a.link {
  color: var(--primary);
  font-weight: 500;
  font-size: 1.125rem;
}

.contact-card a.link:hover {
  text-decoration: underline;
}

/* Form */
.form-card {
  background: white;
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 2rem;
}

@media (min-width: 768px) {
  .form-card { padding: 2.5rem; }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--black);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

/* Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.bg-pink-gradient { background: linear-gradient(to bottom, var(--pink-50), white); }
.link-primary { color: var(--primary); font-weight: 500; }
.link-primary:hover { text-decoration: underline; }
.hidden { display: none; }

/* Mobile Menu */
#mobile-menu ul {
  list-style: none;
}

#mobile-menu ul li {
  margin-bottom: 1rem;
}

#mobile-menu ul li a {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--black);
}

#mobile-menu ul li a:hover {
  color: var(--primary);
}
