/* =========================================================
   PK STORE — BASELINE
========================================================= */

:root {

    --pk-bg: #f4efe6;
    --pk-surface: #f8f4ec;

    --pk-text: #2f2a24;
    --pk-muted: #6f665d;

    --pk-accent: #b89b72;
    --pk-border: rgba(0,0,0,0.08);

    --pk-max-width: 1200px;

    --pk-radius: 14px;

}


/* =========================================================
   RESET / FOUNDATION
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {

    margin: 0;
    padding: 0;

    background: var(--pk-bg);
    color: var(--pk-text);

    font-family:
        "Inter",
        system-ui,
        sans-serif;

    line-height: 1.65;
}


/* =========================================================
   LINKS
========================================================= */

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    opacity: 0.85;
}


/* =========================================================
   IMAGES
========================================================= */

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* =========================================================
   STORE WRAPPER
========================================================= */

.pk-store-shell,
.pk-page-shell {

    width: min(100% - 40px, var(--pk-max-width));

    margin-inline: auto;

    padding-top: 60px;
    padding-bottom: 80px;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {

    margin-top: 0;

    line-height: 1.15;

    font-weight: 600;

    letter-spacing: -0.02em;
}

p {
    margin-top: 0;
}


/* =========================================================
   BUTTONS
========================================================= */

button,
input[type="submit"],
.button,
.wp-element-button {

    border: none;

    background: var(--pk-accent);

    color: white;

    padding:
        12px
        22px;

    border-radius: 999px;

    cursor: pointer;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

button:hover,
input[type="submit"]:hover,
.button:hover,
.wp-element-button:hover {

    opacity: 0.92;

    transform: translateY(-1px);
}


/* =========================================================
   WOO BASELINE
========================================================= */

.woocommerce ul.products {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(240px, 1fr));

    gap: 28px;
}

.woocommerce ul.products li.product {

    background: var(--pk-surface);

    border-radius: var(--pk-radius);

    padding: 18px;

    border: 1px solid var(--pk-border);
}


/* =========================================================
   FORMS
========================================================= */

input,
textarea,
select {

    width: 100%;

    padding: 12px 14px;

    border-radius: 10px;

    border: 1px solid var(--pk-border);

    background: white;

    font: inherit;
}
/* =========================================================
   PRODUCT GRID FIXES
========================================================= */

.woocommerce ul.products {

    display: grid !important;

    grid-template-columns:
        repeat(auto-fit, minmax(260px, 1fr));

    gap: 40px;

    padding: 0;

    margin: 40px 0;

    list-style: none;
}


.woocommerce ul.products li.product {

    width: 100% !important;

    margin: 0 !important;

    padding: 24px;

    background: var(--pk-surface);

    border: 1px solid var(--pk-border);

    border-radius: 20px;

    display: flex;

    flex-direction: column;

    gap: 16px;
}