/* =========================================================
   THE WEIRD LITTLE WORKSHOP
   BOLD ANTIQUE WORKSHOP THEME
   ========================================================= */


/* =========================================================
   COLOR PALETTE
   ========================================================= */

:root {
    --ink: #100d1c;
    --ink-soft: #201a32;

    --aubergine: #541642;
    --plum: #8e286f;
    --violet: #7952b3;

    --storm-blue: #315b8a;
    --teal: #168787;
    --deep-teal: #155b61;

    --sage: #71ad91;
    --sage-light: #b3d5bd;

    --clay: #c4514d;
    --antique-gold: #e0a73e;

    --cream: #eadcc5;
    --parchment: #f3e8d6;
    --paper: #fff8ec;

    --dark-shadow: rgba(16, 13, 28, 0.45);
    --soft-shadow: rgba(84, 22, 66, 0.24);

    --frame-border: 5px solid var(--deep-teal);
    --thin-frame: 2px solid var(--sage);

    --transition: 180ms ease;
}


/* =========================================================
   GLOBAL RESET
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(142, 40, 111, 0.10), transparent 28%),
        radial-gradient(circle at 90% 20%, rgba(22, 135, 135, 0.12), transparent 30%),
        radial-gradient(circle at 50% 90%, rgba(113, 173, 145, 0.12), transparent 32%),
        linear-gradient(
            135deg,
            var(--cream) 0%,
            var(--parchment) 45%,
            #e5d5bd 100%
        );

    color: var(--ink);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    line-height: 1.6;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

nav {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 12px 28px;

    background:
        linear-gradient(
            135deg,
            var(--ink) 0%,
            var(--aubergine) 50%,
            var(--deep-teal) 100%
        );

    border-bottom: 1px solid var(--antique-gold);

    box-shadow:
        0 5px 18px var(--dark-shadow),
        0 2px 0 rgba(255, 248, 236, 0.12) inset;
}


/* ---------- NAV BRAND ---------- */

.nav-brand {
    display: flex;
    align-items: center;

    gap: 12px;

    color: var(--paper);

    font-size: 18px;
    font-weight: bold;

    letter-spacing: 0.5px;
}

.nav-brand img {
    width: 75px;
    height: 75px;

    object-fit: contain;

    border-radius: 50%;

    border: 1px solid var(--antique-gold);

    background:
        radial-gradient(
            circle,
            var(--plum),
            var(--aubergine)
        );

    padding: 4px;

    box-shadow:
        0 0 0 3px var(--deep-teal),
        0 4px 10px rgba(0, 0, 0, 0.35);
}


/* ---------- NAV LINKS ---------- */

.nav-links {
    display: flex;
    align-items: center;

    gap: 8px;
}

