/* CSS Variables for Color Scheme */
:root {
    --primary-red: #E63946;
    --primary-pink: #F72585;
    --primary-dark-blue: #0F4C75;
    --light-pink: #FFB3BA;
    --light-blue: #E8F4F8;
    --white: #FFFFFF;
    --black: #2D3748;
    --gray: #718096;
    --light-gray: #F7FAFC;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fredoka', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background: linear-gradient(135deg, var(--primary-dark-blue), var(--primary-pink));
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.logo span {
    color: var(--light-pink);
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--light-pink);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cart-btn {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.cart-btn:hover {
    background: #d32f2f;
    transform: translateY(-2px);
}

.cart-count {
    background: var(--white);
    color: var(--primary-red);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.register-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Fredoka', sans-serif;
}

.register-btn:hover {
    background: var(--white);
    color: var(--primary-dark-blue);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-blue), var(--light-pink));
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-dark-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: 400;
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-pink));
    color: var(--white);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Fredoka', sans-serif;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 53, 116, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Products Section */
.products {
    padding: 80px 0;
    background: var(--white);
}

.products h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark-blue);
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 76, 117, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.add-to-cart {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Fredoka', sans-serif;
}

.add-to-cart:hover {
    background: var(--primary-pink);
    transform: translateY(-2px);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark-blue);
    margin-bottom: 0.5rem;
}

.product-weight {
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #FFD700;
    font-size: 1.1rem;
}

.rating-count {
    color: var(--gray);
    font-size: 0.9rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
}

/* Instagram Feed Section */
.instagram-feed {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-pink), var(--light-blue));
}

.instagram-feed h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
}

.instagram-feed p {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: 3rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.instagram-post {
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.instagram-post:hover {
    transform: scale(1.05);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--primary-dark-blue);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: var(--primary-pink);
}

.instagram-link i {
    font-size: 1.5rem;
}

/* Location Section */
.location {
    padding: 80px 0;
    background: var(--white);
}

.location h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark-blue);
    margin-bottom: 3rem;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.location-info h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-dark-blue);
    margin-bottom: 1.5rem;
}

.location-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--gray);
    font-size: 1.1rem;
}

.location-info i {
    color: var(--primary-red);
    width: 20px;
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

#map {
    width: 100%;
    height: 100%;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-blue), var(--light-pink));
}

.faq h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark-blue);
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark-blue);
    transition: background 0.3s ease;
    font-family: 'Fredoka', sans-serif;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question i {
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark-blue), var(--primary-pink));
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.3rem;
    color: var(--light-pink);
    margin-bottom: 2.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-family: 'Fredoka', sans-serif;
    outline: none;
}

.newsletter-form button {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Fredoka', sans-serif;
}

.newsletter-form button:hover {
    background: #d32f2f;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--primary-dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light-pink);
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--light-pink);
}

.footer-section p {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--light-pink);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-pink);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--light-gray);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    color: var(--gray);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.close:hover {
    color: var(--primary-red);
}

.cart-total {
    text-align: right;
    margin: 2rem 0;
    font-size: 1.3rem;
    color: var(--primary-dark-blue);
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-pink));
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Fredoka', sans-serif;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 53, 116, 0.3);
}

/* CTA Buttons Section */
.cta-buttons-section {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2.5rem 0 2rem 0;
  flex-wrap: wrap;
}
.cta-buttons-section .cta-btn {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 2rem;
  padding: 0.85rem 2rem;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.whatsapp-btn {
  background: #25D366;
  color: #fff;
}
.whatsapp-btn i {
  margin-right: 0.7em;
  font-size: 1.3em;
}
.whatsapp-btn:hover {
  background: #1ebe5d;
  color: #fff;
}
.flutterwave-btn {
  background: #fcb900;
  color: #222;
  font-weight: bold;
}
.flutterwave-btn:hover {
  background: #e6a800;
  color: #111;
}
@media (max-width: 600px) {
  .cta-buttons-section {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .cta-buttons-section .cta-btn {
    width: 90%;
    justify-content: center;
    font-size: 1rem;
    padding: 0.9rem 0;
  }
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 2.2rem;
  right: 2.2rem;
  z-index: 3000;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  font-size: 2rem;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}
.floating-whatsapp-btn:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
  transform: scale(1.07);
}
.wa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
@media (max-width: 600px) {
  .floating-whatsapp-btn {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    bottom: 1.1rem;
    right: 1.1rem;
  }
  .wa-icon {
    font-size: 1.4rem;
  }
}

/* Flutterwave Modal Button */
.flutterwave-modal-btn {
  display: block;
  width: 100%;
  margin-top: 1rem;
  background: #fcb900;
  color: #111;
  font-weight: bold;
  text-align: center;
  border: none;
  border-radius: 1.5rem;
  padding: 0.95rem 0;
  font-size: 1.08rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.flutterwave-modal-btn:hover {
  background: #e6a800;
  color: #000;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .instagram-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
} 