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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    background: #A30D57;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

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

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

.logo img {
    display: block;
    max-width: 220px;
    width: 100%;
    height: auto;
}

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

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

.hero {
    background-image: url('/images/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 700px;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero p {
    max-width: 700px;
    margin: auto;
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: white;
    color: #A30D57;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
}

section {
    padding: 80px 0;
}

h2 {
    text-align: center;
    color: #A30D57;
    margin-bottom: 40px;
    font-size: 36px;
}

.product-grid,
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.product-card,
.benefit {
    background: #FFF4F8;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-card h3,
.benefit h3 {
    color: #A30D57;
    margin-bottom: 15px;
}

.price {
    display: block;
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #A30D57;
}

.about {
    background: #FFF4F8;
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: auto;
    font-size: 18px;
}

.contact form {
    max-width: 700px;
    margin: auto;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.contact button {
    background: #C21868;
    color: white;
}

.contact button:hover,
.btn:hover {
    background: #8A0841;
    color: white;
}

footer {
    background: #7A0B42;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

footer p {
    margin: 5px 0;
}

@media (max-width: 768px) {
	
	.logo img {
        max-width: 180px;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }
}

.language-switcher {
    display: flex;
    gap: 8px;
}

.lang-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.lang-btn:hover {
    background: rgba(255,255,255,0.15);
}

.lang-btn.active {
    background: #fff;
    color: #A30D57;
}

.footer-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 16px;

    color: #ffffff;
    text-decoration: none;

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;

    transition: all .3s ease;
}

.footer-social a:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.product-hero {
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        #FFF4F8 0%,
        #FFFFFF 100%
    );
}

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

.product-badge {
    display: inline-block;
    background: #C21868;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.product-hero h1 {
    font-size: 52px;
    line-height: 1.1;
    color: #A30D57;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-hero-image img {
    width: 100%;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #A30D57;
    color: #A30D57;
}

.product-gallery {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: 16px;
}

.gallery-grid img {
    width: 100%;
    display: block;
    transition: transform .4s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}