.nav-links a,
nav a {
    display: inline-block;

    padding: 8px 12px;

    color: #fff8ec;

    text-decoration: none;

    font-weight: bold;

    border: 1px solid transparent;

    border-radius: 4px;

    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.nav-links a:hover,
nav a:hover {
    color: var(--ink);

    background: var(--antique-gold);

    border-color: var(--paper);

    transform: translateY(-2px);

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   HEADINGS
   ========================================================= */

h1,
h2,
h3 {
    margin-top: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-weight: bold;
}

h1 {
    color: var(--paper);

    font-size: clamp(38px, 6vw, 68px);

    line-height: 1.05;

    text-shadow:
        3px 3px 0 var(--aubergine),
        5px 5px 10px rgba(0, 0, 0, 0.35);

    letter-spacing: 1px;
}

h2 {
    color: var(--aubergine);

    font-size: clamp(30px, 4vw, 46px);

    line-height: 1.15;

    text-align: center;

    text-shadow:
        1px 1px 0 var(--paper);
}

h3 {
    color: var(--deep-teal);

    font-size: 22px;

    line-height: 1.25;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

section {
    position: relative;

    width: calc(100% - 50px);

    max-width: 1250px;

    margin: 55px auto;

    padding: 55px 35px 45px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 248, 236, 0.97),
            rgba(234, 220, 197, 0.96)
        );

    border: var(--frame-border);

    outline: 2px solid var(--sage);

    outline-offset: 7px;

    box-shadow:
        0 0 0 10px rgba(84, 22, 66, 0.16),
        0 0 0 14px rgba(22, 135, 135, 0.12),
        0 18px 35px var(--soft-shadow);

    border-radius: 18px;
}


/* ---------- INNER FRAME ---------- */

section::after {
    content: "";

    position: absolute;

    inset: 12px;

    border: 2px solid rgba(84, 22, 66, 0.45);

    border-radius: 11px;

    pointer-events: none;
}


/* ---------- ORNAMENT ABOVE SECTION ---------- */

section::before {
    content: "❦  ✦  ❦";

    position: absolute;

    top: -27px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 5;

    min-width: 145px;

    padding: 4px 18px;

    text-align: center;

    color: var(--antique-gold);

    background:
        linear-gradient(
            135deg,
            var(--aubergine),
            var(--plum),
            var(--deep-teal)
        );

    border: 1px solid var(--antique-gold);

    border-radius: 30px;

    font-size: 19px;

    letter-spacing: 3px;

    box-shadow:
        0 4px 10px var(--dark-shadow),
        0 0 0 3px var(--cream);
}


/* Keep section content above decorative layers */

section > * {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 600px;

    padding: 55px 25px;

    background:
        radial-gradient(
            circle at center,
            rgba(142, 40, 111, 0.35),
            transparent 45%
        ),
        linear-gradient(
            135deg,
            var(--ink) 0%,
            var(--aubergine) 48%,
            var(--deep-teal) 100%
        );

    overflow: hidden;
}


/* Decorative atmosphere */

.hero::before {
    content: "✦     ❦     ✦     ❦     ✦";

    position: absolute;

    top: 35px;
    left: 50%;

    transform: translateX(-50%);

    width: 100%;

    color: rgba(224, 167, 62, 0.40);

    text-align: center;

    font-size: 28px;

    letter-spacing: 15px;
}

.hero::after {
    content: "";

    position: absolute;

    inset: 25px;

    border: 2px solid rgba(224, 167, 62, 0.35);

    border-radius: 22px;

    pointer-events: none;
}


/* ---------- HERO BOX ---------- */

.hero-box {
    position: relative;

    z-index: 2;

    width: min(900px, 100%);

    padding: 70px 55px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            rgba(84, 22, 66, 0.96),
            rgba(32, 26, 50, 0.97)
        );

    border: 1px solid var(--antique-gold);

    border-radius: 22px;

    box-shadow:
        0 0 0 5px var(--deep-teal),
        0 0 0 9px var(--sage),
        0 0 0 13px var(--aubergine),
        0 25px 50px rgba(0, 0, 0, 0.45);
}


/* Hero arch effect */

.hero-box::before {
    content: "";

    position: absolute;

    inset: 17px;

    border: 2px solid rgba(234, 220, 197, 0.45);

    border-radius: 14px;

    pointer-events: none;
}

.hero-box::after {
    content: "❧";

    position: absolute;

    top: 10px;
    right: 20px;

    color: var(--antique-gold);

    font-size: 35px;
}


/* ---------- HERO STAR ---------- */

.star {
    margin-bottom: 10px;

    color: var(--antique-gold);

    font-size: 48px;

    line-height: 1;

    text-shadow:
        0 0 12px rgba(224, 167, 62, 0.55);
}


/* ---------- HERO TEXT ---------- */

.hero-box p {
    max-width: 650px;

    margin: 25px auto 35px;

    color: var(--cream);

    font-size: 21px;

    line-height: 1.7;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.shop-button,
.product-button {
    display: inline-block;

    color: var(--paper);

    background:
        linear-gradient(
            135deg,
            var(--plum),
            var(--aubergine)
        );

    border: 1px solid var(--antique-gold);

    border-radius: 6px;

    padding: 12px 20px;

    text-decoration: none;

    font-weight: bold;

    letter-spacing: 1px;

    box-shadow:
        0 4px 0 var(--deep-teal),
        0 7px 12px rgba(0, 0, 0, 0.25);

    transition:
        transform var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.shop-button:hover,
.product-button:hover {
    color: var(--ink);

    background:
        linear-gradient(
            135deg,
            var(--antique-gold),
            #f0c968
        );

    transform: translateY(-3px);

    box-shadow:
        0 6px 0 var(--deep-teal),
        0 10px 18px rgba(0, 0, 0, 0.30);
}


/* =========================================================
   SHOP
   ========================================================= */

.shop-intro {
    max-width: 800px;

    margin: 0 auto 35px;

    text-align: center;

    color: var(--ink-soft);

    font-size: 18px;
}


/* ---------- PRODUCT GRID ---------- */

.product-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 28px;

    align-items: stretch;
}


/* ---------- PRODUCT CARDS ---------- */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-top: 35px;
}

