@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Playfair+Display:ital,wght@0,700;1,700&family=Great+Vibes&display=swap');

:root {
    --primary-color: #d47fa6;
    /* Deep Rose */
    --secondary-color: #ff9eb7;
    /* Soft Pink */
    --accent-color: #eebbce;
    /* Blush */
    --bg-light: #fff5f9;
    /* Soft Pink White */
    --text-dark: #2c1810;
    /* Dark Brown */
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(212, 127, 166, 0.15);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    margin: 0;
    line-height: 1.6;
}

/* --- UTILITIES --- */
a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin: 20px auto;
    border-radius: 2px;
}

/* --- LOGO ANIMATION (Premium Calligraphy) --- */
.logo {
    font-family: 'Great Vibes', cursive !important;
    /* Elegant handwritten font */
    font-weight: 400;
    font-size: 2.5rem !important;
    background: linear-gradient(to right, #e07a5f, #f2cc8f, #e07a5f);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 4s linear infinite;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 2px 2px rgba(212, 127, 166, 0.3));
    padding-right: 15px;
}

/* .logo::after removed to delete the heart emoji */

@keyframes shine {
    to {
        background-position: 200% center;
    }
}


@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* --- MARQUEE (New Fixed Version) --- */
.marquee-container {
    background: var(--primary-color);
    color: white;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 100;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.marquee-content span {
    display: inline-block;
    padding-right: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- HERO SECTION (Playful) --- */
.hero-section-new {
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #ffffff 0%, #fff5f9 100%);
}

.hero-title-new {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title-new em {
    color: var(--primary-color);
    font-style: normal;
    text-decoration: underline wavy var(--secondary-color);
}

.hero-badge {
    background: #ffe4ec;
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-flower-top {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
}

.hero-decoration-left {
    position: absolute;
    left: 5%;
    top: 40%;
    font-size: 4rem;
    opacity: 0.2;
    transform: rotate(-20deg);
}

.hero-decoration-right {
    position: absolute;
    right: 5%;
    top: 40%;
    font-size: 4rem;
    opacity: 0.2;
    transform: rotate(20deg);
}

.btn-main {
    background: var(--primary-color);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(212, 127, 166, 0.4);
    border: none;
}

.btn-main:hover {
    transform: translateY(-3px);
    background: #c06590;
    color: white;
}

/* --- CARDS & GRID --- */
.feature-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.category-card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #ffe4ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.product-card {
    display: block;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.product-img-wrapper {
    position: relative;
    padding-top: 100%;
    background: #f8f8f8;
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* --- TRENDING FEATURES --- */
.testimonial-scroller {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 5%;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonial-scroller::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 300px;
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    scroll-snap-align: center;
    border: 1px solid #ffe4ec;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.insta-item {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: 0.3s;
}

.insta-item:hover {
    opacity: 0.8;
}

.floating-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(212, 127, 166, 0.4);
    z-index: 999;
}

.floating-chat-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* --- ANIMATIONS --- */
@keyframes float {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -10px);
    }
}

.animate-fade-up {
    animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- LOGIN / FORMS --- */
.form-control {
    background-color: #ffe4ec !important;
    /* Soft Pink */
    border: 1px solid var(--secondary-color);
    color: var(--text-dark);
}

.form-control:focus {
    background-color: white !important;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(212, 127, 166, 0.25);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-title-new {
        font-size: 2.5rem;
    }

    .marquee-content {
        animation-duration: 15s;
    }
}

/* --- NAVBAR LOGO ANIMATION --- */
.navbar-logo-anim {
    height: 50px;
    width: 50px;
    overflow: visible;
}

.anim-tool-left {
    transform-origin: 50% 50%;
    opacity: 0;
    animation: nav-assemble-left 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.anim-tool-right {
    transform-origin: 50% 50%;
    opacity: 0;
    animation: nav-assemble-right 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.anim-yarn {
    transform: translateY(-50px);
    opacity: 0;
    animation: nav-drop-yarn 1s cubic-bezier(0.5, 0, 0.5, 1.5) 0.8s forwards;
}

.anim-thread {
    fill: none;
    stroke: #d47fa6;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: nav-weave-heart 1.8s ease-in-out 1.5s forwards;
    filter: drop-shadow(0px 2px 3px rgba(212, 127, 166, 0.3));
}

@keyframes nav-assemble-left {
    to {
        transform: translateX(0) rotate(-25deg);
        opacity: 1;
    }
}

@keyframes nav-assemble-right {
    to {
        transform: translateX(0) rotate(25deg);
        opacity: 1;
    }
}

@keyframes nav-drop-yarn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes nav-weave-heart {
    to {
        stroke-dashoffset: 0;
    }
}

.navbar-brand:hover .navbar-logo-anim {
    animation: nav-sway 3s infinite ease-in-out;
}

@keyframes nav-sway {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(2deg);
    }

    75% {
        transform: rotate(-2deg);
    }
}