body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #ffffff 0%, #f3e5f5 100%);
    color: #7b1fa2;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    max-width: 150px;
    height: auto;
}

h1 {
    margin: 0;
    font-size: 2em;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

nav a {
    color: #7b1fa2;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffc107;
}

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

#hero {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 0;
    background: rgba(255,255,255,0.8);
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out;
}

.hero-content {
    flex: 1;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 3em;
    color: #7b1fa2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(255,193,7,0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255,193,7,0.4);
}

.hero-image {
    flex: 1;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

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

section {
    margin-bottom: 60px;
    padding: 40px 0;
    background: rgba(255,255,255,0.9);
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out;
}

section h2 {
    text-align: center;
    color: #7b1fa2;
    font-size: 2.5em;
    margin-bottom: 30px;
}

#about p {
    text-align: center;
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.product-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.product-item p {
    padding: 15px;
    margin: 0;
    font-weight: bold;
    color: #7b1fa2;
}

#contact {
    text-align: center;
}

#contact p {
    margin: 10px 0;
}

footer {
    background: #7b1fa2;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

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

/* Responsive */
@media (max-width: 768px) {
    #hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        max-width: 100%;
        width: 100%;
    }
    nav {
        flex-direction: column;
        gap: 10px;
    }
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    border-radius: 15px;
    width: 80%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #7b1fa2;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #ffc107;
}

.modal-gallery {
    text-align: center;
}

#modal-main-image {
    max-width: 100%;
    max-height: 60vh;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    object-fit: contain;
}

.thumbnail-gallery {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s;
}

.thumbnail.active {
    border-color: #7b1fa2;
}

.thumbnail:hover {
    border-color: #ffc107;
}

.modal-description {
    margin-top: 20px;
}

#modal-text {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}