/*!
Theme Name: StilX
Author: greydot
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
Text Domain: stilx
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
    margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
    display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

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

html {
    box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --white: #fff;
    --cream: #faf8f4;
    --cream-mid: #f3efe8;
    --cream-dark: #eae4da;
    --warm: #b8956a;
    --warm-dark: #96754a;
    --warm-light: #d4bc98;
    --text: #1a1815;
    --text-mid: #4a453d;
    --text-light: #7a7268;
    --text-muted: #a69e94;
    --border: #e4ded5;
    --border-light: #eeebe5;
    --font-display: clamp(3rem, 5.5vw, 5rem);
    --font-h1: clamp(2.5rem, 4vw, 3.5rem);
    --font-h2: clamp(2rem, 3vw, 2.4rem);
    --font-h3: clamp(1.35rem, 2vw, 1.6rem);

    --font-lead: clamp(1rem, 1.2vw, 1.05rem);
    --font-small: .8rem;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", system-ui, sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
.header__logo {
    font-family: "Cormorant Garamond", Georgia, serif;
}
h1{
    font-size: var(--font-h1);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
h1 em{
    font-style: italic;
    color: var(--warm);
}
h2{
    font-size: var(--font-h2);
    font-weight: 600;
    margin: 3rem 0 1.5rem;
}
h3 {
    font-size: var(--font-h3);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
h4 {
    font-size: 1.15rem;
    font-weight:500;
    margin-bottom: 0.15rem;
}
.site-main ol, .site-main ul{
    margin: 1.5rem 0 2rem;
    padding-left: 25px;
}
.site-main li{
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: var(--font-lead);
}
.site-main ol li::marker {
  content: counter(list-item)"\a0\a0";
  font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--warm);
    font-weight: 500;
    line-height: 1;
}
.site-main li strong{
    color: var(--text);
}
img {
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
p{
    font-size: var(--font-lead);
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 15px;
}
.wp-block-image{
    margin: 3rem 0;
}
.wp-block-image img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}
.container{
	padding: 0 3rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
.content-container, .front-container{
    padding: 0 3rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.content-container{
    padding-top: 3rem;
    padding-bottom: 4rem;
}
/* NAV */
.header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}
.header__wrapper{
	display: flex;
    align-items: center;
    height: 64px;
}
.header__logo {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--text);
    cursor: pointer;
}
.header__logo span {
    font-style: italic;
    color: var(--warm);
}
.header__menu {
    list-style-type: none;
    display: flex;
    gap: 0.3rem;
    align-items: center;
    margin-left: auto;
}
.header__menu a {
    padding: 0.5rem 1.1rem;
    border-radius: 100px;
    font-size: var(--font-small);
    color: var(--text-light);
    transition: all 0.2s;
    font-weight: 400;
    letter-spacing: 0.02em;
    cursor: pointer;
}
.header__menu a:hover {
    color: var(--text);
    background: var(--cream-mid);
}
.header__menu .current-menu-item>a {
    color: var(--text);
    background: var(--cream-mid);
    font-weight: 500;
}
.header__actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: 5px;
}

.header__cart {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    color: #1c1b19;
    text-decoration: none;
}

.header__cart svg {
    display: block;
}

.header__cart-count {
    position: absolute;
    top: -7px;
    right: -8px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: #b89568;
    color: #fff;

    font-size: 10px;
    font-weight: 600;
    line-height: 1;
}

.header__account {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    color: #1c1b19;
    text-decoration: none;

    transition: opacity 0.2s ease;
}

.header__account svg {
    display: block;
}

.header__account:hover {
    opacity: 0.65;
}
.header__mobile-toggle {
    display: none;
}

.nav-cta {
    padding: 0.5rem 1.1rem;
    border-radius: 100px;
    font-size: var(--font-small);
    transition: all 0.2s;
    font-weight: 400;
    letter-spacing: 0.02em;
    background: var(--text) !important;
    color: var(--cream) !important;
    font-weight: 500 !important;
}
.nav-cta:hover {
    background: #2a2520 !important;
}