.product-item {
    padding: 18px;
    text-align: center;

    background: var(--paper);

    border: 3px solid var(--deep-teal);

    box-shadow:
        0 1px 0 var(--antique-gold),
        0 8px 18px rgba(16, 13, 28, 0.18);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.product-item:hover {
    transform: translateY(-4px);

    box-shadow:
        0 1px 0 var(--antique-gold),
        0 12px 24px rgba(16, 13, 28, 0.25);
}

.product-thumbnail {
    width: 100%;
    aspect-ratio: 1 / 1;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--cream);

    border: 2px solid var(--sage);

    color: var(--deep-teal);

    font-family: inherit;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.08em;
}

.product-item h3 {
    margin: 20px 0 8px;

    color: var(--aubergine);

    font-size: 1.25rem;
}

.product-price {
    margin: 0 0 10px;

    color: var(--clay);

    font-size: 1.2rem;
    font-weight: bold;
}

.product-description {
    margin: 0;

    color: var(--ink-soft);

    line-height: 1.6;
}


/* Shop introduction */

.shop-intro {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}


/* Coming-soon message */

.shop-coming-soon {
    max-width: 700px;
    margin: 55px auto 0;
    padding: 25px;

    text-align: center;

    background: var(--sage-light);

    border: 2px solid var(--deep-teal);

    box-shadow: 0 5px 12px rgba(16, 13, 28, 0.15);
}

.shop-coming-soon h3 {
    margin-top: 0;
    color: var(--aubergine);
}

.shop-coming-soon p {
    margin-bottom: 0;
}


/* Product gallery on smaller screens */

@media (max-width: 900px) {

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 600px) {

    .product-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   SHOP COMING SOON
   ========================================================= */

.shop-coming-soon {
    position: relative;

    max-width: 850px;

    margin: 45px auto 0;

    padding: 30px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            rgba(113, 173, 145, 0.28),
            rgba(22, 135, 135, 0.16)
        );

    border: 3px solid var(--sage);

    border-radius: 14px;

    box-shadow:
        inset 0 0 0 3px rgba(255, 248, 236, 0.50);
}

.shop-coming-soon h3 {
    color: var(--aubergine);

    margin-bottom: 10px;
}


/* =========================================================
   CREATIONS
   ========================================================= */

.creations-heading {
    text-align: center;

    max-width: 850px;

    margin: 0 auto 40px;
}

.creations-heading p {
    color: var(--ink-soft);

    font-size: 18px;
}


/* ---------- CREATION GRID ---------- */

.creation-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 28px;
}


/* ---------- CREATION CARDS ---------- */

.creation-card {
    position: relative;

    padding: 25px;

    background:
        linear-gradient(
            145deg,
            var(--paper),
            var(--cream)
        );

    border: 4px solid var(--violet);

    border-radius: 13px;

    box-shadow:
        0 10px 22px rgba(16, 13, 28, 0.20);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.creation-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 16px 28px rgba(16, 13, 28, 0.28);
}


/* Individual creation colors */

.creation-card:nth-child(1) {
    border-color: var(--clay);
}

.creation-card:nth-child(2) {
    border-color: var(--violet);
}

.creation-card:nth-child(3) {
    border-color: var(--plum);
}

.creation-card:nth-child(4) {
    border-color: var(--teal);
}


/* ---------- CREATION IMAGES ---------- */

.creation-image {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 145px;

    margin-bottom: 20px;

    color: var(--paper);

    background:
        linear-gradient(
            135deg,
            var(--violet),
            var(--aubergine)
        );

    border: 1px solid var(--antique-gold);

    border-radius: 9px;

    font-weight: bold;

    letter-spacing: 2px;

    box-shadow:
        inset 0 0 0 3px rgba(255, 248, 236, 0.15),
        0 5px 12px rgba(0, 0, 0, 0.20);
}


/* Individual creation image colors */

.creation-card:nth-child(1) .creation-image {
    background:
        linear-gradient(
            135deg,
            var(--clay),
            var(--aubergine)
        );
}

.creation-card:nth-child(2) .creation-image {
    background:
        linear-gradient(
            135deg,
            var(--violet),
            var(--plum)
        );
}

