
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #fff0f6, #ffe3ec);
    color: #333;
    animation: fadeInPage 1s ease;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #e91e63;
}

.nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #e91e63;
    left: 0;
    bottom: -4px;
    transition: 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

.hero {
    text-align: center;
    padding: 35px 20px 5px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #e91e63;
    margin-bottom: 6px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(233,30,99,0.25);
}

.hero p {
    color: #777;
    font-size: 15px;
    letter-spacing: 1px;
}

.ticker {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #ff4d88, #d81b60);
    padding: 8px 0;
    margin: 8px 0 0;
    box-shadow: 0 5px 15px rgba(233,30,99,0.2);
}

.ticker-track {
    display: flex;
    width: 200%;
    animation: tickerMove 20s linear infinite;
}

.ticker span {
    width: 50%;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.catalog {
    padding: 15px 60px 40px;
}

.catalog h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.controls input,
.controls select {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-family: inherit;
    background: white;
}

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

.card {
    background: white;
    border-radius: 18px;
    padding: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;

    border: 2px solid rgba(255, 105, 180, 0.3);

    box-shadow:
            0 0 10px rgba(255, 105, 180, 0.25),
            0 10px 25px rgba(0,0,0,0.06);

    transition: 0.30s ease;
}

.card:hover {
    transform: translateY(-6px) scale(1.03);

    border: 2px solid rgba(255, 20, 147, 0.6);

    box-shadow:
            0 0 20px rgba(255, 20, 147, 0.6),
            0 0 40px rgba(255, 105, 180, 0.4),
            0 20px 40px rgba(233,30,99,0.2);
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,0.4),
            transparent
    );
    opacity: 0;
    transition: 0.4s;
}

.card:hover::before {
    opacity: 1;
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.card h3 {
    margin: 15px 0 5px;
    font-weight: 600;
}

.card p {
    color: #e91e63;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
}

.card button {
    padding: 9px 18px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(90deg, #ff4d88, #ff7ab6);
    color: white;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.card button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(233,30,99,0.25);
}

.contacts {
    text-align: center;
    padding: 45px 20px;
    background: #ffe3ec;
}

.contacts h2 {
    margin-bottom: 15px;
}

.footer {
    text-align: center;
    padding: 18px;
    background: white;
    color: #999;
}

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

@keyframes tickerMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}