* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

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

/* Header Styles */
.header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo img {
    height: 60px;
    width: auto;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #250633;
    letter-spacing: 0.5px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #666;
}



/* Hero Gallery Section */
.hero-gallery {
    background-color: #ffffff;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-image:first-child img {
    max-width: 70%;
}

.hero-image:nth-child(2) img {
    max-width: 80%;
}

.hero-image:nth-child(3) img {
    max-width: 90%;
}

.hero-image:nth-child(4) img {
    max-width: 90%;
}

/* Products Section */
.products-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #222;
}

.products-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f9f9f9;
}

.products-scroll::-webkit-scrollbar {
    height: 8px;
}

.products-scroll::-webkit-scrollbar-track {
    background: #f9f9f9;
}

.products-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.products-scroll::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.product-card {
    flex: 0 0 400px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

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

.product-name {
    padding: 25px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    color: #222;
}

/* Product Detail Page */
.product-detail-section {
    background-color: #ffffff;
    padding: 60px 0 80px;
    min-height: calc(100vh - 200px);
}

.back-link {
    display: inline-block;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #333;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-info {
    position: sticky;
    top: 120px;
}

.product-title {
    font-size: 48px;
    font-weight: 700;
    color: #222;
    margin-bottom: 30px;
    line-height: 1.2;
}

.product-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.product-description strong {
    color: #222;
    font-weight: 600;
}

.product-description em {
    font-style: italic;
    color: #444;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #25D366;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
}

.whatsapp-btn-mobile {
    display: none;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-gallery img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Policies Page */
.policies-section {
    background-color: #ffffff;
    padding: 80px 0 100px;
    min-height: calc(100vh - 200px);
}

.policies-title {
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    color: #222;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.policies-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.policy-card {
    background-color: #f9f9f9;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.policy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background-color: #f5f5f5;
}

.policy-icon {
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #250633;
    transition: all 0.3s ease;
}

.policy-card:hover .policy-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(37, 6, 51, 0.15);
}

.policy-icon svg {
    width: 48px;
    height: 48px;
}

.policy-title {
    font-size: 28px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.policy-description {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    max-width: 320px;
}

/* Contact Page */
.contact-section {
    background-color: #ffffff;
    padding: 80px 0 100px;
    min-height: calc(100vh - 200px);
}

.contact-title {
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    color: #222;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.contact-subtitle {
    font-size: 20px;
    text-align: center;
    color: #555;
    margin-bottom: 60px;
    line-height: 1.6;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    font-size: 20px;
    font-weight: 500;
}

.contact-item svg {
    flex-shrink: 0;
    color: #250633;
}

.contact-item:hover {
    background-color: #f0f0f0;
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-email:hover svg {
    color: #D44638;
}

.contact-instagram:hover svg {
    color: #E1306C;
}

.contact-whatsapp:hover svg {
    color: #25D366;
}

/* Footer */
.footer {
    background-color: #ffffff;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer p {
    color: #666;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .logo img {
        height: 50px;
    }

    .nav ul {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav a {
        font-size: 14px;
    }

    .hero-image:first-child img,
    .hero-image:nth-child(2) img,
    .hero-image:nth-child(3) img,
    .hero-image:nth-child(4) img {
        max-width: 100%;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .product-card {
        flex: 0 0 300px;
    }

    .product-image {
        height: 300px;
    }

    .product-name {
        font-size: 20px;
        padding: 20px;
    }

    /* Product Detail Responsive */
    .product-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-info {
        position: static;
    }

    .product-title {
        font-size: 36px;
    }

    .product-description {
        font-size: 16px;
    }

    .whatsapp-btn {
        font-size: 16px;
        padding: 14px 28px;
    }

    .whatsapp-btn-desktop {
        display: none;
    }

    .whatsapp-btn-mobile {
        display: inline-flex;
        margin-top: 20px;
    }

    /* Policies Page Responsive */
    .policies-title {
        font-size: 40px;
    }

    .policies-content {
        gap: 30px;
    }

    .policy-card {
        padding: 35px 25px;
    }

    .policy-title {
        font-size: 24px;
    }

    .policy-description {
        font-size: 16px;
    }

    /* Contact Page Responsive */
    .contact-title {
        font-size: 40px;
    }

    .contact-subtitle {
        font-size: 18px;
        padding: 0 20px;
    }

    .contact-item {
        font-size: 18px;
        padding: 25px;
        gap: 15px;
    }

    .contact-item svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }

    .nav ul {
        gap: 15px;
    }

    .nav a {
        font-size: 13px;
    }

    .section-title {
        font-size: 28px;
    }

    .product-card {
        flex: 0 0 250px;
    }

    .product-image {
        height: 250px;
    }

    .product-name {
        font-size: 18px;
        padding: 15px;
    }

    /* Product Detail Mobile */
    .product-title {
        font-size: 28px;
    }

    .product-description {
        font-size: 15px;
    }

    .whatsapp-btn-mobile {
        font-size: 15px;
        padding: 12px 24px;
        width: 100%;
        justify-content: center;
    }

    .back-link {
        font-size: 14px;
    }

    /* Policies Page Mobile */
    .policies-title {
        font-size: 32px;
    }

    .policies-content {
        gap: 25px;
        grid-template-columns: 1fr;
    }

    .policy-card {
        padding: 30px 20px;
    }

    .policy-icon {
        width: 70px;
        height: 70px;
    }

    .policy-icon svg {
        width: 40px;
        height: 40px;
    }

    .policy-title {
        font-size: 22px;
    }

    .policy-description {
        font-size: 15px;
    }

    /* Contact Page Mobile */
    .contact-title {
        font-size: 32px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    .contact-item {
        font-size: 16px;
        padding: 20px;
        gap: 12px;
    }

    .contact-item svg {
        width: 22px;
        height: 22px;
    }
}