.creation-card:nth-child(3) .creation-image {
    background:
        linear-gradient(
            135deg,
            var(--plum),
            var(--deep-teal)
        );
}

.creation-card:nth-child(4) .creation-image {
    background:
        linear-gradient(
            135deg,
            var(--teal),
            var(--storm-blue)
        );
}


/* =========================================================
   VIDEOS
   ========================================================= */

.videos-heading {
    max-width: 850px;

    margin: 0 auto 40px;

    text-align: center;
}

.videos-heading p {
    color: var(--ink-soft);
    font-size: 40px;
font-weight: bold;
}


/* ---------- WEBSITE NOTE ---------- */

.website-note {
    display: inline-block;

    margin-top: 18px;

    padding: 10px 15px;

    color: var(--aubergine) !important;

    background: rgba(224, 167, 62, 0.16);

    border: 1px dashed var(--antique-gold);

    border-radius: 8px;

    font-size: 14px !important;

    font-style: italic;
}


/* ---------- VIDEO GRID ---------- */

.video-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* ---------- VIDEO CARDS ---------- */

.video-card {
    position: relative;

    padding: 20px;

    background:
        linear-gradient(
            145deg,
            var(--paper),
            var(--cream)
        );

    border: 4px solid var(--storm-blue);

    border-radius: 13px;

    box-shadow:
        0 10px 22px rgba(16, 13, 28, 0.20);

    text-align: center;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.video-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 16px 28px rgba(16, 13, 28, 0.28);
}


/* Individual video colors */

.video-card:nth-child(1) {
    border-color: var(--aubergine);
}

.video-card:nth-child(2) {
    border-color: var(--teal);
}

.video-card:nth-child(3) {
    border-color: var(--clay);
}

.video-card:nth-child(4) {
    border-color: var(--violet);
}

.video-card:nth-child(5) {
    border-color: var(--sage);
}


/* ---------- VIDEO LINK ---------- */

.video-link {
    display: block;

    text-decoration: none;
}


/* ---------- VIDEO PLACEHOLDER ---------- */

.video-placeholder {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 175px;

    margin-bottom: 20px;

    color: var(--paper);

    background:
        linear-gradient(
            135deg,
            var(--ink),
            var(--aubergine)
        );

    border: 1px solid var(--antique-gold);

    border-radius: 9px;

    font-size: 48px;

    text-shadow:
        2px 2px 0 var(--deep-teal);

    transition:
        transform var(--transition),
        background var(--transition);
}

.video-link:hover .video-placeholder {
    transform: scale(1.025);

    background:
        linear-gradient(
            135deg,
            var(--deep-teal),
            var(--storm-blue)
        );
}


/* Individual video placeholder colors */

.video-card:nth-child(1) .video-placeholder {
    background:
        linear-gradient(
            135deg,
            var(--aubergine),
            var(--plum)
        );
}

.video-card:nth-child(2) .video-placeholder {
    background:
        linear-gradient(
            135deg,
            var(--teal),
            var(--deep-teal)
        );
}

.video-card:nth-child(3) .video-placeholder {
    background:
        linear-gradient(
            135deg,
            var(--clay),
            var(--aubergine)
        );
}

.video-card:nth-child(4) .video-placeholder {
    background:
        linear-gradient(
            135deg,
            var(--violet),
            var(--storm-blue)
        );
}

