/* -------------------------------------------------- */
/*                    ROOT VARIABLES                  */
/* -------------------------------------------------- */
:root {
    --pink: #FFB7D5;
    --blue: #AEE4FF;
    --lilac: #D9C7FF;
    --gold: #F7D774;
    --text: #2a1f2a;
    --dark: #1a111a;
}

/* -------------------------------------------------- */
/*                        RESET                       */
/* -------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* -------------------------------------------------- */
/*                    GLOBAL BODY                     */
/* -------------------------------------------------- */
body {
    font-family: "Poppins", sans-serif;
    background: #f7f2fa url('/assets/background.png') no-repeat center top fixed;
    background-size: cover;
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* CLOUD LAYER */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url('/assets/clouds.png') repeat-x;
    opacity: 0.22;
    animation: drift 60s linear infinite;
    pointer-events: none;
}

@keyframes drift {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.full-page-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.full-page-link:hover {
    cursor: pointer;
    opacity: 0.97;
}

.whatnot-image {
    width: 100%;
    height: auto;
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* -------------------------------------------------- */
/*                CONTACT PAGE FIX                    */
/* -------------------------------------------------- */
.contact-details p {
    text-align: center !important;
}

/* -------------------------------------------------- */
/*                      CONTAINER                     */
/* -------------------------------------------------- */
.container {
    width: min(92%, 1100px);
    margin-inline: auto;
    padding: clamp(1rem, 2vw, 1.5rem);
}

/* -------------------------------------------------- */
/*                WHITE SECTION PANELS                */
/* -------------------------------------------------- */
.hero,
.why-choose,
.best-sellers,
.whatnot-section,
.site-footer {
    background: rgba(255,255,255,0.95);
    border-radius: 22px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.6);
}

/* -------------------------------------------------- */
/*                    HEADER BANNER                   */
/* -------------------------------------------------- */
.site-header {
    text-align: center;
    padding: 0;
    margin: 0;
}

.header-banner {
    width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.25));
}

/* Tighten spacing between header and hero */
.site-header {
    margin-bottom: -0.5rem;
}

.hero {
    margin-top: 0;
    padding-top: 0.6rem;
}

/* -------------------------------------------------- */
/*                     HEADINGS                       */
/* -------------------------------------------------- */
h1, h2, h3 {
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
}

/* -------------------------------------------------- */
/*                       BUTTONS                      */
/* -------------------------------------------------- */
.btn {
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
    transition: 0.2s ease;
    text-align: center;
}

.btn.primary { background: var(--pink); color: var(--dark); }
.btn.secondary { background: var(--blue); color: var(--dark); }
.btn.ghost { background: transparent; border: 2px solid var(--lilac); color: var(--dark); }

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Center all buttons */
.hero .btn,
.why-choose .btn,
.best-sellers .btn,
.whatnot-section .btn {
    display: block;
    margin: 1rem auto 0 auto;
}

/* -------------------------------------------------- */
/*                   PRODUCT GRID                     */
/* -------------------------------------------------- */
.best-sellers .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
}

.product-card {
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    padding: 1.6rem;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
    transition: 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.15);
}

/* -------------------------------------------------- */
/*                        FOOTER                      */
/* -------------------------------------------------- */
.footer-inner {
    font-size: 1rem;
    color: #5a4a5a;
    line-height: 1.6;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-nav a {
    text-decoration: none;
    font-weight: 600;
    color: #000000;
    padding: 0.5rem 1rem;
    background: linear-gradient(90deg, var(--pink), var(--pink));
    border-radius: 999px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.designer-link {
    color: var(--black);
    font-weight: 700;
    text-decoration: none;
}

.designer-link:hover {
    opacity: 0.8;
}

/* -------------------------------------------------- */
/*                      MOBILE FIXES                  */
/* -------------------------------------------------- */
@media (max-width: 700px) {
    .header-banner {
        width: 100%;
    }
}
