* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #fff5f8;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

a:visited {
    color: inherit;
}

a:hover {
    color: inherit;
}

a:active {
    color: inherit;
}

header {
    background-color: #fd68a6;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.heart {
    color: #ff0000;
    font-size: 1.8rem;
    animation: heartBeat 1.5s infinite;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #fff5f8;
}

nav ul li a:visited {
    color: #fff;
}

nav ul li a:active {
    color: #fff;
}

main {
    margin-top: 80px;
    padding: 0;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.hero {
    text-align: center;
    padding: 8rem 2rem;
    background: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    margin: -80px 0 0 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.cta-button:hover {
    background-color: #cc0000;
    animation: none;
    transform: scale(1.05);
}

.features {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(253, 104, 166, 0.3);
}

.feature img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #fd68a6;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.feature .price {
    color: #ff0000;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.feature .description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-top: 0.5rem;
}

.feature .buy-button {
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    width: 100%;
}

.feature .buy-button:hover {
    background-color: #cc0000;
    animation: none;
    transform: scale(1.05);
}

.feature a, 
.feature a:visited,
.feature a:hover,
.feature a:active {
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(253, 104, 166, 0.3);
}

.product-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.8rem;
}

.product-card h3 {
    color: #fd68a6;
    margin: 0.4rem 0;
    font-size: 1.2rem;
}

.product-card .price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fd68a6;
    margin: 0.4rem 0;
}

.product-card .description {
    color: #666;
    margin: 0.4rem 0;
    line-height: 1.3;
    font-size: 0.9rem;
}

.price {
    font-size: 1.5rem;
    color: #fd68a6;
    margin: 1rem 0;
}

.buy-button {
    display: inline-block;
    background-color: #fd68a6;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
    cursor: pointer;
}

.buy-button:hover {
    background-color: #ff8fab;
}

.product-card a,
.product-card a:visited,
.product-card a:hover,
.product-card a:active {
    text-decoration: none;
    color: inherit;
}

.timeline {
    max-width: 800px;
    margin: 2rem auto;
}

.timeline-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(253, 104, 166, 0.2);
}

.access-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.access-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.access-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.access-method {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.access-method:hover {
    transform: translateY(-5px);
}

.access-method h3 {
    color: #fd68a6;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.access-method p {
    color: #666;
    line-height: 1.6;
}

footer {
    background-color: #fd68a6;
    color: white;
    text-align: center;
    padding: 1rem;
    width: 100%;
    margin-top: 2rem;
}

@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;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

.shop-description {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    margin: 4rem auto;
    max-width: 1000px;
    box-shadow: 0 2px 5px rgba(253, 104, 166, 0.2);
}

.shop-description .shop-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 8px rgba(253, 104, 166, 0.2);
}

.shop-description h2 {
    color: #fd68a6;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.shop-description p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.shop-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff5f8;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(253, 104, 166, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    color: #ff0000;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.stat-description {
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    padding: 0 1rem;
} 