
:root {
    --pc-bg: #f7f4f0;
    --pc-bg-alt: #ffffff;
    --pc-text: #222222;
    --pc-muted: #666666;
    --pc-accent: #3f6b4f;
    --pc-accent-soft: #dfe9e3;
    --pc-border: #e0ddd7;
    --pc-radius-lg: 20px;
    --pc-radius-md: 12px;
    --pc-radius-sm: 999px;
}

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

body {
    margin: 0;
    font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--pc-text);
    background-color: var(--pc-bg);
    line-height: 1.6;
}

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

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

.pc-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */

.pc-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background-color: rgba(247, 244, 240, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.pc-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 24px;
}

.pc-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 14px;
}

.pc-logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #7aa381, #3f6b4f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
}

.pc-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    margin: 0;
}

.pc-nav a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--pc-muted);
}

.pc-nav a:hover,
.pc-nav a.active {
    color: var(--pc-text);
}

.pc-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pc-btn {
    border-radius: 999px;
    border: none;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.pc-btn-primary {
    background-color: var(--pc-accent);
    color: #ffffff;
}

.pc-btn-primary:hover {
    filter: brightness(0.95);
}

.pc-btn-ghost {
    background-color: transparent;
    border: 1px solid var(--pc-border);
    color: var(--pc-text);
}

.pc-btn-ghost:hover {
    background-color: #ffffff;
}

.pc-icon-btn {
    border-radius: 999px;
    border: 1px solid var(--pc-border);
    background-color: #ffffff;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Mobile nav */

.pc-mobile-menu-btn {
    display: none;
}

.pc-nav-mobile {
    display: none;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    background-color: var(--pc-bg);
}

.pc-nav-mobile.open {
    display: block;
}

.pc-nav-mobile ul {
    list-style: none;
    margin: 0;
    padding: 8px 16px 16px;
}

.pc-nav-mobile li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.pc-nav-mobile a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Hero */

.pc-hero {
    padding: 56px 0 40px;
}

.pc-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.pc-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--pc-muted);
    margin-bottom: 12px;
}

.pc-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    line-height: 1.1;
    margin: 0 0 14px;
}

.pc-hero-sub {
    max-width: 460px;
    color: var(--pc-muted);
    margin-bottom: 20px;
}

.pc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.pc-hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.pc-hero-meta-title {
    font-size: 13px;
    font-weight: 700;
}

.pc-hero-meta-text {
    font-size: 13px;
    color: var(--pc-muted);
}

/* Hero media */

.pc-hero-media {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pc-hero-main-card {
    background-color: var(--pc-bg-alt);
    border-radius: var(--pc-radius-lg);
    padding: 18px;
    border: 1px solid var(--pc-border);
}

.pc-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 4px 10px;
    border-radius: 999px;
    background-color: var(--pc-accent-soft);
    color: var(--pc-accent);
    margin-bottom: 12px;
}

