@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');

:root {
    --brand-pink: #E84393;
    --brand-light-pink: #FD79A8;
    --bg-creamy: #FFF5F7;
    --brand-dark: #2D3436;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-creamy);
    color: var(--brand-dark);
}

.product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-12px);
    border-color: #ffe4e6;
    box-shadow: 0 20px 25px -5px rgba(232, 67, 147, 0.15), 0 8px 10px -6px rgba(232, 67, 147, 0.1);
}

.product-card img {
    transition: transform 0.6s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

.btn-primary {
    background-color: var(--brand-pink);
    color: white;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
}

.btn-primary:hover {
    background-color: var(--brand-light-pink);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 67, 147, 0.4);
}

.category-title-line {
    height: 4px;
    width: 60px;
    background-color: var(--brand-pink);
    border-radius: 4px;
    margin-top: 8px;
}

.category-card {
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 20px rgba(232, 67, 147, 0.2);
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    background-color: #fff;
    padding: 15px 0;
    border-top: 1px solid #ffe4e6;
    border-bottom: 1px solid #ffe4e6;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.review-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 40px;
    color: #4b5563;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.review-item:hover {
    color: var(--brand-pink);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 180px;
}

.corver-link {
    transition: text-shadow 0.3s ease, color 0.3s ease;
}

.corver-link:hover {
    color: #ff6b81;
    text-shadow: 0 0 10px rgba(232, 67, 147, 0.8), 0 0 20px rgba(232, 67, 147, 0.6), 0 0 30px rgba(232, 67, 147, 0.4);
}