/* Color Scheme: Red, Pink, Dark Blue */
:root {
  --primary-red: #dc2626;
  --primary-pink: #ec4899;
  --primary-dark-blue: #1e3a8a;
  --secondary-red: #ef4444;
  --secondary-pink: #f472b6;
  --secondary-dark-blue: #3730a3;
  --light-pink: #fce7f3;
  --light-blue: #dbeafe;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

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

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

/* Typography - Chunky, Friendly Font */
h1, h2, h3, h4, h5, h6, .logo h1, .btn {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-pink));
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

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

.btn-outline:hover {
  background: var(--primary-dark-blue);
  color: var(--white);
}

.btn-cta {
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-red));
  color: var(--white);
  padding: 16px 32px;
  font-size: 18px;
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(236, 72, 153, 0.5);
}

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

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo h1 {
  color: var(--primary-dark-blue);
  font-size: 28px;
  font-weight: 800;
}

.main-nav {
  display: flex;
  gap: 30px;
}

.main-nav a {
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.nav-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--light-pink), var(--light-blue));
  padding: 80px 0;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h2 {
  font-size: 48px;
  color: var(--primary-dark-blue);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 20px;
  color: var(--gray-600);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-circle {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-pink), var(--primary-dark-blue));
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
}

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

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  color: var(--primary-dark-blue);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Products Section */
.products-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--light-pink), var(--light-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--primary-dark-blue);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 20px;
}

.product-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark-blue);
  margin-bottom: 8px;
}

.product-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 5px;
}

.product-weight {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 10px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}

.stars {
  color: #fbbf24;
}

.rating-text {
  font-size: 14px;
  color: var(--gray-600);
}

.add-to-cart {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-red));
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(236, 72, 153, 0.4);
}

/* Product Card Actions */
.product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.view-details {
  color: #f97316; /* Orange */
  font-weight: bold;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.product-actions .add-to-cart {
  background: #f97316; /* Orange */
  color: white;
  width: auto;
  padding: 10px 20px;
  border-radius: 50px;
}

/* Location Section */
.location-section {
  padding: 80px 0 0;
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Instagram Section */
.instagram-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.instagram-feed {
  max-width: 600px;
  margin: 0 auto;
}

.instagram-placeholder {
  background: var(--white);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.instagram-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.instagram-placeholder h3 {
  font-size: 24px;
  color: var(--primary-dark-blue);
  margin-bottom: 15px;
}

.instagram-placeholder p {
  color: var(--gray-600);
  margin-bottom: 30px;
  font-size: 16px;
}

.instagram-note {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.instagram-note small {
  color: var(--gray-600);
  font-style: italic;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 25px 30px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--light-pink);
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-pink);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 30px 25px;
  color: var(--gray-600);
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Newsletter Section */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark-blue), var(--primary-red));
}

.newsletter-card {
  background: var(--white);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.newsletter-content h2 {
  font-size: 32px;
  color: var(--primary-dark-blue);
  margin-bottom: 15px;
}

.newsletter-content p {
  color: var(--gray-600);
  margin-bottom: 40px;
  font-size: 16px;
}

.newsletter-form .form-group {
  display: flex;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
  border-color: var(--primary-pink);
}

.form-note {
  color: var(--gray-600);
  font-size: 14px;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary-pink);
}

.footer-brand p {
  color: var(--gray-300);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--primary-pink);
}

.footer-column a {
  display: block;
  color: var(--gray-300);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 30px;
  text-align: center;
  color: var(--gray-400);
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px 0;
}

.modal-header h3 {
  font-size: 24px;
  color: var(--primary-dark-blue);
}

.modal-close {
  background: none;
  border: none;
  font-size: 30px;
  color: var(--gray-600);
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-body {
  padding: 30px;
}

.modal-footer {
  padding: 0 30px 30px;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-dark-blue);
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  border-color: var(--primary-pink);
}

.cart-total {
  text-align: right;
  font-size: 18px;
  color: var(--primary-dark-blue);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--gray-200);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .nav-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  
  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }
  
  .hero-content h2 {
    font-size: 32px;
  }
  
  .hero-content p {
    font-size: 18px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .newsletter-form .form-group {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero-content h2 {
    font-size: 28px;
  }
  
  .section-header h2 {
    font-size: 24px;
  }
  
  .newsletter-card {
    padding: 40px 20px;
  }
}
