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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2D3748;
    background-color: #FAFAFA;
}

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



/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #2D3748;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #FFB6C1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFB6C1;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2D3748;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: white;
    position: relative;
    padding: 100px 20px 20px;
}

.hero-badge {
    display: inline-block;
    background: #FFB6C1;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
}

.hero-main {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex: 1;
    min-height: 0;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.store-carousel-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.store-carousel-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2D3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.store-carousel-section p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(255, 182, 193, 0.3);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

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

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    text-align: center;
}

.carousel-caption h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.carousel-caption p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
    margin: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 182, 193, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #FFB6C1;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #FFB6C1;
}

.instagram-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.instagram-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2D3748;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.instagram-feed {
    display: flex;
    justify-content: center;
    width: 100%;
}

.instagram-media {
    max-width: 100% !important;
    min-width: 280px !important;
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.3) !important;
    border-radius: 15px !important;
}



.hero-bottom-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #FFB6C1;
    color: white;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
}

.btn-secondary {
    background: white;
    color: #2D3748;
    border: 2px solid #FFB6C1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #FFB6C1;
    color: white;
    transform: translateY(-2px);
}

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

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2D3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-header p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2D3748;
    margin-bottom: 2rem;
    font-weight: 600;
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #F7FAFC;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #EDF2F7;
    transform: translateX(5px);
}

.feature-icon {
    font-size: 2rem;
    margin-top: 0.2rem;
}

.feature-item h4 {
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.5;
}

.store-preview {
    background: linear-gradient(135deg, #FFB6C1, #FFCCCB);
    border-radius: 25px;
    padding: 2.5rem;
    color: white;
    text-align: center;
    box-shadow: 0 15px 35px rgba(229, 62, 62, 0.3);
}

.preview-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.preview-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.preview-item i {
    font-size: 1.2rem;
    opacity: 0.8;
}

.preview-item span {
    font-weight: 500;
    line-height: 1.4;
}



/* Brands Section */
.brands {
    padding: 6rem 0;
    background: white;
}

.brands-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.brands-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.brands-image:hover {
    transform: scale(1.02);
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: #F7FAFC;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-category {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
}

.product-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.product-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2D3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-category p {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-category ul {
    list-style: none;
    text-align: left;
}

.product-category li {
    padding: 0.5rem 0;
    color: #4A5568;
    font-weight: 500;
    border-bottom: 1px solid #E2E8F0;
}

.product-category li:last-child {
    border-bottom: none;
}



/* Social Media Section */
.social-media {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FED7D7 0%, #FEB2B2 100%);
    color: #2D3748;
}

.social-media .section-header h2,
.social-media .section-header p {
    color: #2D3748;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.social-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    text-decoration: none;
    color: #2D3748;
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.social-icon {
    width: 80px;
    height: 80px;
    background: #FFB6C1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}

.social-icon i {
    font-size: 2rem;
    color: white;
}

.social-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-card p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-stats {
    font-size: 0.9rem;
    color: #FFB6C1;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #F7FAFC;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #FFB6C1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2D3748;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-content p {
    color: #718096;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2D3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-section p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

/* Footer */
.footer {
    background: white;
    color: #2D3748;
    padding: 3rem 0 1rem;
    border-top: 1px solid #E2E8F0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #FFB6C1;
    font-weight: 600;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #718096;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFB6C1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #FFB6C1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FF91A4;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #E2E8F0;
    color: #718096;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 90px 10px 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-bottom-buttons {
        gap: 10px;
    }
    
    .store-carousel-section h2 {
        font-size: 2rem;
    }
    
    .store-carousel-section p {
        font-size: 1rem;
    }
    
    .carousel-container {
        max-width: 100%;
    }
    
    .carousel-wrapper {
        height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .instagram-section h3 {
        font-size: 1.5rem;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .footer-logo {
        height: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-content {
        margin-top: 2rem;
    }
    
    .brands-image {
        max-width: 90%;
    }
    

    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .product-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 5px 10px;
    }
    
    .hero-content {
        padding: 0 10px;
        gap: 1.5rem;
    }
    
    .hero-bottom-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .store-carousel-section h2 {
        font-size: 1.8rem;
    }
    
    .store-carousel-section p {
        font-size: 0.95rem;
    }
    
    .carousel-wrapper {
        height: 250px;
    }
    
    .carousel-caption {
        padding: 1rem;
    }
    
    .carousel-caption h3 {
        font-size: 1.2rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .instagram-section h3 {
        font-size: 1.3rem;
    }
    
    .instagram-media {
        min-width: 280px !important;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .brands-image {
        max-width: 85%;
    }
    
    .product-category {
        padding: 2rem;
    }
    

    
    .cta-section {
        padding: 2rem;
    }
} 