/* Yugaa Bedding - Homepage v1 */

:root {
    --yugaa-purple: #6b247f;
    --yugaa-purple-dark: #47155c;
    --yugaa-blue: #287cc4;
    --ink: #17151a;
    --muted: #6f6b75;
    --surface: #f7f7f9;
    --white: #fff;
    --border: rgba(23, 21, 26, .09);
    --shadow: 0 18px 55px rgba(30, 18, 40, .09);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: "Inter", sans-serif;
    line-height: 1.65;
    padding-bottom: 0;
}

h1, h2, h3, h4, .navbar-brand {
    font-family: "Poppins", sans-serif;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -.04em;
}

p { color: var(--muted); }

a { text-decoration: none; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,.05);
}

.navbar { min-height: 84px; }

.navbar-brand img {
    width: 150px;
    height: auto;
    display: block;
}

.nav-link {
    color: #403b45 !important;
    font-weight: 600;
    font-size: .92rem;
    padding: .7rem .7rem !important;
}

.nav-link:hover, .nav-link.active { color: var(--yugaa-purple) !important; }

.btn-brand {
    background: linear-gradient(135deg, var(--yugaa-purple), var(--yugaa-blue));
    color: #fff;
    border: 0;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(82, 41, 126, .18);
}

.btn-brand:hover {
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-brand {
    border: 1px solid rgba(107,36,127,.35);
    color: var(--yugaa-purple);
    border-radius: 12px;
    font-weight: 700;
    background: rgba(255,255,255,.65);
}

.btn-outline-brand:hover {
    background: var(--yugaa-purple);
    color: #fff;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 95px 0 110px;
    background:
        radial-gradient(circle at 90% 15%, rgba(40,124,196,.14), transparent 32%),
        radial-gradient(circle at 5% 70%, rgba(107,36,127,.10), transparent 30%),
        linear-gradient(135deg, #fff 0%, #faf8fc 55%, #f4f8fc 100%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: .65;
}

.orb-1 {
    width: 320px;
    height: 320px;
    right: -120px;
    top: 160px;
    background: rgba(40,124,196,.10);
}

.orb-2 {
    width: 220px;
    height: 220px;
    left: -90px;
    bottom: 30px;
    background: rgba(107,36,127,.08);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--yugaa-purple);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.eyebrow span {
    width: 28px;
    height: 2px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--yugaa-purple), var(--yugaa-blue));
}

.eyebrow.justify-content-center span:first-child { order: 0; }

.hero-section h1 {
    font-size: clamp(3rem, 6vw, 5.7rem);
    line-height: .98;
    letter-spacing: -.065em;
    font-weight: 800;
    margin: 0 0 24px;
}