/* TABS */
.page-tabs{
    border-bottom: 1px solid var(--border);
    background: var(--white);
    margin-top: 64px;
}
.page-tabs ul{
	display: flex;
    gap: 0;
    list-style-type: none;
}
.page-tabs a{
	display: block;
    padding: 1rem 1.8rem;
    font-size: var(--font-small);
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    font-weight: 400;
    letter-spacing: 0.02em;
    cursor: pointer;
}
.page-tabs a:hover {
    color: var(--text-mid);
}
.page-tabs li.current-menu-item a{
    color: var(--text);
    border-bottom-color: var(--text);
    font-weight: 500;
}


/* BUTTONS */
.btn, .product-detail .product-add-to-cart button.single_add_to_cart_button, .wp-block-woocommerce-checkout .wc-block-components-button:not(.is-link), body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 100px;
    font-size: var(--font-small);
    width: auto;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    cursor: pointer;
}
.btn-dark, .product-detail .product-add-to-cart button.single_add_to_cart_button, .wp-block-woocommerce-checkout .wc-block-components-button:not(.is-link), body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link)  {
    background: var(--text);
    color: var(--cream);
    border-color: var(--text);
}
.product-detail .product-add-to-cart button.single_add_to_cart_button, .product-add-to-cart form{
    height: 100%;
}
.btn-dark:hover, .product-detail .product-add-to-cart button.single_add_to_cart_button:hover, .wp-block-woocommerce-checkout .wc-block-components-button:not(.is-link):hover, body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link):hover  {
    background: #2a2520;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(26, 24, 21, 0.15);
}
.btn-ghost {
    border-color: var(--border);
    color: var(--text-mid);
    background: transparent;
}

.btn-ghost:hover {
    border-color: var(--warm);
    color: var(--warm-dark);
}

.btn-delete {
    border: 1px solid #c9a39b;
    color: #a56b5f;
    background: transparent;
}

.btn-delete:hover {
    border-color: #a56b5f;
    color: #8f554a;
    background: #faf3f1;
}
.btn-warm {
    background: var(--warm);
    color: var(--white);
    border-color: var(--warm);
}
.btn-warm:hover {
    background: var(--warm-dark);
    transform: translateY(-1px);
}
#page{
    overflow-x: hidden;
}
.eyebrow{
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--warm);
    margin-bottom: 10px;
    font-weight: 500;
}
/* SHOWCASE GRID */
.showcase {
    padding: 5rem 0;
}
.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.showcase-filters {
    display: flex;
    gap: 0.4rem;
}
.filter-btn {
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    font-size: var(--font-small);
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
    font-family: "Inter", sans-serif;
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--text);
    color: var(--cream);
    border-color: var(--text);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.showcase-item {
    cursor: pointer;
    position: relative;
}
.showcase-img {
    aspect-ratio: 4/5;
    border-radius: 6px;
    overflow: hidden;
    background: var(--cream-mid);
}
.showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.7s cubic-bezier(0.2, 0.8, 0.3, 1),
        filter 0.4s;
    filter: saturate(0.92);
}
.showcase-item:hover .showcase-img img {
    transform: scale(1.04);
    filter: saturate(1.05);
}
.showcase-meta {
    padding: 1rem 0;
}
.showcase-meta .artist-link {
    font-size: var(--font-small);
    color: var(--text-muted);
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s;
}
.showcase-meta .artist-link:hover {
    color: var(--warm-dark);
}
.showcase-meta .price {
    font-size: var(--font-small);
    color: var(--warm-dark);
    font-weight: 500;
    margin-top: 0.35rem;
}
.showcase-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-mid);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.showcase-actions{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}
.showcase-actions .btn{
    padding: 0.4rem 2rem;
}