.video-card:nth-child(5) .video-placeholder {
    background:
        linear-gradient(
            135deg,
            var(--sage),
            var(--deep-teal)
        );
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-box {
    max-width: 900px;

    margin: 0 auto;

    padding: 20px 30px;

    text-align: center;
}

.about-box p {
    color: var(--ink-soft);

    font-size: 18px;

    line-height: 1.8;
}


/* ---------- ABOUT SIGNATURE ---------- */

.about-signature {
    margin-top: 30px;

    color: var(--aubergine) !important;

    font-size: 24px !important;

    font-style: italic;

    font-weight: bold;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-box {
    max-width: 850px;

    margin: 0 auto;

    padding: 20px 30px;

    text-align: center;
}

.contact-box p {
    color: var(--ink-soft);

    font-size: 18px;
}


/* ---------- CONTACT EMAIL ---------- */

.contact-email {
    display: inline-block;

    margin-top: 10px;

    padding: 12px 20px;

    color: var(--paper) !important;

    background:
        linear-gradient(
            135deg,
            var(--aubergine),
            var(--deep-teal)
        );

    border: 1px solid var(--antique-gold);

    border-radius: 7px;

    font-weight: bold;

    box-shadow:
        0 5px 12px rgba(0, 0, 0, 0.20);
}


/* =========================================================
   LITTLE STARS
   ========================================================= */

.little-star {
    margin-bottom: 5px;

    color: var(--antique-gold);

    text-align: center;

    font-size: 34px;

    line-height: 1;

    text-shadow:
        0 0 10px rgba(224, 167, 62, 0.45);
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    position: relative;

    margin-top: 75px;

    padding: 45px 25px 30px;

    color: var(--cream);

    background:
        linear-gradient(
            135deg,
            var(--ink),
            var(--aubergine),
            var(--deep-teal)
        );

    border-top: 1px solid var(--antique-gold);

    text-align: center;

    box-shadow:
        0 -8px 25px rgba(16, 13, 28, 0.25);
}


/* Decorative footer ornament */

footer::before {
    content: "❦  ✦  ❦";

    position: absolute;

    top: -20px;
    left: 50%;

    transform: translateX(-50%);

    padding: 2px 18px;

    color: var(--antique-gold);

    background: var(--ink);

    border: 1px solid var(--antique-gold);

    border-radius: 20px;

    letter-spacing: 4px;
}


/* ---------- FOOTER TITLE ---------- */

.footer-title {
    margin-bottom: 18px;

    color: var(--paper);

    font-size: 25px;

    font-weight: bold;

    letter-spacing: 1px;
}


/* ---------- FOOTER LINKS ---------- */

.footer-links {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 8px 18px;

    margin-bottom: 20px;
}

.footer-links a {
    color: var(--sage-light);

    text-decoration: none;

    transition:
        color var(--transition),
        transform var(--transition);
}

.footer-links a:hover {
    color: var(--antique-gold);

    transform: translateY(-2px);
}


/* ---------- COPYRIGHT ---------- */

.copyright {
    margin: 0;

    color: rgba(243, 232, 214, 0.70);

    font-size: 14px;
}


/* =========================================================
   LEGAL PAGE SUPPORT
   ========================================================= */

.legal-page {
    max-width: 950px;

    margin: 55px auto;

    padding: 45px;

    background: var(--paper);

    border: 5px solid var(--deep-teal);

    outline: 2px solid var(--sage);

    outline-offset: 7px;

    border-radius: 15px;

    box-shadow:
        0 15px 30px var(--soft-shadow);
}

.legal-page h1,
.legal-page h2,
.legal-page h3 {
    color: var(--aubergine);
}

.legal-page p,
.legal-page li {
    color: var(--ink-soft);

    line-height: 1.8;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

a:focus-visible,
button:focus-visible {
    outline: 1px solid var(--antique-gold);

    outline-offset: 4px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    nav {
        flex-direction: column;

        padding: 12px 18px;

        gap: 10px;
    }

    .nav-links {
        justify-content: center;

        flex-wrap: wrap;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero {
        min-height: 520px;
    }

    .hero-box {
        padding: 55px 40px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    nav {
        padding: 10px 12px;
    }

    .nav-brand {
        font-size: 16px;
    }

    .nav-brand img {
        width: 42px;
        height: 42px;
    }

    .nav-links {
        gap: 4px;
    }

    .nav-links a,
    nav a {
        padding: 7px 8px;

        font-size: 14px;
    }

    .hero {
        min-height: 470px;

        padding: 45px 20px;
    }

    .hero-box {
        padding: 45px 28px;
    }

    h1 {
        font-size: 39px;
    }

    h2 {
        font-size: 32px;
    }

    .hero-box p {
        font-size: 18px;
    }

    section {
        width: calc(100% - 32px);

        padding: 48px 24px 35px;

        margin-top: 48px;
        margin-bottom: 48px;
    }

    .product-grid,
    .creation-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .product-card,
    .creation-card,
    .video-card {
        padding: 20px;
    }

    .product-image,
    .creation-image,
    .video-placeholder {
        min-height: 145px;
    }

    .legal-page {
        width: calc(100% - 32px);

        padding: 30px 22px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

    .nav-links a,
    nav a {
        padding: 7px 5px;

        font-size: 13px;
    }

    .hero {
        padding-right: 14px;
        padding-left: 14px;
    }

    .hero-box {
        padding-right: 20px;
        padding-left: 20px;
    }

    section {
        width: calc(100% - 24px);

        padding-right: 19px;
        padding-left: 19px;
    }

    .product-card,
    .creation-card,
    .video-card {
        padding-right: 15px;
        padding-left: 15px;
    }

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 29px;
    }

    .nav-brand span {
        font-size: 14px;
    }

    .hero-box p {
        font-size: 17px;
    }

    .shop-button,
    .product-button {
        padding: 10px 15px;

        font-size: 14px;
    }
}

.product-thumbnail img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

/* =========================================
   PRODUCT DETAIL PAGE
   ========================================= */

.product-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 25px;
}


.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: start;
}


.product-detail-image {
    width: 100%;

    background: var(--paper);

    border: 3px solid var(--deep-teal);

    padding: 18px;

    box-shadow:
        0 1px 0 var(--antique-gold),
        0 10px 22px rgba(16, 13, 28, 0.2);
}


.product-detail-image img {
    width: 100%;
    display: block;

    aspect-ratio: 1 / 1;

    object-fit: cover;
}


.product-detail-info h1 {
    margin-top: 0;
    margin-bottom: 12px;

    color: var(--aubergine);

    font-size: 2.5rem;
}


.product-detail-price {
    margin: 0 0 20px;

    color: var(--clay);

    font-size: 1.7rem;
    font-weight: bold;
}


.product-detail-intro {
    font-size: 1.1rem;
    line-height: 1.7;

    color: var(--ink-soft);

    margin-bottom: 30px;
}


.product-detail-info h2 {
    margin-top: 30px;
    margin-bottom: 12px;

    color: var(--deep-teal);

    font-size: 1.4rem;
}


.product-list {
    margin: 0;
    padding-left: 25px;

    color: var(--ink-soft);

    line-height: 1.8;
}


.product-detail-info > p {
    line-height: 1.7;
}


.product-detail-purchase {
    margin-top: 35px;
    padding-top: 25px;

    border-top: 2px solid var(--sage);
}


.product-detail-purchase p {
    color: var(--clay);

    font-size: 1.6rem;

    margin: 0 0 15px;
}


.product-button {
    display: inline-block;

    padding: 12px 22px;

    background: var(--deep-teal);

    color: var(--paper);

    text-decoration: none;

    font-weight: bold;
    letter-spacing: 0.05em;

    border: 1px solid var(--antique-gold);

    transition:
        background var(--transition),
        transform var(--transition);
}


.product-button:hover {
    background: var(--aubergine);

    transform: translateY(-2px);
}


.product-page-note {
    max-width: 750px;

    margin: 70px auto 0;
    padding: 30px;

    text-align: center;

    background: var(--sage-light);

    border: 2px solid var(--deep-teal);

    box-shadow:
        0 5px 12px rgba(16, 13, 28, 0.15);
}


.product-page-note h2 {
    margin-top: 0;

    color: var(--aubergine);
}


.product-page-note p {
    line-height: 1.7;
}


.back-to-shop {
    display: inline-block;

    margin-top: 10px;

    color: var(--aubergine);

    font-weight: bold;
    text-decoration: none;
}


.back-to-shop:hover {
    color: var(--clay);
}


/* Product page on smaller screens */

@media (max-width: 800px) {

    .product-detail {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .product-detail-info h1 {
        font-size: 2rem;
    }

}

/* Keep the navigation logo at its normal size */

.nav-logo img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
}

/* Product detail title */

.product-detail-info h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: 0;
    text-shadow: none;
    line-height: 1.2;
}

.product-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.product-link h3 {
    color: var(--aubergine);
    transition: color var(--transition);
}

.product-link:hover h3 {
    color: var(--clay);
}

.product-link:hover .product-thumbnail {
    box-shadow: 0 0 0 .5px var(--antique-gold);
}

.hero-emblem {
    display: block;
    width: min(245px, 85%);
    height: auto;
    margin: 15px auto 30px;
    object-fit: contain;
box-shadow: 0 0 0 1px var(--antique-gold);
}

/* =========================================================
   SHOP PAGE ADDITIONS
   ========================================================= */

.nav-brand {
    text-decoration: none;
}

.nav-links a[aria-current="page"] {
    color: var(--sage-light);
}

.nav-links a[aria-current="page"]::after {
    transform: scaleX(1);
}

.shop-page-hero {
    padding-bottom: 35px;
}

#products {
    scroll-margin-top: 150px;
}

.product-item {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 24px;

    text-align: center;

    background:
        radial-gradient(
            ellipse at top,
            rgba(113, 173, 145, 0.25),
            transparent 42%
        ),
        linear-gradient(
            155deg,
            var(--paper),
            var(--parchment)
        );

    border: 5px double var(--storm-blue);
    border-radius: 85px 85px 24px 24px;
    outline: 3px solid var(--antique-gold);
    outline-offset: -12px;

    box-shadow:
        0 0 0 5px var(--aubergine),
        9px 11px 0 var(--plum),
        15px 18px 25px var(--soft-shadow);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.product-item:nth-child(2) {
    border-color: var(--teal);

    box-shadow:
        0 0 0 5px var(--aubergine),
        9px 11px 0 var(--violet),
        15px 18px 25px var(--soft-shadow);
}

.product-item:nth-child(3) {
    border-color: var(--clay);

    box-shadow:
        0 0 0 5px var(--deep-teal),
        9px 11px 0 var(--plum),
        15px 18px 25px var(--soft-shadow);
}

.product-item:hover {
    transform: translateY(-6px);
}

.product-item::before {
    content: "❧";
    position: absolute;
    top: -20px;
    left: -14px;
    z-index: 5;

    display: grid;
    place-items: center;

    width: 58px;
    height: 58px;

    color: var(--antique-gold);
    background:
        radial-gradient(
            circle,
            var(--aubergine) 0 48%,
            var(--deep-teal) 50% 67%,
            transparent 69%
        );

    font-size: 37px;
    line-height: 1;
    text-shadow: 2px 2px 0 var(--ink);
    transform: rotate(-18deg);
}

.product-item::after {
    content: "❧";
    position: absolute;
    right: -14px;
    bottom: -20px;
    z-index: 5;

    display: grid;
    place-items: center;

    width: 58px;
    height: 58px;

    color: var(--antique-gold);
    background:
        radial-gradient(
            circle,
            var(--aubergine) 0 48%,
            var(--deep-teal) 50% 67%,
            transparent 69%
        );

    font-size: 37px;
    line-height: 1;
    text-shadow: 2px 2px 0 var(--ink);
    transform: rotate(162deg);
}

.product-link {
    color: inherit;
    text-decoration: none;
}

.product-thumbnail {
    height: 245px;
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            var(--storm-blue),
            var(--aubergine)
        );

    border: 3px solid var(--deep-teal);
    border-radius: 60px 60px 10px 10px;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition:
        transform 250ms ease,
        filter 250ms ease;
}

.product-link:hover .product-thumbnail img,
.product-link:focus-visible .product-thumbnail img {
    transform: scale(1.04);
    filter: brightness(1.08);
}

.product-item h3 {
    margin: 26px 0 10px;
    color: var(--aubergine);
    font-size: 25px;
}

.product-link:hover h3,
.product-link:focus-visible h3 {
    color: var(--plum);
}

.product-price {
    margin: 4px 0 12px;
    color: var(--plum);
    font-size: 28px;
    font-weight: bold;
}

.product-description {
    margin: 0 0 25px;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.55;
}

.product-item .product-button {
    margin-top: auto;
    align-self: center;
}

.product-unavailable {
    cursor: default;
    opacity: 0.75;
}

.product-unavailable:hover {
    color: var(--paper);
    background:
        linear-gradient(
            135deg,
            var(--aubergine),
            var(--plum) 48%,
            var(--violet)
        );

    transform: none;
}

#shop-information {
    max-width: 1060px;
}

