:root {
    --primary-color: #ff92c2;
    --secondary-color: #ffb3d1;
    --accent-color: #ff92c2;
    --background-color: #fff5f8;
    --text-color: #4A4A4A;
    --light-pink: #fff5f8;
    --dark-pink: #ff92c2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--light-pink);
    color: var(--text-color);
    line-height: 1.6;
}

header {
    background-color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(255, 146, 194, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    display: inline-block;
}

.pulse-heart {
    display: inline-block;
    animation: pulse 1.5s infinite;
    color: #ff0000;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

main {
    margin-top: 80px;
    padding: 2rem 5%;
}

.hero {
    text-align: center;
    padding: 6rem 0;
    background: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 1.5rem 3rem;
    background-color: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 2rem;
    font-weight: bold;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.pulse-button {
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    }
}

.cta-button:hover {
    transform: translateY(-3px);
    background-color: #cc0000;
}

.featured-products {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-products h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2.2rem;
    text-shadow: 1px 1px 2px rgba(255, 146, 194, 0.3);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 3px 10px rgba(255, 146, 194, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid var(--secondary-color);
    display: block;
    text-decoration: none;
    color: var(--text-color);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.product-card button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(255, 146, 194, 0.3);
}

.product-card button:hover {
    background-color: var(--dark-pink);
    transform: translateY(-2px);
}

.product-card .buy-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(255, 146, 194, 0.3);
    margin-top: 1rem;
}

.product-card .buy-button:hover {
    background-color: var(--dark-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 146, 194, 0.4);
}

.product-card .buy-text {
    display: inline-block;
    background-color: #ff0000;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    font-weight: bold;
    animation: buttonPulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.product-card:hover .buy-text {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}

footer {
    background-color: white;
    padding: 3rem 5%;
    margin-top: 4rem;
    border-top: 2px solid var(--secondary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--dark-pink);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-color);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}

/* Стили для страницы контактов */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 1px solid var(--secondary-color);
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 1px solid var(--secondary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(255, 146, 194, 0.3);
}

.submit-btn:hover {
    background-color: var(--dark-pink);
}

/* Стили для страницы о нас */
.about-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.about-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 1px solid var(--secondary-color);
}

.about-text h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.values-list {
    list-style: none;
    margin: 1rem 0;
}

.values-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.values-list li::before {
    content: "❤";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Стили для страницы корзины */
.cart-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.cart-items {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 1px solid var(--secondary-color);
}

.cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--secondary-color);
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.item-details h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.item-quantity button {
    background-color: var(--primary-color);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.item-quantity button:hover {
    background-color: var(--dark-pink);
}

.remove-item {
    background-color: #ff4444;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.remove-item:hover {
    background-color: #cc0000;
}

.cart-summary {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    height: fit-content;
    border: 1px solid var(--secondary-color);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.summary-item.total {
    font-weight: bold;
    font-size: 1.2rem;
    border-top: 1px solid var(--secondary-color);
    padding-top: 1rem;
    margin-top: 1rem;
}

.checkout-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(255, 146, 194, 0.3);
}

.checkout-btn:hover {
    background-color: var(--dark-pink);
}

/* Стили для фильтров на странице товаров */
.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    background-color: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 768px) {
    .contact-container,
    .cart-container {
        grid-template-columns: 1fr;
    }

    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cart-item img {
        margin: 0 auto;
    }

    .item-quantity {
        justify-content: center;
    }

    .filters {
        flex-wrap: wrap;
    }
}

/* Стили для страницы VPN */
.vpn-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.vpn-content {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.vpn-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(255, 146, 194, 0.2);
}

.step h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step img {
    width: 100%;
    max-width: 400px;
    height: 250px;
    border-radius: 8px;
    margin: 1rem auto;
    display: block;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.step ul, .step ol {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.step li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.important-notice {
    background-color: #fff5f8;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
}

.important-notice h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.vpn-help {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(255, 146, 194, 0.2);
    margin-top: 2rem;
}

.vpn-help h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.vpn-help a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.vpn-help a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .vpn-section {
        padding: 1rem;
    }

    .step {
        padding: 1.5rem;
    }

    .step h2 {
        font-size: 1.5rem;
    }
} 