/* PRODUCT DETAIL */
.product-detail {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    min-height: 70vh;
    align-items: start;
}
.product-detail-img {
    border-radius: 8px;
    overflow: hidden;
    position: sticky;
    top: 140px;
}
.product-detail-img img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.product-detail-info {
    padding: 2rem 0;
}
.product-detail-info .breadcrumb {
    font-size: var(--font-small);
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.product-detail-info .breadcrumb a {
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}
.product-detail-info .breadcrumb a:hover {
    color: var(--warm-dark);
}
.product-detail-info .breadcrumb span {
    color: var(--border);
}

.product-detail-info .detail-artist {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
    cursor: pointer;
}
.product-detail-info .detail-artist:hover {
    color: var(--warm-dark);
}
.product-detail-info .detail-cat {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.product-detail-info .detail-price {
    font-size: 2rem;
    font-weight: 500;
    color: var(--warm-dark);
    margin-bottom: 2rem;
    font-family: "Cormorant Garamond", serif;
}
.product-detail-info .detail-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 480px;
}
.detail-specs {
    margin-bottom: 2.5rem;
}
.detail-specs h3 {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    font-family: "Inter", sans-serif;
    font-weight: 500;
}
.detail-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}
.detail-spec {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 300;
}
.detail-spec strong {
    font-weight: 500;
    color: var(--text-mid);
}
.single-product .product-add-to-cart .stock {
    display: none;
}
.detail-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
}
.detail-related {
    margin-top: 3rem;
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
}
.detail-related h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}
.detail-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.detail-related-item {
    cursor: pointer;
}
.detail-related-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.5s;
}
.detail-related-item:hover img {
    transform: scale(1.03);
}
.detail-related-item h4 {
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
}
.detail-related-item .price {
    font-size: 0.82rem;
    color: var(--warm-dark);
    font-weight: 500;
}

/* ARTIST DETAIL */
.artist-detail .breadcrumb {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.artist-detail .breadcrumb a {
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}
.artist-detail .breadcrumb a:hover {
    color: var(--warm-dark);
}
.artist-detail .breadcrumb span {
    color: var(--border);
}
.artist-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}
.artist-avatar {
    border-radius: 8px;
    overflow: hidden;
}
.artist-avatar img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
.artist-bio h1 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
    line-height: 1.1;
}
.artist-bio .artform-tag {
    font-size: 0.85rem;
    color: var(--warm);
    margin-bottom: 1rem;
}
.artist-bio p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
    max-width: 500px;
}
.artist-works h2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
}
.artist-works h2 em {
    font-style: italic;
    color: var(--warm);
}
.artist-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

/* ARTISTS PAGE */
.artists-hero {
    min-height: 340px;
    position: relative;
}
.artists-hero img {
    position: absolute;
    z-index: -1;
    width: 100vw;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
    filter: brightness(0.85);
}
.artists-hero-overlay {
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem 4rem;
}
.artists-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
}
.artists-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 300;
}
.artists-body {
    padding: 3rem 0;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3rem;
}
.artists-sidebar h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.sidebar-section {
    margin-bottom: 2rem;
}
.sidebar-section label {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}
.sidebar-section input,
.sidebar-section select {
    width: 100%;
    padding: 0.6rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.88rem;
    background: var(--white);
    font-family: "Inter", sans-serif;
    outline: none;
    transition: border-color 0.2s;
}
.sidebar-section input:focus {
    border-color: var(--warm);
}
.sidebar-section select {
    appearance: none;
    cursor: pointer;
}
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.sidebar-tag {
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    font-size: 0.75rem;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
    font-family: "Inter", sans-serif;
}
.sidebar-tag:hover,
.sidebar-tag.active {
    background: var(--text);
    color: var(--cream);
    border-color: var(--text);
}
.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.artist-card {
    cursor: pointer;
}
.artist-img {
    aspect-ratio: 1;
    border-radius: 6px;
    overflow: hidden;
    background: var(--cream-mid);
}
.artist-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.artist-card:hover .artist-img img {
    transform: scale(1.05);
}
.artist-info {
    padding: 0.8rem 0;
}
.artist-info h4 {
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.artist-info .artform {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}
.artist-works-empty {
    padding: 60px 0;
    text-align: center;
}

.artist-works-empty p {
    margin: 0;
}

.post-17{
    padding: 0 3rem;
}
.page-id-2 .content-container{
    padding-top: 0;
}


/* =========================================================
   STILX SHOP
   ========================================================= */

.shop-page {
    width: 100%;
}

.shop-header h1 {
    margin: 0 0 10px;
}


.shop-body {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 55px;
    padding-top: 3rem;
}

.shop-sidebar {
    align-self: start;
    position: sticky;
    top: 30px;
}

.shop-filters {
    width: 100%;
}

.shop-sidebar-header {
    margin-bottom: 28px;
}

.shop-sidebar-header h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
}

/* =========================================================
   Forms
   ========================================================= */
.stilx-form-field{
    margin-bottom: 27px;
}
.stilx-form-field>label {
    display: block;

    margin-bottom: 9px;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: .11em;
    text-transform: uppercase;

    color: #594b40;
}

.stilx-form-field>label span {
    color: #a66b48;
}

