@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'SloopScriptPro';
    src: url('../fonts/sloop-script-pro-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Theseasons family (weights and italics) */
@font-face {
    font-family: 'Theseasons';
    src: url('../fonts/fonnts.com-theseasons-reg.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Theseasons';
    src: url('../fonts/fonnts.com-theseasons-it.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Theseasons';
    src: url('../fonts/fonnts.com-theseasons-lt.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Theseasons';
    src: url('../fonts/fonnts.com-theseasons-ltit.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Theseasons';
    src: url('../fonts/fonnts.com-theseasons-bd.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Theseasons';
    src: url('../fonts/fonnts.com-theseasons-bdit.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
:root{
    --light-pink: #F8C5F6;
    --dusty-pink:#CA8EB6;
    --hard-pink: #FF1167;
    --light-blue: #BFEFE4;
    --dusty-blue: #B0D7CC;
    --hard-blue: #1C98ED;
    --light-peach: #E8B4A3;
    --charcoal: #060A0E;
    --light-charcoal: #1C1F21;
    --hard-yellow: #FFEB38;
    --dusty-charcoal:#182736;
    --hard-white: #FFFFFF;
    --silver: #626C76;
}

body{
    background-color: var(--hard-white) !important;
    color: var(--charcoal);
    font-family: 'Theseasons', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Small set of UI rules copied/adapted from shop.css for visual consistency */
.product-img-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 16px 0;
    background: linear-gradient(180deg, var(--hard-white), var(--hard-white));
}
.product-img{
    width: 100%;
    height: 500px;
    border-radius: 18px;
    object-fit: cover;
    background: var(--light-blue);
    border: 0;
    box-shadow: 0 10px 20px rgba(6,10,14,0.08);
}

.product-meta-row{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}

.product-tag,
.product-tag-soft{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(24, 39, 54, 0.08);
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--dusty-charcoal);
}
.product-tag{ background: rgba(191, 239, 228, 0.30); }
.product-tag-soft{ background: rgba(248, 197, 246, 0.26); }

/* Buttons: match shop look */
.btn{
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(24,39,54,0.08);
    background: #fff;
    color: var(--dusty-charcoal);
    text-decoration: none;
    font-family: 'Theseasons', sans-serif;
    font-weight: 700;
    cursor: pointer;
}
.btn:focus{ outline: none; }
.btn.btn-cart{
    border-radius: 999px;
    background: var(--dusty-pink);
    border: 1px solid var(--dusty-pink);
    color: var(--dusty-charcoal);
    transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn.btn-cart:hover{
    background: var(--dusty-blue);
    color: var(--dusty-charcoal);
    border-color: var(--dusty-blue);
}