.pc-hero-image-placeholder {
    border-radius: var(--pc-radius-md);
    height: 220px;
    background: radial-gradient(circle at top left, #f0efe7, #dfe9e3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--pc-muted);
}

.pc-hero-main-card h3 {
    margin: 0 0 6px;
}

.pc-hero-main-card p {
    margin: 0 0 10px;
    font-size: 14px;
    color: var(--pc-muted);
}

.pc-hero-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pc-price {
    font-weight: 700;
}

.pc-text-link {
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pc-hero-side-card {
    border-radius: var(--pc-radius-lg);
    background-color: #e4efe8;
    padding: 18px;
}

/* Sections & grids */

.pc-section {
    padding: 40px 0;
}

.pc-section-alt {
    background-color: var(--pc-bg-alt);
}

.pc-section-center {
    text-align: center;
}

.pc-section-header {
    margin-bottom: 20px;
}

.pc-section-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    margin: 0 0 6px;
}

.pc-section-header p {
    margin: 0;
    color: var(--pc-muted);
}

.pc-section-header-inline {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.pc-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.pc-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.pc-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.pc-grid-align-center {
    align-items: center;
}

.pc-grid-align-start {
    align-items: flex-start;
}

/* Category cards */

.pc-category-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: var(--pc-radius-lg);
    padding: 14px;
    background-color: var(--pc-bg-alt);
    border: 1px solid var(--pc-border);
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.pc-category-card:hover {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.pc-category-image {
    border-radius: var(--pc-radius-md);
    height: 150px;
    background-size: cover;
    background-position: center;
}

/* Simple placeholder backgrounds */

.pc-img-face {
    background-image: linear-gradient(135deg, #f1eee7, #d6e5dd);
}

.pc-img-body {
    background-image: linear-gradient(135deg, #f3e9e3, #e1dfd8);
}

.pc-img-hair {
    background-image: linear-gradient(135deg, #e5ecf1, #d6e5dd);
}

/* Image tile */

.pc-image-tile {
    position: relative;
}

.pc-image-tile-main {
    border-radius: var(--pc-radius-lg);
    height: 260px;
    background-image: linear-gradient(135deg, #f1eee7, #d6e5dd);
}

.pc-image-tile-badge {
    position: absolute;
    right: 10%;
    bottom: -10%;
    background-color: #ffffff;
    border-radius: var(--pc-radius-lg);
    padding: 10px 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    font-size: 12px;
    max-width: 140px;
}

.pc-image-tile-badge span:first-child {
    font-size: 18px;
    font-weight: 700;
    display: block;
}

/* Product cards */

.pc-product-card {
    border-radius: var(--pc-radius-lg);
    background-color: var(--pc-bg-alt);
    border: 1px solid var(--pc-border);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
}

.pc-product-image {
    border-radius: var(--pc-radius-md);
    height: 170px;
    margin-bottom: 6px;
}

.pc-product-card p {
    margin: 0;
    color: var(--pc-muted);
}

/* Lists */

.pc-list {
    padding-left: 18px;
    margin: 0 0 12px;
    color: var(--pc-muted);
}

.pc-list li + li {
    margin-top: 4px;
}

.pc-list-plain {
    list-style: none;
    padding-left: 0;
}

/* Quote */

.pc-quote-text {
    max-width: 620px;
    margin: 10px auto 8px;
    color: var(--pc-muted);
}

.pc-quote-author {
    font-weight: 600;
}

/* Page hero */

.pc-page-hero {
    padding: 40px 0 10px;
}

.pc-page-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    margin: 6px 0 6px;
}

/* Shop page */

.pc-shop-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
}

.pc-filter-sidebar {
    background-color: var(--pc-bg-alt);
    border-radius: var(--pc-radius-lg);
    padding: 14px;
    border: 1px solid var(--pc-border);
    font-size: 14px;
}

.pc-filter-sidebar h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 16px;
}

.pc-filter-sidebar h4 {
    margin-bottom: 6px;
    margin-top: 14px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.pc-filter-sidebar ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.pc-filter-sidebar li + li {
    margin-top: 4px;
}

.pc-filter-sidebar a {
    color: var(--pc-muted);
}

.pc-filter-sidebar a:hover {
    color: var(--pc-text);
}

.pc-shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

/* Product detail */

.pc-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 32px;
}

.pc-product-hero-image {
    border-radius: var(--pc-radius-lg);
    height: 360px;
}

.pc-product-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.pc-thumb {
    flex: 1;
    border-radius: var(--pc-radius-md);
    height: 70px;
}

.pc-product-short {
    color: var(--pc-muted);
}

.pc-product-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    margin: 12px 0;
}

.pc-price-lg {
    font-size: 22px;
}

.pc-product-size {
    font-size: 13px;
    color: var(--pc-muted);
}

.pc-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.pc-qty-selector {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid var(--pc-border);
    overflow: hidden;
}

.pc-qty-selector button {
    border: none;
    background: none;
    padding: 6px 10px;
    cursor: pointer;
}

.pc-qty-selector input {
    width: 36px;
    border: none;
    text-align: center;
    padding: 6px 0;
}

/* Blog */

.pc-blog-grid {
    gap: 20px;
}

.pc-blog-card {
    background-color: var(--pc-bg-alt);
    border-radius: var(--pc-radius-lg);
    padding: 14px;
    border: 1px solid var(--pc-border);
    font-size: 14px;
}

.pc-blog-card h3,
.pc-blog-card h4 {
    margin-top: 0;
    margin-bottom: 6px;
    font-family: "Playfair Display", serif;
    font-size: 18px;
}

.pc-blog-card p {
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--pc-muted);
}

/* Forms */

.pc-form {
    background-color: var(--pc-bg-alt);
    border-radius: var(--pc-radius-lg);
    padding: 16px;
    border: 1px solid var(--pc-border);
}

.pc-form-group {
    margin-bottom: 10px;
}

.pc-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.pc-form-group input,
.pc-form-group select,
.pc-form-group textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid var(--pc-border);
    font-family: inherit;
    font-size: 14px;
    background-color: #ffffff;
}

/* Footer */

.pc-footer {
    background-color: #11110f;
    color: #f5f3ed;
    padding-top: 30px;
    margin-top: 40px;
}

.pc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 30px;
    padding-bottom: 20px;
}

.pc-footer h3,
.pc-footer h4 {
    margin-top: 0;
    margin-bottom: 8px;
}

.pc-footer p {
    margin-top: 0;
    color: #cbc5b4;
}

.pc-footer ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.pc-footer li + li {
    margin-top: 4px;
}

.pc-footer a {
    color: #f5f3ed;
    font-size: 14px;
}

.pc-newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pc-newsletter-form input {
    flex: 1;
    min-width: 140px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    background-color: transparent;
    color: #f5f3ed;
}

.pc-newsletter-form input::placeholder {
    color: #a79f8d;
}

.pc-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
    font-size: 13px;
}

.pc-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pc-footer-links {
    display: flex;
    gap: 12px;
}

/* Utilities */

.pc-section-center .pc-container {
    max-width: 680px;
}

/* Responsive */

@media (max-width: 900px) {
    .pc-nav {
        display: none;
    }
    .pc-mobile-menu-btn {
        display: flex;
    }
    .pc-hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .pc-hero {
        padding-top: 30px;
    }
    .pc-hero-media {
        order: -1;
    }
    .pc-hero-meta {
        grid-template-columns: minmax(0, 1fr);
    }
    .pc-grid-2,
    .pc-grid-3,
    .pc-grid-4,
    .pc-shop-layout,
    .pc-product-layout,
    .pc-footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 600px) {
    .pc-header-inner {
        padding: 10px 0;
    }
    .pc-hero h1 {
        font-size: 30px;
    }
    .pc-section {
        padding: 26px 0;
    }
    .pc-section-header h2 {
        font-size: 22px;
    }
    .pc-section-header-inline {
        flex-direction: column;
        align-items: flex-start;
    }
    .pc-footer {
        margin-top: 30px;
    }
}

.pc-hide-mobile {
    display: inline-flex;
}

@media (max-width: 900px) {
    .pc-hide-mobile {
        display: none;
    }
}