.shop-policy-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 34px;
}

.shop-policy-links .shop-button {
    margin: 0;
}

@media (max-width: 700px) {
    .product-item {
        padding: 20px;
        border-radius: 65px 65px 18px 18px;
    }

    .product-thumbnail {
        height: 220px;
        border-radius: 48px 48px 8px 8px;
    }

    .shop-policy-links {
        flex-direction: column;
        align-items: center;
    }

    .shop-policy-links .shop-button {
        width: min(300px, 100%);
    }
}

/* =========================================================
   SIMPLIFIED SHOP PAGE
   Keep this at the very bottom of style.css
   ========================================================= */

/* Main shop area: no large ornamental outer frame */

.shop-products {
    width: min(1180px, calc(100% - 40px));
    margin: 70px auto 110px;
    padding: 30px 20px 60px;

    background: transparent;
    border: 0;
    border-radius: 0;
    outline: 0;
    box-shadow: none;
}

/* Remove the crest and inner border from the shop section */

.shop-products::before,
.shop-products::after {
    content: none;
    display: none;
}

/* Shop title */

.shop-products > h1 {
    margin: 0 0 18px;
    color: var(--aubergine);
    font-size: clamp(42px, 7vw, 68px);
    line-height: 1.1;
    text-align: center;
    text-shadow: 2px 2px 0 rgba(224, 167, 62, 0.35);
}