.stilx-form-field input,
.stilx-form-field select,
.stilx-form-field textarea{
    box-sizing: border-box;

    width: 100%;

    border: 1px solid #d9d1c8;
    border-radius: 5px;

    background: #fcfbf9;

    color: #252321;

    font-family: inherit;
    font-size: 15px;

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
    height: 50px;
    padding: 0 15px;
}

.stilx-form-field textarea {
    min-height: 150px;
    padding: 14px 15px;

    resize: vertical;
}

.stilx-form-field input:focus,
.stilx-form-field select:focus,
.stilx-form-field textarea:focus {
    outline: none;

    border-color: #b58b5d;

    background: #fff;

    box-shadow: 0 0 0 3px rgba(181, 139, 93, .08);
}
.stilx-form-field select {
    appearance: none;

    padding-right: 45px;

    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23594b40' stroke-width='1.3'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: right 17px center;
}

.stilx-form-field input[type="file"] {
    box-sizing: border-box;

    width: 100%;

    padding: 20px;

    border: 1px dashed #cbbfb3;
    border-radius: 5px;

    background: #fbfaf7;
    height: auto;
    font-family: inherit;
    font-size: 13px;
    color: #756b62;
}

.stilx-form-field input[type="file"]::file-selector-button {
    margin-right: 12px;

    padding: 9px 15px;

    border: 0;
    border-radius: 4px;

    background: #1c1b19;
    color: #fff;

    font-family: inherit;
    font-size: 11px;
    font-weight: 600;

    cursor: pointer;
}
/* RADIO */

.stilx-radio-options {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.stilx-radio-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin: 0;
    padding: 9px 14px;

    border: 1px solid #d9d1c8;
    border-radius: 5px;

    background: #fcfbf9;

    color: #594b40;

    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;

    text-transform: none;

    cursor: pointer;

    transition:
        border-color .2s ease,
        background .2s ease,
        color .2s ease;
}

.stilx-radio-option:hover {
    border-color: #b58b5d;
}


/* Hide native radio */

.stilx-radio-option input {
    position: absolute;

    opacity: 0;
    pointer-events: none;
}


/* Custom radio */

.stilx-radio-option span {
    position: relative;

    display: flex;
    align-items: center;

}

.stilx-radio-option:has(input:checked) {
    border-color: #b58b5d;
    background: #faf6f0;
    color: #252321;
}
.stilx-form-actions{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.stilx-image-upload {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stilx-image-upload__preview {
    width: 160px;
    height: 160px;

    flex-shrink: 0;

    overflow: hidden;

    border: 1px solid #d9d1c8;
    border-radius: 5px;

    background: #fbfaf7;

    display: flex;
    align-items: center;
    justify-content: center;
}

.stilx-image-upload__preview img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.stilx-image-upload__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    font-size: 13px;
    color: #756b62;
}

.stilx-image-upload__controls {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.stilx-image-upload__button {
    padding: 6px 15px;
}

.stilx-image-upload .stilx-form-help {
    margin: 0;
}
/* ---------------------------------------------------------
   FORM MESSAGES
--------------------------------------------------------- */

.stilx-form-message {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    margin: 32px 0;
    padding: 20px 24px;

    background: #f4f0e9;
    border-left: 3px solid var(--warm);
}


/*
 * Icon
 */

.stilx-form-message__icon {
    flex: 0 0 26px;

    width: 26px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--warm);
    border-radius: 50%;

    margin-top: 2px;
}


/*
 * Success checkmark
 */

.stilx-form-message__icon span {
    display: block;

    width: 7px;
    height: 4px;

    border-left: 1.5px solid var(--warm);
    border-bottom: 1.5px solid var(--warm);

    transform: rotate(-45deg);

    margin-top: -2px;
}


/*
 * Content
 */

.stilx-form-message__content strong {
    display: block;

    margin-bottom: 5px;

    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;

    color: var(--text);
}

.stilx-form-message__content p {
    margin: 0;

    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.6;

    color: #756d65;
}


/*
 * Notice
 */

.stilx-form-message.is-notice {
    border-left-color: #9a8b7a;
}

.stilx-form-message.is-notice
.stilx-form-message__icon {
    border-color: #9a8b7a;
}

.stilx-form-message.is-notice
.stilx-form-message__icon span {
    border-color: #9a8b7a;
}


/*
 * Error
 */

.stilx-form-message.is-error {
    border-left-color: #a56b5f;
}

.stilx-form-message.is-error
.stilx-form-message__icon {
    border-color: #a56b5f;
}

.stilx-form-message.is-error
.stilx-form-message__icon span {
    width: 8px;
    height: 8px;

    border: 0;

    position: relative;
    transform: none;
}

.stilx-form-message.is-error
.stilx-form-message__icon span::before,
.stilx-form-message.is-error
.stilx-form-message__icon span::after {
    content: "";

    position: absolute;

    top: 3px;
    left: 0;

    width: 9px;
    height: 1.5px;

    background: #a56b5f;
}

.stilx-form-message.is-error
.stilx-form-message__icon span::before {
    transform: rotate(45deg);
}

.stilx-form-message.is-error
.stilx-form-message__icon span::after {
    transform: rotate(-45deg);
}

/* =========================================================
   FILTER SECTIONS
   ========================================================= */

.shop-filters input, .shop-filters select{
    height: 40px;
}

.shop-filter-section {
    padding: 0 0 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border-light);
}
.shop-filter-section  .stilx-radio-option{
    padding-top: 5px;
    padding-bottom: 5px;
}

