/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #fce4ec 0%, #e1f5fe 50%, #f3e5f5 100%);
    background-attachment: fixed;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 50%, #3f51b5 100%);
    color: white;
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.4);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.logo-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.header-logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: -5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.95;
    font-style: italic;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex: 1;
    justify-content: flex-end;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: white;
    transition: width 0.3s;
}

.nav-links a:hover:after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.8) 0%, rgba(156, 39, 176, 0.8) 50%, rgba(103, 58, 183, 0.8) 100%), url('images/soapcoverpage.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 140px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    font-weight: 800;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.98;
    animation: fadeInUp 1s ease 0.2s backwards;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff4081 0%, #f50057 100%);
    color: white;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s;
    animation: fadeInUp 1s ease 0.4s backwards;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.6);
    background: linear-gradient(135deg, #f50057 0%, #ff4081 100%);
}

/* Products Section */
.products {
    padding: 100px 20px;
    background: linear-gradient(180deg, #fce4ec 0%, #e1f5fe 100%);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    font-style: italic;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.2);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(156, 39, 176, 0.4);
    border-color: #9c27b0;
}

.product-card.featured {
    border: 3px solid #e91e63;
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.3);
}

.product-card.featured:hover {
    border-color: #9c27b0;
}

.product-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-image.ayukid {
    background: linear-gradient(135deg, #ff80ab 0%, #f48fb1 100%);
}

.product-image.looks {
    background: linear-gradient(135deg, #ce93d8 0%, #ba68c8 100%);
}

.product-image.ayuderm {
    background: linear-gradient(135deg, #81d4fa 0%, #4fc3f7 100%);
}

.product-image.panchagavya {
    background: linear-gradient(135deg, #f48fb1 0%, #ce93d8 100%);
}

.product-image.detergent {
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff4081 0%, #f50057 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(233, 30, 99, 0.3);
}

.product-badge.bestseller {
    background: linear-gradient(135deg, #ff4081 0%, #e91e63 100%);
    color: white;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.product-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
    min-height: 80px;
}

.product-features {
    list-style: none;
    margin-bottom: 1rem;
}

.product-features li {
    padding: 0.3rem 0;
    color: #555;
    font-size: 0.85rem;
}

.buy-button {
    width: 100%;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.buy-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.5);
    background: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%);
}

/* Benefits Section */
.benefits {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f3e5f5 0%, #e1f5fe 100%);
}

.benefits .section-title {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 20px;
    background: white;
    transition: all 0.3s;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(156, 39, 176, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(156, 39, 176, 0.3);
    border-color: #9c27b0;
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.benefit-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* About Section */
.about {
    padding: 100px 20px;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 50%, #673ab7 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about .section-title {
    color: white;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
    font-weight: 800;
}

.about-text {
    max-width: 900px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    line-height: 2;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: linear-gradient(180deg, #fce4ec 0%, #e1f5fe 100%);
}

.contact .section-title {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.2);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.2);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 18px;
    margin-bottom: 1.5rem;
    border: 2px solid #f3e5f5;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #fce4ec;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #9c27b0;
    background: white;
    box-shadow: 0 0 15px rgba(156, 39, 176, 0.2);
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.5);
    background: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #4a148c 0%, #311b92 100%);
    color: white;
    text-align: center;
    padding: 3rem 0;
}

footer p {
    margin: 0.5rem 0;
    font-size: 1rem;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .logo h1 {
        font-size: 1.7rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 80px 20px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 14px 35px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