/* Product grid */

.shop-products .product-grid {
    margin-top: 50px;
}

/* Simpler product boxes */

.shop-products .product-item {
    padding: 18px 18px 26px;

    background:
        linear-gradient(
            155deg,
            var(--paper),
            var(--parchment)
        );

    border: 0;
    border-radius: 24px;
    outline: 0;

    box-shadow:
        0 8px 0 var(--plum),
        0 14px 28px var(--soft-shadow);
}

.shop-products .product-item:nth-child(2) {
    border: 0;

    box-shadow:
        0 8px 0 var(--teal),
        0 14px 28px var(--soft-shadow);
}

.shop-products .product-item:nth-child(3) {
    border: 0;

    box-shadow:
        0 8px 0 var(--clay),
        0 14px 28px var(--soft-shadow);
}

/* Remove decorative scrolls from product corners */

.shop-products .product-item::before,
.shop-products .product-item::after {
    content: none;
    display: none;
}

/* Product images remain neatly framed but not ornate */

.shop-products .product-thumbnail {
    height: 260px;
    border: 0;
    border-radius: 16px;
    box-shadow: none;
}

/* Simplify the coming-soon message */

.shop-products .shop-coming-soon {
    margin-top: 65px;
    border: 0;
    border-radius: 18px;

    box-shadow:
        0 7px 0 var(--aubergine),
        0 13px 24px var(--soft-shadow);
}