.shop-price-fields {
    display: flex;
    align-items: center;
    gap: 7px;
}



.shop-price-fields span {
    color: var(--text-muted);
}



/* =========================================================
   ACTIONS
   ========================================================= */

.shop-filter-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}



.shop-filter-reset {
    text-align: center;

    font-size: .78rem;
    color: var(--text-muted);

    text-decoration: none;
}

.shop-filter-reset:hover {
    color: var(--text);
}


/* =========================================================
   PRODUCTS
   ========================================================= */

.shop-products {
    min-width: 0;
}


/* =========================================================
   TOP BAR
   ========================================================= */

.shop-products-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
    padding-bottom: 15px;

    border-bottom: 1px solid var(--border-light);
}

.shop-result-count {
    font-size: .78rem;
    color: var(--text-muted);
}

.shop-ordering select {
    border: 0;
    background: transparent;

    font-family: inherit;
    font-size: .78rem;
    color: var(--text-light);

    padding: 4px 0;
}

.shop-ordering select:focus {
    outline: none;
}


/* =========================================================
   PRODUCT GRID
   ========================================================= */

.shop-products ul.products, .shop-products-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 35px 22px;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}

.shop-products ul.products::before,
.shop-products ul.products::after {
    display: none !important;
}

.shop-products ul.products li.product {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   PAGINATION
   ========================================================= */

.shop-products .woocommerce-pagination {
    margin-top: 55px;
    text-align: center;
}

.shop-products .woocommerce-pagination ul {
    display: inline-flex;

    margin: 0;
    padding: 0;

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

.shop-products .woocommerce-pagination ul li {
    border: 0 !important;
}

.shop-products .woocommerce-pagination ul li a,
.shop-products .woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border: 0 !important;

    font-size: .8rem;
    color: var(--text-light);
    background: transparent;
}

.shop-products .woocommerce-pagination ul li span.current {
    background: var(--text);
    color: var(--white);
}

.shop-products .woocommerce-pagination ul li a:hover {
    background: var(--cream-mid);
}

/* =========================================================
   STILX — WOOCOMMERCE NOTICES
   ========================================================= */

.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error {
    position: relative;

    margin: 0 0 2rem;
    padding: 1.2rem 1.4rem 1.2rem 3.2rem;

    border: 1px solid var(--border-light);
    border-radius: 0;

    background: var(--cream-mid);

    color: var(--text);

    font-family: inherit;
    font-size: .85rem;
    font-weight: 300;
    line-height: 1.5;

    list-style: none;
}

/* Remove WooCommerce default colors */
.woocommerce .woocommerce-info {
    border-top: 1px solid var(--border-light);
}

.woocommerce .woocommerce-message {
    border-top: 1px solid var(--border-light);
}

.woocommerce .woocommerce-error {
    border-top: 1px solid var(--border-light);
}


.woocommerce .woocommerce-info::before,
.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-error::before {
    position: absolute;

    left: 1.25rem;
    top: 50%;

    transform: translateY(-50%);

    font-size: .9rem;

    color: var(--warm);

    opacity: .8;
}


/* Info */
.woocommerce .woocommerce-info::before {
    content: "i";

    display: flex;
    align-items: center;
    justify-content: center;

    width: 16px;
    height: 16px;

    border: 1px solid var(--warm);
    border-radius: 50%;

    font-family: Georgia, serif;
    font-size: .7rem;
    font-style: italic;
}


/* Success */
.woocommerce .woocommerce-message::before {
    color: var(--warm);
}


/* Error */
.woocommerce .woocommerce-error::before {
    color: #8b5e55;
}


.woocommerce .woocommerce-info a,
.woocommerce .woocommerce-message a,
.woocommerce .woocommerce-error a {
    color: var(--text);

    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: var(--border);
    text-underline-offset: 3px;
}

.woocommerce .woocommerce-info a:hover,
.woocommerce .woocommerce-message a:hover,
.woocommerce .woocommerce-error a:hover {
    color: var(--warm-dark);
}
.showcase-notification {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
    background: #111;
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    border-radius: 6px;
    z-index: 10;
}

.showcase-item {
    position: relative;
}

/* =========================================
   Checkout validation errors
   ========================================= */

.wc-block-components-text-input.has-error {
    margin-bottom: 0;
}

/* Error message */
.wc-block-components-validation-error {
    margin-top: 7px !important;
    padding: 0 !important;
    color: #756f68 !important;
}

/* Error text + icon */
.wc-block-components-validation-error p {
    display: flex !important;
    align-items: flex-start;
    gap: 7px;
    margin: 0 !important;
    padding: 0 !important;

    color: #756f68 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
}

/* Error icon */
.wc-block-components-validation-error svg {
    flex: 0 0 16px;
    width: 16px !important;
    height: 16px !important;
    margin-top: 1px;

    fill: currentColor !important;
}

/* Error text */
.wc-block-components-validation-error span {
    display: block;
}

/* =========================================
   Invalid inputs
   ========================================= */

.wc-block-components-text-input.has-error input {
    border-color: #cfc7be !important;
}

.wc-block-components-text-input.has-error input:focus {
    border-color: #756f68 !important;
    box-shadow: none !important;
    outline: none;
}



.shop-products .woocommerce-info {
    margin-top: 0;
    margin-bottom: 2rem;
}
.shop-products {
    position: relative;
}

.shop-products.is-loading {
    opacity: .45;
    pointer-events: none;
    transition: opacity .2s ease;
}


/* CTA */
.cta-footer {
    background: var(--text);
    color: var(--cream);
    text-align: center;
    padding: 6rem 2rem;
}
.cta-footer h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 0.8rem;
    color: var(--cream);
}
.cta-footer h2 em {
    font-style: italic;
    color: var(--warm-light);
}
.cta-footer p {
    color: var(--text-muted);
    max-width: 440px;
    margin: 0 auto 2rem;
    font-size: 0.95rem;
    font-weight: 300;
}

footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-light);
    background: var(--cream);
}
footer a {
    color: var(--warm);
}

/* BACK BUTTON */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.84rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
    margin-bottom: 1.5rem;
}
.back-link:hover {
    color: var(--warm-dark);
}
.back-link svg {
    width: 16px;
    height: 16px;
}
.woocommerce-cart .wp-block-woocommerce-cart-order-summary-totals-block .wc-block-components-totals-wrapper, .woocommerce-cart .wp-block-woocommerce-cart-order-summary-totals-block{
    display: none!important;
}
#shipping-option{
    display: none;
}
/* RESPONSIVE */
@media (max-width: 1024px) {
    .artists-body {
        grid-template-columns: 1fr;
    }
    .product-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .product-detail-img {
        position: static;
    }
    .artist-header {
        grid-template-columns: 200px 1fr;
        gap: 2rem;
    }
}
@media (max-width: 1000px) {

    .shop-body {
        grid-template-columns: 200px minmax(0, 1fr);
        gap: 35px;
    }


    .shop-products ul.products, .shop-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}
@media (max-width: 900px) {

    /* Logo */

    .header__logo {
        flex-shrink: 0;
    }


    /* Existing menu — hidden until opened */

    .header__menu {
        display: none;

        position: absolute;
        top: 64px;
        left: 0;
        right: 0;

        z-index: 10;

        flex-direction: column;
        align-items: stretch;

        margin: 0;
        padding: 14px 20px 20px;

        gap: 2px;

        background: rgba(250, 248, 244, 0.98);
        backdrop-filter: blur(20px);

        border-top: 1px solid var(--border-light);
        border-bottom: 1px solid var(--border-light);
    }

    .header__menu.is-open {
        display: flex;
    }


    .header__menu li {
        width: 100%;
    }


    .header__menu a {
        display: block;

        padding: 13px 14px;

        border-radius: 6px;

        font-size: 0.9rem;
    }


    /* Actions */

    .header__actions {
        margin-left: auto;

        gap: 14px;
    }


    .header__actions .nav-cta {
        padding: 0.5rem 0.9rem;

        font-size: 0.75rem;
    }


    /* Hamburger */

    .header__mobile-toggle {
        display: flex;
        flex-shrink: 0;

        align-items: center;
        justify-content: center;

        flex-direction: column;
        gap: 4px;

        width: 34px;
        height: 34px;

        margin-left: 4px;
        padding: 0;

        border: 0;
        border-radius: 50%;

        background: transparent;
        color: var(--text);

        cursor: pointer;
    }


    .header__mobile-toggle span {
        display: block;

        width: 20px;
        height: 1.5px;

        background: currentColor;

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


    /* Hamburger → X */

    .header__mobile-toggle.is-open span:nth-child(1) {
        transform: translateY(5.5px) rotate(45deg);
    }

    .header__mobile-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .header__mobile-toggle.is-open span:nth-child(3) {
        transform: translateY(-5.5px) rotate(-45deg);
    }


    /* Tabs */

    .page-tabs {
        overflow-x: auto;

        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .page-tabs::-webkit-scrollbar {
        display: none;
    }

    .page-tabs .container {
        width: max-content;
        min-width: 100%;
    }

    .page-tabs ul {
        flex-wrap: nowrap;

        width: max-content;
    }

    .page-tabs li {
        flex: 0 0 auto;
    }

    .page-tabs a {
        padding: 0.9rem 1.2rem;

        font-size: 0.8rem;
        white-space: nowrap;
    }

}
@media (max-width: 768px) {
	.container, .content-container, .front-container {
        padding: 0 1rem;
    }
    .post-17{
        padding: 0;
    }
    .header__menu {
        gap: 0;
    }
    .page-tabs {
        overflow-x: auto;
    }
    .page-tabs a{
        white-space: nowrap;
        padding: 1rem 1.2rem;
    }
    .showcase {
        padding: 3rem 1.5rem;
    }
    .showcase-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .showcase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .artists-grid {
        grid-template-columns: 1fr 1fr;
    }
    .artist-header {
        grid-template-columns: 1fr;
    }
    .artist-works-grid {
        grid-template-columns: 1fr 1fr;
    }
    .detail-related-grid {
        grid-template-columns: 1fr 1fr;
    }
    .showcase-filters {
        flex-wrap: wrap;
    }

    .shop-body {
        display: block;
         padding-top: 1.5rem;
        
    }

    .shop-sidebar {
        position: static;
        margin-bottom: 40px;
    }

    .shop-products ul.products, .shop-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px 14px;
    }
}
@media (max-width: 600px) {
    .header__actions {
        gap: 9px;
    }

    .header__actions .nav-cta {
        padding: 0.45rem 0.75rem;
        font-size: 0.7rem;
    }

    .header__cart,
    .header__account {
        width: 26px;
        height: 26px;
    }

    .header__cart svg,
    .header__account svg {
        width: 21px;
        height: 21px;
    }

    .header__mobile-toggle {
        margin-left: 0;
    }
    .woocommerce .woocommerce-info,
    .woocommerce .woocommerce-message,
    .woocommerce .woocommerce-error {
        padding: 1rem 1rem 1rem 2.8rem;
        font-size: .82rem;
    }

    .woocommerce .woocommerce-info::before,
    .woocommerce .woocommerce-message::before,
    .woocommerce .woocommerce-error::before {
        left: 1rem;
    }

}
@media (max-width: 480px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    .artists-grid {
        grid-template-columns: 1fr;
    }

    .artist-works-grid {
        grid-template-columns: 1fr;
    }
    .shop-products ul.products, .shop-products-grid {
        grid-template-columns: 1fr;
    }

    .shop-products-top {
        align-items: flex-start;
        gap: 15px;
    }
}