.hero-section h1 span {
    background: linear-gradient(90deg, var(--yugaa-purple), var(--yugaa-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy {
    max-width: 600px;
    font-size: 1.08rem;
    margin-bottom: 30px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 26px;
    color: #514b56;
    font-size: .86rem;
    font-weight: 600;
}

.hero-trust i { color: var(--yugaa-purple); margin-right: 5px; }

.hero-product {
    position: relative;
    min-height: 510px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-frame {
    width: min(560px, 100%);
    border-radius: 34px;
    overflow: hidden;
    background: #d9edf9;
    box-shadow: 0 35px 80px rgba(32, 42, 62, .18);
    transform: rotate(1deg);
}

.hero-image-frame img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    z-index: 2;
    right: 3%;
    top: 6%;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 5px solid rgba(107,36,127,.12);
}

.hero-badge strong { font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; }
.hero-badge b { font-size: 2rem; line-height: 1; color: var(--yugaa-purple); font-family: "Poppins"; }
.hero-badge span { font-size: .58rem; color: var(--muted); }

.hero-floating-card {
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 5%;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    padding: 17px 20px;
    box-shadow: var(--shadow);
    max-width: 250px;
}

.hero-floating-card small {
    display: block;
    color: var(--yugaa-purple);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 800;
    font-size: .62rem;
}

.hero-floating-card strong {
    display: block;
    font-family: "Poppins";
    font-size: .98rem;
    line-height: 1.25;
    margin: 3px 0;
}

.hero-floating-card span { color: var(--muted); font-size: .76rem; }

.finder-section, .why-section, .pillows-section, .dealer-section {
    padding: 105px 0;
}

.section-heading { margin-bottom: 42px; }
.section-heading h2 { margin-bottom: 13px; }
.section-heading p { margin-bottom: 0; max-width: 670px; }

.finder-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.finder-option {
    width: 100%;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    transition: .2s ease;
}

.finder-option:hover, .finder-option.active {
    border-color: rgba(107,36,127,.35);
    box-shadow: 0 12px 30px rgba(107,36,127,.08);
    transform: translateY(-2px);
}

.finder-option > i {
    font-size: 1.65rem;
    color: var(--yugaa-purple);
}

.finder-option strong { display: block; font-family: "Poppins"; }
.finder-option small { display: block; color: var(--muted); }

.finder-divider {
    height: 1px;
    background: var(--border);
    margin: 28px 0;
}

.finder-label {
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 800;
    margin-bottom: 10px;
}

.size-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-pill {
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 50px;
    padding: 8px 15px;
    font-size: .84rem;
    font-weight: 700;
}

.size-pill:hover, .size-pill.active {
    color: #fff;
    background: var(--yugaa-purple);
    border-color: var(--yugaa-purple);
}

.products-section {
    padding: 105px 0;
    background: var(--surface);
}

.text-link, .product-link {
    color: var(--yugaa-purple);
    font-weight: 800;
}

.product-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    transition: .25s ease;
}

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

.product-image {
    position: relative;
    aspect-ratio: 1 / .9;
    overflow: hidden;
    background: #e8f4fb;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s ease;
}

.product-card:hover .product-image img { transform: scale(1.04); }

.product-tag {
    position: absolute;
    left: 14px;
    top: 14px;
    background: rgba(255,255,255,.94);
    color: var(--yugaa-purple);
    border-radius: 50px;
    padding: 6px 10px;
    font-size: .64rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.product-body { padding: 22px; }
.product-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.product-body p { font-size: .86rem; min-height: 67px; margin-bottom: 15px; }

.featured-section { padding: 105px 0; }

.featured-wrap {
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(135deg, #5c1f75, #2677b9);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.featured-image {
    min-height: 570px;
    background: #bfe1f3;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content h2 { margin-bottom: 20px; }
.featured-content p { color: rgba(255,255,255,.82); max-width: 520px; }

.eyebrow.light { color: rgba(255,255,255,.9); }
.eyebrow.light span { background: rgba(255,255,255,.8); }

.feature-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 30px;
}

.feature-list li {
    margin: 10px 0;
    color: rgba(255,255,255,.92);
}

.feature-list i {
    margin-right: 9px;
    color: #fff;
}

.why-section { background: #fff; }

.why-card {
    height: 100%;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    transition: .2s ease;
}

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

.icon-box {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--yugaa-purple);
    background: linear-gradient(135deg, rgba(107,36,127,.10), rgba(40,124,196,.10));
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.why-card h3 { font-size: 1.12rem; }
.why-card p { font-size: .88rem; margin: 0; }

.warranty-section { padding: 0 0 105px; }

.warranty-card, .custom-card, .contact-card {
    border-radius: 28px;
    padding: 48px 55px;
    color: #fff;
    background: linear-gradient(135deg, var(--yugaa-purple-dark), var(--yugaa-blue));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.warranty-card h2, .custom-card h2, .contact-card h2 { margin-bottom: 12px; }
.warranty-card p, .custom-card p, .contact-card p { color: rgba(255,255,255,.78); margin: 0; max-width: 650px; }

.pillows-section { background: var(--surface); }

.pillow-showcase {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #39a6e6;
}

.pillow-showcase img {
    width: 100%;
    display: block;
}

.manufacturing-section {
    padding: 105px 0;
}

.manufacturing-card {
    border-radius: 30px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    background: #f4f0f7;
}

.manufacturing-copy { padding: 70px; }

.manufacturing-pattern {
    min-height: 420px;
    padding: 45px;
    display: grid;
    place-content: center;
    gap: 14px;
    background:
        radial-gradient(circle at 20% 20%, rgba(40,124,196,.20), transparent 35%),
        radial-gradient(circle at 80% 80%, rgba(107,36,127,.20), transparent 35%),
        #ece8f1;
}

.pattern-card {
    width: min(330px, 100%);
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,.05);
    font-weight: 800;
}

.pattern-card i {
    color: var(--yugaa-purple);
    font-size: 1.35rem;
}

.custom-section { padding-bottom: 105px; }

.dealer-section { background: var(--surface); }

.dealer-box {
    min-height: 250px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(107,36,127,.09), rgba(40,124,196,.12));
    border: 1px solid var(--border);
    text-align: center;
}

.dealer-box i {
    font-size: 4rem;
    color: var(--yugaa-purple);
    margin-bottom: 15px;
}

.dealer-box strong { font-family: "Poppins"; font-size: 1.3rem; }
.dealer-box span { color: var(--muted); }

.contact-section { padding: 105px 0; }

.contact-card { display: block; }
.contact-card .row { align-items: center; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 25px; }

.address-box {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 20px;
    padding: 25px;
}

.address-box h3 { font-size: 1.15rem; }
.address-box p { color: rgba(255,255,255,.82); font-size: .88rem; }
.address-box i { width: 22px; color: #fff; }

.site-footer {
    background: #121016;
    color: #fff;
    padding: 70px 0 25px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 45px;
    padding-bottom: 50px;
}

.footer-brand img {
    width: 150px;
    background: #fff;
    border-radius: 8px;
    padding: 4px;
}

.footer-brand p { color: #aaa3b0; margin-top: 10px; }

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links h4 {
    font-size: .9rem;
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa3b0;
    font-size: .84rem;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.10);
    padding-top: 20px;
    color: #817a88;
    font-size: .75rem;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1100;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25D366;
    color: #fff;
    font-size: 1.55rem;
    box-shadow: 0 15px 35px rgba(37,211,102,.28);
}

.mobile-bottom-nav { display: none; }

@media (max-width: 991.98px) {
    .navbar { min-height: 72px; }
    .navbar-brand img { width: 125px; }
    .navbar-collapse {
        background: #fff;
        padding: 12px 0 18px;
    }

    .hero-section { padding: 65px 0 80px; }
    .hero-product { min-height: 430px; }
    .featured-wrap, .manufacturing-card { grid-template-columns: 1fr; }
    .featured-image { min-height: 390px; }
    .featured-content, .manufacturing-copy { padding: 45px; }
    .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 767.98px) {
    body { padding-bottom: 72px; }

    .hero-section { padding: 48px 0 60px; }
    .hero-section h1 { font-size: 3.25rem; }
    .hero-copy { font-size: .98rem; }
    .hero-product { min-height: 330px; margin-top: 10px; }
    .hero-badge { width: 90px; height: 90px; right: 0; }
    .hero-badge b { font-size: 1.5rem; }
    .hero-floating-card { left: 0; bottom: 0; max-width: 220px; padding: 13px 15px; }

    .finder-section, .why-section, .pillows-section, .dealer-section,
    .products-section, .featured-section, .manufacturing-section, .contact-section {
        padding: 70px 0;
    }

    .warranty-section, .custom-section { padding-bottom: 70px; }

    .finder-card { padding: 18px; }
    .finder-option { padding: 15px; }

    .featured-content, .manufacturing-copy { padding: 34px 25px; }
    .featured-image { min-height: 280px; }

    .warranty-card, .custom-card {
        padding: 32px 25px;
        align-items: flex-start;
        flex-direction: column;
    }

    .manufacturing-pattern { min-height: 300px; padding: 30px 20px; }

    .contact-card { padding: 35px 25px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; }

    .floating-whatsapp { display: none; }

    .mobile-bottom-nav {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        height: 72px;
        background: rgba(255,255,255,.97);
        backdrop-filter: blur(15px);
        border-top: 1px solid rgba(0,0,0,.08);
        box-shadow: 0 -10px 30px rgba(0,0,0,.08);
    }

    .mobile-bottom-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        color: #6e6872;
        font-size: .62rem;
        font-weight: 700;
    }

    .mobile-bottom-nav i { font-size: 1.1rem; }
    .mobile-bottom-nav a.whatsapp { color: #1fae57; }
}