/* Simplify the information section below the products */

#shop-information {
    width: min(1000px, calc(100% - 40px));
    margin: 80px auto 120px;
    padding: 0 20px;

    background: transparent;
    border: 0;
    border-radius: 0;
    outline: 0;
    box-shadow: none;
}

#shop-information::before,
#shop-information::after {
    content: none;
    display: none;
}

#shop-information .about-box {
    padding: 45px 40px;

    border: 0;
    border-radius: 24px;
    outline: 0;

    box-shadow:
        0 8px 0 var(--teal),
        0 14px 28px var(--soft-shadow);
}

#shop-information .about-box::before,
#shop-information .about-box::after {
    content: none;
    display: none;
}

@media (max-width: 700px) {
    .shop-products {
        width: calc(100% - 24px);
        margin-top: 45px;
        padding: 20px 6px 45px;
    }

    .shop-products > h1 {
        font-size: 42px;
    }

    .shop-products .product-grid {
        margin-top: 38px;
    }

    .shop-products .product-item {
        padding: 15px 15px 24px;
        border-radius: 18px;
    }

    .shop-products .product-thumbnail {
        height: 225px;
        border-radius: 12px;
    }

    #shop-information {
        width: calc(100% - 24px);
        padding: 0 6px;
    }

    #shop-information .about-box {
        padding: 34px 22px;
        border-radius: 18px;
    }
}

/* Gentle pulse on the shop button every 7 seconds */

.shop-button {
    animation: shop-pulse 7s ease-in-out infinite;
}

@keyframes shop-pulse {
    0%, 82%, 100% {
        transform: scale(1);
        box-shadow:
            0 4px 0 var(--deep-teal),
            0 7px 12px rgba(0, 0, 0, 0.25);
    }

    88% {
        transform: scale(1.06);
        box-shadow:
            0 4px 0 var(--deep-teal),
            0 0 0 8px rgba(224, 167, 62, 0.35),
            0 10px 22px rgba(0, 0, 0, 0.3);
    }
}

/* Concrete figurine options area */

.product-options {
    margin: 30px 0 35px;
    padding: 25px;

    background: var(--paper);
    border: 2px solid var(--sage);
    border-radius: 14px;

    text-align: center;
}

.product-options:empty::before {
    content: "Figurine choices will appear here.";
    color: var(--ink-soft);
    font-style: italic;
}

/* Smaller emblem on the product detail pages */

.navbar .nav-logo img {
    width: 115px;
    height: auto;
}

