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

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

header {
    background: #ffe0eb;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(255, 146, 194, 0.2);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff92c2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.heart {
    color: #ff0000;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

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

nav ul li a {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff92c2;
}

.hero {
    text-align: center;
    background: linear-gradient(135deg, #ffe0eb 0%, #ffc0cb 100%);
    padding: 0;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin: 0;
    box-shadow: 0 5px 15px rgba(255, 146, 194, 0.2);
}

.hero-content {
    padding: 1rem;
    text-align: center;
    margin-top: -4rem;
    position: relative;
    z-index: 5;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    margin-bottom: -2rem;
}

.hero-content h1 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 2.5rem;
}

.hero-content p {
    margin-bottom: 2rem;
    color: #666;
    font-size: 1.2rem;
}

.price-info {
    color: #ff0000;
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.shop-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem 0;
    animation: pulse-red 2s infinite;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.shop-button:hover {
    background: #ff3333;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
}

@keyframes pulse-red {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product {
    text-align: center;
    padding: 1rem;
    border: 1px solid #ffcce0;
    border-radius: 5px;
    transition: transform 0.3s;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 146, 194, 0.2);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

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

.delivery-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.delivery-option {
    margin: 2rem 0;
    padding: 1.5rem;
    border: 1px solid #ffcce0;
    border-radius: 5px;
}

.contacts-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    padding: 1rem;
    background: #fff5f9;
    border-radius: 5px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ffcce0;
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff92c2;
}

footer {
    text-align: center;
    padding: 2rem;
    background: #ffe0eb;
    margin-top: 2rem;
    border-top: 1px solid #ffc0cb;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 1rem;
        flex-direction: column;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #ff92c2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background: #ff6eab;
}

.popular-products {
    padding: 2rem 2rem;
    margin-top: -8rem;
    background: linear-gradient(135deg, #ffc0cb 0%, #ffe0eb 100%);
    position: relative;
    z-index: 1;
}

.popular-products h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 2.2rem;
    padding-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 146, 194, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #ffe0eb;
}

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

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px solid #ffcce0;
}

.product-card h3 {
    padding: 1rem;
    color: #333;
    font-size: 1.3rem;
    margin: 0;
}

.product-description {
    padding: 0 1rem;
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.product-price {
    padding: 0 1rem 1rem;
    color: #ff0000;
    font-weight: bold;
    font-size: 1.2rem;
}

.info-blocks {
    padding: 4rem 2rem;
    background: #fff0f5;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-block {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 146, 194, 0.15);
    border: 1px solid #ffe0eb;
}

.info-block h3 {
    color: #ff92c2;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.info-block p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        margin-bottom: 2rem;
    }
}

.features {
    background: #fff0f5;
    padding: 4rem 0;
    margin-top: 2rem;
}

.about-image {
    max-width: 100%;
    height: auto;
    width: 50%;
    display: block;
    margin: 0 auto;
} 