/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Comfortaa:wght@400;500;600;700&display=swap');

/* Modern CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #FF69B4;
    --secondary-color: #FFB6C1;
    --accent-color: #FFC0CB;
    --text-color: #4A4A4A;
    --light-bg: #FFF0F5;
    --white: #FFFFFF;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Comfortaa', cursive;
    color: var(--primary-color);
}

/* Navigation */
.navbar {
    background-color: var(--white);
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

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

/* Hero Section */
.hero {
    background-color: var(--light-bg);
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.hero-content {
    text-align: left;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Comfortaa', cursive;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background-color: var(--light-bg);
    transition: transform 0.3s ease;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Products Section */
.products-section {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.products-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.products-section > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

/* Products Slider */
.products-slider {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.products-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
}

.product-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    color: var(--text-color);
}

.product-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.product-price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.slider-controls button {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.slider-controls button:hover {
    background-color: var(--primary-color);
}

.slider-controls button:hover svg {
    fill: white;
}

.slider-controls button svg {
    fill: var(--text-color);
    transition: fill 0.3s ease;
}

.prev-btn {
    margin-left: -20px;
}

.next-btn {
    margin-right: -20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .product-card {
        flex: 0 0 calc(100% - 1rem);
    }

    .product-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .slider-controls button {
        width: 32px;
        height: 32px;
    }
}

/* B2B Section */
.b2b-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.b2b-content {
    margin-top: 3rem;
}

.b2b-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.b2b-benefits {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    display: inline-block;
}

.b2b-benefits li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.b2b-benefits i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background-color: var(--light-bg);
}

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

.contact-info {
    display: grid;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.social-links a {
    color: var(--white);
    margin: 0 1rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Section Headers */
section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* Retailers Section */
.retailers-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.retailers-slider {
    position: relative;
    margin: 3rem 0;
    overflow: hidden;
}

.retailers-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.retailer-card {
    flex: 0 0 calc(25% - 1.5rem);
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.retailer-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.retailer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.retailer-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.retailer-card p {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
}

.prev-btn, .next-btn {
    background-color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: background-color 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.retailers-cta {
    text-align: center;
    margin-top: 3rem;
}

.retailers-cta p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* B2B Page Styles */
.b2b-hero {
    background: linear-gradient(rgba(255, 240, 245, 0.9), rgba(255, 240, 245, 0.9)), url('https://images.unsplash.com/photo-1558857563-7d3f1b5c4c1c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    color: var(--text-color);
    padding: 6rem 0;
    text-align: center;
}

.b2b-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.b2b-benefits-section {
    padding: 6rem 0;
    background-color: var(--light-bg);
}

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

.benefit-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.ordering-process {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

.b2b-contact {
    padding: 6rem 0;
    background-color: var(--light-bg);
}

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

.b2b-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.b2b-form select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background-color: var(--white);
}

/* Responsive Design for Retailers Section */
@media (max-width: 1024px) {
    .retailer-card {
        flex: 0 0 calc(33.333% - 1.33rem);
    }
}

@media (max-width: 768px) {
    .retailer-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .retailer-card {
        flex: 0 0 100%;
    }

    .slider-controls {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image {
        height: 400px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        text-align: center;
    }

    .info-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-image {
        height: 250px;
    }

    .feature-card {
        padding: 1.5rem;
    }

    section h2 {
        font-size: 2rem;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 3rem 0;
    background-color: var(--light-bg);
}

.reviews-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.reviews-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Review Form */
.review-form-container {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 2rem;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group input[type="text"],
.form-group textarea {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Star Rating */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.25rem;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #ffd700;
}

.submit-review {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-review:hover {
    background-color: var(--primary-dark);
}

/* Reviews Slideshow */
.reviews-slider {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.review-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: white;
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.review-header h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-color);
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #ddd;
    font-size: 1rem;
}

.star.filled {
    color: #ffd700;
}

.review-text {
    color: var(--text-color);
    line-height: 1.4;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.review-date {
    color: #666;
    font-size: 0.8rem;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.slider-controls button {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.slider-controls button:hover {
    background-color: var(--primary-color);
}

.slider-controls button:hover svg {
    fill: white;
}

.slider-controls button svg {
    fill: var(--text-color);
    transition: fill 0.3s ease;
}

.prev-btn {
    margin-left: -20px;
}

.next-btn {
    margin-right: -20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .review-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 992px) {
    .reviews-content {
        grid-template-columns: 1fr;
    }

    .review-form-container {
        position: static;
        margin-bottom: 2rem;
    }

    .review-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 calc(100% - 1rem);
    }

    .star-rating label {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .review-form-container {
        padding: 1rem;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .slider-controls button {
        width: 32px;
        height: 32px;
    }
} 

/* Standardize review card size */
.review-card {
    width: 320px;
    min-width: 320px;
    max-width: 320px;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    overflow: hidden;
}
.review-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    min-height: 72px;
    max-height: 96px;
} 