:root {
    --olive: #3D4A35;
    --olive-dark: #2C3628;
    --cream: #F5EDD6;
    --cream-light: #FAF5EA;
    --terracotta: #C4714A;
    --charcoal: #1A1A1A;
    --grey-text: #6B6B60;
    --white: #FFFFFF;
    --grey-mid: #E8E8E4;

    --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
    --shadow-md: 0 8px 32px rgba(0,0,0,.12);
    --shadow-lg: 0 16px 64px rgba(0,0,0,.16);

    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
}

/* GLOBAL */
body.peazzy-body {
    background: var(--cream-light);
    color: var(--charcoal);
    font-family: system-ui, -apple-system, sans-serif;
}

/* HEADER */
.peazzy-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(250,245,234,.95);
    border-bottom: 1px solid rgba(61,74,53,.12);
}

.peazzy-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.peazzy-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--olive);
    font-weight: 800;
    font-size: 22px;
    text-decoration: none;
}

.peazzy-logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--olive);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.peazzy-menu {
    display: flex;
    gap: 28px;
    list-style: none;
}

.peazzy-menu a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
}

.peazzy-menu a:hover {
    color: var(--terracotta);
}

/* ACTIONS */
.peazzy-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.peazzy-account-link {
    text-decoration: none;
    color: var(--olive);
    font-weight: 600;
}

.peazzy-cart-link {
    background: var(--olive);
    color: var(--cream);
    padding: 10px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

.peazzy-cart-count {
    background: var(--terracotta);
    color: white;
    border-radius: 999px;
    padding: 2px 6px;
    margin-left: 6px;
    font-size: 12px;
}

/* FOOTER */
.peazzy-footer {
    background: var(--olive);
    color: var(--cream);
    padding: 60px 24px;
}

.peazzy-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
}

.peazzy-footer a {
    display: block;
    color: var(--cream);
    text-decoration: none;
    margin: 6px 0;
}

.peazzy-footer a:hover {
    color: var(--terracotta);
}

.peazzy-footer-bottom {
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,.2);
    padding-top: 20px;
}

/* MOBILE */
.peazzy-menu-toggle {
    display: none;
}

@media (max-width: 900px) {
    .peazzy-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--cream-light);
        padding: 20px;
    }

    .peazzy-nav.active .peazzy-menu {
        display: flex;
    }

    .peazzy-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .peazzy-menu-toggle span {
        width: 24px;
        height: 2px;
        background: var(--olive);
    }

    .peazzy-footer-inner {
        grid-template-columns: 1fr;
    }
}

/* FRONT PAGE */
.peazzy-hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 90px 24px;
    background:
        radial-gradient(circle at 80% 20%, rgba(196,113,74,.24), transparent 28%),
        linear-gradient(135deg, var(--cream-light), var(--cream));
}

.peazzy-hero-inner {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
}

.peazzy-badge {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(196,113,74,.14);
    color: var(--terracotta);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.peazzy-badge-light {
    background: rgba(255,255,255,.16);
    color: var(--cream);
}

.peazzy-hero h1 {
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.03;
    color: var(--olive);
    margin: 24px 0;
    letter-spacing: -0.045em;
}

.peazzy-hero p {
    font-size: 20px;
    color: var(--grey-text);
    max-width: 650px;
}

.peazzy-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.peazzy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .04em;
    text-decoration: none;
    border: 2px solid transparent;
    transition: .25s ease;
}

.peazzy-btn-primary {
    background: var(--olive);
    color: var(--cream);
}

.peazzy-btn-primary:hover {
    background: var(--olive-dark);
    color: var(--cream);
    transform: translateY(-2px);
}

.peazzy-btn-outline {
    border-color: var(--olive);
    color: var(--olive);
}

.peazzy-btn-outline:hover {
    background: var(--olive);
    color: var(--cream);
}

.peazzy-btn-light {
    background: var(--white);
    color: var(--olive);
}

.peazzy-btn-light:hover {
    background: var(--cream);
    color: var(--olive);
    transform: translateY(-2px);
}

.peazzy-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 46px;
}

.peazzy-hero-stats div {
    background: rgba(255,255,255,.6);
    border: 1px solid rgba(61,74,53,.12);
    border-radius: 18px;
    padding: 18px;
}

.peazzy-hero-stats strong {
    display: block;
    color: var(--olive);
    font-size: 17px;
}

.peazzy-hero-stats span {
    color: var(--grey-text);
    font-size: 13px;
}

.peazzy-hero-visual {
    min-height: 540px;
    border-radius: 40px;
    background:
        radial-gradient(circle at top left, rgba(196,113,74,.45), transparent 35%),
        linear-gradient(145deg, var(--olive), var(--olive-dark));
    box-shadow: 0 24px 80px rgba(0,0,0,.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.peazzy-coffee-bag-card {
    width: 285px;
    min-height: 390px;
    border-radius: 34px 34px 24px 24px;
    background: var(--cream);
    color: var(--olive);
    padding: 34px 28px;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0,0,0,.28);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.peazzy-bag-top {
    width: 130px;
    height: 20px;
    border-radius: 999px;
    background: var(--olive);
    margin-bottom: 34px;
}

.peazzy-bag-logo {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -.04em;
}

.peazzy-bag-title {
    color: var(--terracotta);
    font-weight: 800;
    margin-top: 10px;
    font-size: 20px;
}

.peazzy-bag-line {
    width: 80px;
    height: 3px;
    background: var(--terracotta);
    margin: 22px 0;
    border-radius: 999px;
}

.peazzy-bag-small {
    color: var(--grey-text);
    font-weight: 700;
}

.peazzy-bag-origin {
    margin-top: 24px;
    letter-spacing: .18em;
    font-size: 12px;
    font-weight: 900;
}

/* VALUE STRIP */
.peazzy-value-strip {
    max-width: 1280px;
    margin: -42px auto 40px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 16px 64px rgba(0,0,0,.12);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.peazzy-value-item {
    padding: 26px;
    border-right: 1px solid var(--grey-mid);
}

.peazzy-value-item:last-child {
    border-right: none;
}

.peazzy-value-item strong {
    display: block;
    color: var(--olive);
    font-size: 18px;
    margin-bottom: 6px;
}

.peazzy-value-item span {
    color: var(--grey-text);
    font-size: 14px;
}

/* SECTIONS */
.peazzy-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 24px;
}

.peazzy-section-cream {
    max-width: none;
    background: var(--cream);
}

.peazzy-section-cream > .peazzy-section-header,
.peazzy-section-cream > .peazzy-products-wrap {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.peazzy-section-header {
    text-align: center;
    margin-bottom: 54px;
}

.peazzy-section-header h2 {
    font-size: clamp(34px, 4vw, 52px);
    color: var(--olive);
    margin: 16px 0 10px;
    letter-spacing: -.035em;
}

.peazzy-section-header p {
    color: var(--grey-text);
    font-size: 18px;
}

.peazzy-empty-message {
    grid-column: 1 / -1;
    background: var(--white);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
}

/* CATEGORY GRID */
.peazzy-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.peazzy-category-card {
    position: relative;
    min-height: 290px;
    border-radius: 24px;
    overflow: hidden;
    color: var(--white);
    background: var(--olive);
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    text-decoration: none;
}

.peazzy-category-card img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    opacity: .68;
    transition: .3s ease;
}

.peazzy-category-card:hover img {
    transform: scale(1.05);
    opacity: .48;
}

.peazzy-category-overlay {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
}

.peazzy-category-overlay h3 {
    color: var(--white);
    font-size: 26px;
    margin: 0 0 4px;
}

.peazzy-category-overlay span {
    color: var(--cream);
}

/* STORY */
.peazzy-story {
    padding: 100px 24px;
    background: var(--cream-light);
}

.peazzy-story-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.peazzy-story-media {
    min-height: 460px;
    background:
        radial-gradient(circle at bottom right, rgba(196,113,74,.28), transparent 35%),
        linear-gradient(145deg, var(--cream), var(--cream-light));
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.peazzy-story-card {
    background: var(--white);
    border-radius: 28px;
    padding: 38px;
    max-width: 340px;
    box-shadow: 0 16px 64px rgba(0,0,0,.12);
}

.peazzy-story-card span {
    color: var(--terracotta);
    font-weight: 900;
    letter-spacing: .12em;
}

.peazzy-story-card strong {
    display: block;
    color: var(--olive);
    font-size: 32px;
    margin: 12px 0;
    line-height: 1.1;
}

.peazzy-story-card p {
    color: var(--grey-text);
}

.peazzy-story-content h2 {
    color: var(--olive);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    margin: 18px 0;
    letter-spacing: -.035em;
}

.peazzy-story-content p {
    color: var(--grey-text);
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 18px;
}

/* SPLIT CTA */
.peazzy-split-cta {
    max-width: 1280px;
    margin: 0 auto;
    padding: 70px 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.peazzy-split-card {
    border-radius: 32px;
    padding: 52px;
}

.peazzy-split-card h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    margin: 18px 0 12px;
}

.peazzy-split-card p {
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 28px;
}

.peazzy-split-card-dark {
    background: var(--olive);
    color: var(--cream);
}

.peazzy-split-card-dark h2 {
    color: var(--white);
}

.peazzy-split-card-dark p {
    color: var(--cream);
}

.peazzy-split-card-light {
    background: var(--white);
    color: var(--charcoal);
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
}

.peazzy-split-card-light h2 {
    color: var(--olive);
}

/* FINAL CTA */
.peazzy-final-cta {
    max-width: 1280px;
    margin: 50px auto 100px;
    padding: 70px;
    border-radius: 40px;
    background:
        radial-gradient(circle at 85% 20%, rgba(196,113,74,.35), transparent 28%),
        linear-gradient(145deg, var(--olive), var(--olive-dark));
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.peazzy-final-cta h2 {
    color: var(--white);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    margin: 18px 0 10px;
}

.peazzy-final-cta p {
    color: var(--cream);
    font-size: 18px;
    max-width: 680px;
}

/* WOOCOMMERCE PRODUCT GRID SUPPORT */
.peazzy-products-wrap .woocommerce ul.products,
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.peazzy-products-wrap .woocommerce ul.products::before,
.peazzy-products-wrap .woocommerce ul.products::after,
.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none;
}

.peazzy-products-wrap .woocommerce ul.products li.product,
.woocommerce ul.products li.product {
    width: auto !important;
    margin: 0 !important;
    float: none !important;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    transition: .3s ease;
    padding-bottom: 22px;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

.woocommerce ul.products li.product img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 0 0 18px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: var(--charcoal);
    padding: 0 20px;
    font-size: 18px;
}

.woocommerce ul.products li.product .price {
    color: var(--olive);
    padding: 0 20px;
    font-weight: 900;
}

.woocommerce ul.products li.product .button {
    margin: 12px 20px 0;
    background: var(--olive);
    color: var(--cream);
    border-radius: 999px;
    padding: 12px 20px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .peazzy-hero-inner,
    .peazzy-story-inner,
    .peazzy-split-cta {
        grid-template-columns: 1fr;
    }

    .peazzy-value-strip,
    .peazzy-category-grid,
    .peazzy-products-wrap .woocommerce ul.products,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }

    .peazzy-final-cta {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 24px;
        margin-right: 24px;
        padding: 44px;
    }
}

@media (max-width: 640px) {
    .peazzy-hero {
        padding: 60px 20px;
    }

    .peazzy-hero-stats,
    .peazzy-value-strip,
    .peazzy-category-grid,
    .peazzy-products-wrap .woocommerce ul.products,
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

    .peazzy-value-strip {
        margin: 0 20px 30px;
    }

    .peazzy-split-card {
        padding: 34px;
    }

    .peazzy-final-cta {
        padding: 34px;
    }
}

/* PAGE HERO */
.peazzy-page-hero {
    padding: 100px 24px 80px;
    background:
        radial-gradient(circle at 85% 20%, rgba(196,113,74,.22), transparent 28%),
        linear-gradient(135deg, var(--cream-light), var(--cream));
    text-align: center;
}

.peazzy-page-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.peazzy-page-hero h1 {
    color: var(--olive);
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    margin: 22px 0 16px;
    letter-spacing: -.045em;
}

.peazzy-page-hero p {
    color: var(--grey-text);
    font-size: 20px;
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto;
}

/* CTA BLOCK */
.peazzy-cta-block {
    max-width: 1280px;
    margin: 60px auto;
    padding: 60px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.peazzy-cta-dark {
    background:
        radial-gradient(circle at 85% 20%, rgba(196,113,74,.35), transparent 28%),
        linear-gradient(145deg, var(--olive), var(--olive-dark));
    color: var(--cream);
}

.peazzy-cta-light {
    background: var(--white);
    color: var(--charcoal);
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
}

.peazzy-cta-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.peazzy-cta-content h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    margin: 18px 0 12px;
}

.peazzy-cta-dark h2 {
    color: var(--white);
}

.peazzy-cta-light h2 {
    color: var(--olive);
}

.peazzy-cta-content p {
    font-size: 18px;
    max-width: 640px;
    line-height: 1.6;
}

.peazzy-cta-dark p {
    color: var(--cream);
}

.peazzy-cta-light p {
    color: var(--grey-text);
}

.peazzy-cta-action {
    flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .peazzy-cta-block,
    .peazzy-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .peazzy-cta-block {
        padding: 40px;
    }
}

/* PRODUCT STRIP */
.peazzy-product-strip {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
}

.peazzy-products-wrap {
    margin-top: 30px;
}

/* WooCommerce grid override */
.peazzy-products-wrap .woocommerce ul.products,
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.peazzy-products-wrap .woocommerce ul.products::before,
.peazzy-products-wrap .woocommerce ul.products::after,
.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none;
}

.peazzy-products-wrap .woocommerce ul.products li.product,
.woocommerce ul.products li.product {
    width: auto !important;
    margin: 0 !important;
    float: none !important;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: .3s ease;
    padding-bottom: 20px;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.woocommerce ul.products li.product img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 0 0 16px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 18px;
    padding: 0 18px;
    color: var(--charcoal);
}

.woocommerce ul.products li.product .price {
    padding: 0 18px;
    color: var(--olive);
    font-weight: 800;
}

.woocommerce ul.products li.product .button {
    margin: 10px 18px 0;
    background: var(--olive);
    color: var(--cream);
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
    .peazzy-products-wrap .woocommerce ul.products,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .peazzy-products-wrap .woocommerce ul.products,
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
}

/* FAQ BLOCK */
.peazzy-faq-block {
    max-width: 980px;
    margin: 0 auto;
    padding: 80px 24px;
}

.peazzy-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.peazzy-faq-item {
    background: var(--white);
    border: 1px solid var(--grey-mid);
    border-radius: 20px;
    padding: 22px 26px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.peazzy-faq-item summary {
    cursor: pointer;
    font-weight: 800;
    color: var(--olive);
    font-size: 18px;
}

.peazzy-faq-item p {
    margin: 16px 0 0;
    color: var(--grey-text);
    line-height: 1.7;
}

/* STANDARD PAGE CONTENT */
.peazzy-page {
    background: var(--cream-light);
}

.peazzy-content-split {
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.peazzy-content-card {
    background: var(--white);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
}

.peazzy-content-card h2 {
    color: var(--olive);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    margin: 18px 0;
}

.peazzy-content-card p {
    color: var(--grey-text);
    font-size: 18px;
    line-height: 1.75;
}

.peazzy-image-panel {
    min-height: 460px;
    border-radius: 40px;
    background:
        radial-gradient(circle at 80% 20%, rgba(196,113,74,.32), transparent 30%),
        linear-gradient(145deg, var(--olive), var(--olive-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.peazzy-panel-bag {
    background: var(--cream);
    color: var(--olive);
    border-radius: 30px;
    width: 270px;
    min-height: 350px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0,0,0,.25);
}

.peazzy-panel-bag strong {
    font-size: 38px;
    font-weight: 900;
}

.peazzy-panel-bag span {
    color: var(--terracotta);
    font-weight: 800;
    font-size: 20px;
}

.peazzy-panel-bag small {
    letter-spacing: .16em;
    font-weight: 900;
}

.peazzy-values-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 90px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.peazzy-values-grid div {
    background: var(--white);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.peazzy-values-grid h3 {
    color: var(--olive);
    font-size: 24px;
    margin-bottom: 10px;
}

.peazzy-values-grid p {
    color: var(--grey-text);
    line-height: 1.65;
}

@media (max-width: 900px) {
    .peazzy-content-split,
    .peazzy-values-grid {
        grid-template-columns: 1fr;
    }

    .peazzy-content-card {
        padding: 34px;
    }
}

/* PROCESS SECTION */
.peazzy-process {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
}

.peazzy-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.peazzy-process-step {
    background: var(--white);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.peazzy-process-step strong {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--olive);
    color: var(--cream);
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 12px;
}

.peazzy-process-step h3 {
    color: var(--olive);
    font-size: 20px;
    margin-bottom: 10px;
}

.peazzy-process-step p {
    color: var(--grey-text);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .peazzy-process-grid {
        grid-template-columns: 1fr;
    }
}

/* VENDOR PORTAL PAGE */
.peazzy-portal-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px 90px;
}

/* CONTACT PAGE */
.peazzy-contact-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.peazzy-contact-info h2 {
    color: var(--olive);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    margin: 18px 0;
}

.peazzy-contact-info > p {
    color: var(--grey-text);
    font-size: 18px;
    line-height: 1.75;
}

.peazzy-contact-cards {
    display: grid;
    gap: 18px;
    margin-top: 32px;
}

.peazzy-contact-cards div {
    background: var(--white);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.peazzy-contact-cards h3 {
    color: var(--olive);
    margin-bottom: 8px;
}

.peazzy-contact-cards p {
    color: var(--grey-text);
    line-height: 1.6;
}

.peazzy-contact-form-card {
    background: var(--white);
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
}

.peazzy-contact-form-card h3 {
    color: var(--olive);
    font-size: 30px;
    margin-bottom: 10px;
}

.peazzy-contact-form-card p {
    color: var(--grey-text);
    line-height: 1.6;
}

.peazzy-form-placeholder {
    margin-top: 24px;
}

.peazzy-form-placeholder input,
.peazzy-form-placeholder textarea,
.peazzy-form-placeholder select {
    width: 100%;
    border: 1px solid var(--grey-mid);
    border-radius: 14px;
    padding: 13px 15px;
}

.peazzy-form-placeholder button,
.peazzy-form-placeholder input[type="submit"] {
    background: var(--olive);
    color: var(--cream);
    border: 0;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 900px) {
    .peazzy-contact-section {
        grid-template-columns: 1fr;
    }
}

/* WOOCOMMERCE SHOP ARCHIVE */
.peazzy-shop-page {
    background: var(--cream-light);
}

.peazzy-shop-hero {
    padding: 90px 24px 70px;
    background:
        radial-gradient(circle at 85% 20%, rgba(196,113,74,.22), transparent 28%),
        linear-gradient(135deg, var(--cream-light), var(--cream));
    text-align: center;
}

.peazzy-shop-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.peazzy-shop-hero h1 {
    color: var(--olive);
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    margin: 22px 0 14px;
    letter-spacing: -.045em;
}

.peazzy-shop-description {
    color: var(--grey-text);
    font-size: 19px;
    line-height: 1.7;
}

.peazzy-shop-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 24px 100px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 36px;
    align-items: start;
}

.peazzy-shop-sidebar {
    display: grid;
    gap: 20px;
    position: sticky;
    top: 105px;
}

.peazzy-shop-sidebar-card {
    background: var(--white);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.peazzy-shop-sidebar-card h3 {
    color: var(--olive);
    margin-top: 0;
    margin-bottom: 12px;
}

.peazzy-shop-sidebar-card p {
    color: var(--grey-text);
    line-height: 1.6;
}

.peazzy-sidebar-link {
    color: var(--terracotta);
    font-weight: 800;
    text-decoration: none;
}

.peazzy-widget {
    margin-bottom: 24px;
}

.peazzy-widget-title {
    color: var(--olive);
    margin-bottom: 12px;
}

.peazzy-shop-toolbar {
    background: var(--white);
    border-radius: 20px;
    padding: 18px 22px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.peazzy-shop-count,
.peazzy-shop-count p {
    margin: 0;
    color: var(--grey-text);
    font-weight: 600;
}

.peazzy-shop-sort select {
    border: 1px solid var(--grey-mid);
    border-radius: 999px;
    padding: 10px 16px;
    background: var(--white);
    color: var(--charcoal);
}

.peazzy-shop-pagination {
    margin-top: 44px;
    text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none;
    margin: 0 4px;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    border-radius: 999px;
    background: var(--white);
    color: var(--olive);
    padding: 10px 15px;
    min-width: 42px;
    font-weight: 800;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--olive);
    color: var(--cream);
}

@media (max-width: 1024px) {
    .peazzy-shop-layout {
        grid-template-columns: 1fr;
    }

    .peazzy-shop-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .peazzy-shop-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* PEAZZY PRODUCT CARD */
.peazzy-product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    transition: .3s ease;
    position: relative;
}

.peazzy-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

.peazzy-product-image {
    position: relative;
    display: block;
    background: var(--cream);
    overflow: hidden;
}

.peazzy-product-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 0;
    transition: .3s ease;
}

.peazzy-product-card:hover .peazzy-product-image img {
    transform: scale(1.04);
}

.peazzy-sale-badge,
.peazzy-bulk-badge {
    position: absolute;
    z-index: 3;
    top: 14px;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.peazzy-sale-badge {
    left: 14px;
    background: var(--terracotta);
    color: var(--white);
}

.peazzy-bulk-badge {
    right: 14px;
    background: var(--olive);
    color: var(--cream);
}

.peazzy-product-content {
    padding: 22px;
}

.peazzy-product-category {
    color: var(--terracotta);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 8px;
}

.peazzy-product-title {
    font-size: 19px;
    margin: 0 0 10px;
    line-height: 1.25;
}

.peazzy-product-title a {
    color: var(--charcoal);
    text-decoration: none;
}

.peazzy-product-title a:hover {
    color: var(--olive);
}

.peazzy-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.peazzy-product-meta span {
    background: var(--cream-light);
    color: var(--grey-text);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
}

.peazzy-product-price {
    color: var(--olive);
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 14px;
}

.peazzy-product-price del {
    color: var(--grey-text);
    opacity: .7;
    margin-right: 6px;
}

.peazzy-product-price ins {
    text-decoration: none;
    color: var(--terracotta);
}

.peazzy-product-action .button,
.woocommerce ul.products li.product .button {
    background: var(--olive);
    color: var(--cream);
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .04em;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.peazzy-product-action .button:hover,
.woocommerce ul.products li.product .button:hover {
    background: var(--olive-dark);
    color: var(--cream);
}

/* SINGLE PRODUCT */
.peazzy-single-product {
    background: var(--cream-light);
}

.peazzy-product-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.peazzy-product-summary h1 {
    font-size: clamp(32px, 4vw, 54px);
    color: var(--olive);
    margin: 16px 0;
}

.peazzy-product-summary .price {
    font-size: 24px;
    font-weight: 900;
    color: var(--olive);
}

.peazzy-product-meta {
    margin: 14px 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.peazzy-product-meta span {
    background: var(--cream);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
}

.peazzy-meta-bulk {
    background: var(--olive);
    color: var(--cream);
}

.peazzy-product-excerpt {
    color: var(--grey-text);
    margin: 20px 0;
    line-height: 1.7;
}

.peazzy-add-to-cart {
    margin: 20px 0;
}

.peazzy-add-to-cart .single_add_to_cart_button {
    background: var(--olive);
    color: var(--cream);
    border-radius: 999px;
    padding: 14px 28px;
    font-weight: 900;
}

.peazzy-bulk-box {
    margin-top: 30px;
    padding: 20px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.peazzy-product-trust {
    margin-top: 24px;
    display: grid;
    gap: 6px;
    font-size: 14px;
    color: var(--grey-text);
}

.peazzy-product-tabs {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px;
}

.peazzy-related-products {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px 100px;
}

@media (max-width: 900px) {
    .peazzy-product-wrap {
        grid-template-columns: 1fr;
    }
}

/* CART PAGE */
.peazzy-cart-page {
    background: var(--cream-light);
}

.peazzy-cart-hero {
    text-align: center;
    padding: 90px 24px 60px;
    background:
        radial-gradient(circle at 85% 20%, rgba(196,113,74,.22), transparent 28%),
        linear-gradient(135deg, var(--cream-light), var(--cream));
}

.peazzy-cart-hero h1 {
    color: var(--olive);
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    margin: 18px 0 12px;
    letter-spacing: -.04em;
}

.peazzy-cart-hero p {
    color: var(--grey-text);
    font-size: 18px;
}

.peazzy-cart-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 24px 100px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 36px;
    align-items: start;
}

.peazzy-cart-card,
.peazzy-cart-summary-card,
.peazzy-cart-support-card {
    background: var(--white);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 4px 18px rgba(0,0,0,.07);
}

.peazzy-cart-table {
    border-collapse: collapse;
    width: 100%;
}

.peazzy-cart-table th {
    color: var(--olive);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: 12px;
    padding: 14px;
    border-bottom: 1px solid var(--grey-mid);
}

.peazzy-cart-table td {
    padding: 18px 14px;
    border-bottom: 1px solid var(--grey-mid);
    vertical-align: middle;
}

.peazzy-cart-table .product-thumbnail img {
    width: 76px;
    border-radius: 14px;
}

.peazzy-cart-table .product-name a {
    color: var(--charcoal);
    font-weight: 800;
    text-decoration: none;
}

.peazzy-cart-table .product-name a:hover {
    color: var(--olive);
}

.peazzy-cart-table .product-price,
.peazzy-cart-table .product-subtotal {
    color: var(--olive);
    font-weight: 900;
}

.peazzy-remove {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--terracotta) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
}

.peazzy-cart-table input.qty {
    border: 1px solid var(--grey-mid);
    border-radius: 999px;
    padding: 8px 10px;
    width: 76px;
    text-align: center;
}

.peazzy-cart-table .actions {
    text-align: right;
    border-bottom: none;
}

.peazzy-coupon {
    float: left;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.peazzy-coupon input {
    border: 1px solid var(--grey-mid);
    border-radius: 999px;
    padding: 12px 16px;
}

.peazzy-cart-summary {
    display: grid;
    gap: 20px;
    position: sticky;
    top: 105px;
}

.peazzy-cart-summary-card h2,
.peazzy-cart-support-card h3 {
    color: var(--olive);
    margin-top: 0;
}

.peazzy-cart-support-card p {
    color: var(--grey-text);
    line-height: 1.6;
}

.peazzy-cart-support-card a {
    color: var(--terracotta);
    font-weight: 900;
    text-decoration: none;
}

.peazzy-cart-summary .cart_totals {
    width: 100% !important;
    float: none !important;
}

.peazzy-cart-summary .cart_totals h2 {
    display: none;
}

.peazzy-cart-summary .shop_table {
    border: none;
}

.peazzy-cart-summary .shop_table th,
.peazzy-cart-summary .shop_table td {
    border-bottom: 1px solid var(--grey-mid);
    padding: 14px 0;
}

.peazzy-cart-summary .wc-proceed-to-checkout a.checkout-button {
    background: var(--olive);
    color: var(--cream);
    border-radius: 999px;
    font-weight: 900;
    padding: 16px 24px;
    text-transform: uppercase;
    font-size: 14px;
}

.peazzy-cart-summary .wc-proceed-to-checkout a.checkout-button:hover {
    background: var(--olive-dark);
    color: var(--cream);
}

@media (max-width: 1024px) {
    .peazzy-cart-layout {
        grid-template-columns: 1fr;
    }

    .peazzy-cart-summary {
        position: static;
    }
}

@media (max-width: 760px) {
    .peazzy-cart-card {
        padding: 18px;
        overflow-x: auto;
    }

    .peazzy-coupon {
        float: none;
        margin-bottom: 16px;
    }

    .peazzy-cart-table .actions {
        text-align: left;
    }
}

/* CHECKOUT PAGE */
.peazzy-checkout-page {
    background: var(--cream-light);
}

.peazzy-checkout-hero {
    text-align: center;
    padding: 90px 24px 60px;
    background:
        radial-gradient(circle at 85% 20%, rgba(196,113,74,.22), transparent 28%),
        linear-gradient(135deg, var(--cream-light), var(--cream));
}

.peazzy-checkout-hero h1 {
    color: var(--olive);
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    margin: 18px 0 12px;
    letter-spacing: -.04em;
}

.peazzy-checkout-hero p {
    color: var(--grey-text);
    font-size: 18px;
}

.peazzy-checkout-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 24px 100px;
}

.peazzy-checkout-form {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 36px;
    align-items: start;
}

.peazzy-checkout-card,
.peazzy-checkout-summary-card,
.peazzy-checkout-support-card {
    background: var(--white);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 4px 18px rgba(0,0,0,.07);
}

.peazzy-checkout-section {
    margin-bottom: 38px;
}

.peazzy-checkout-section:last-child {
    margin-bottom: 0;
}

.peazzy-checkout-section h2,
.peazzy-checkout-summary-card h2,
.peazzy-checkout-support-card h3 {
    color: var(--olive);
    margin-top: 0;
    margin-bottom: 20px;
}

.peazzy-checkout-summary {
    display: grid;
    gap: 20px;
    position: sticky;
    top: 105px;
}

.peazzy-checkout-support-card p {
    color: var(--grey-text);
    line-height: 1.6;
}

/* Form Fields */
.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.woocommerce-checkout .select2-selection {
    border: 1px solid var(--grey-mid) !important;
    border-radius: 14px !important;
    padding: 12px 14px !important;
    background: var(--white);
    min-height: 46px;
}

.woocommerce-checkout .select2-selection__rendered {
    line-height: 22px !important;
}

.woocommerce-checkout label {
    color: var(--charcoal);
    font-weight: 700;
    margin-bottom: 6px;
}

.woocommerce form .form-row {
    margin-bottom: 18px;
}

/* Order Review */
.woocommerce-checkout-review-order-table {
    border: none !important;
    width: 100%;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    border-bottom: 1px solid var(--grey-mid) !important;
    padding: 14px 0 !important;
}

.woocommerce-checkout-review-order-table th {
    color: var(--olive);
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
    font-size: 18px;
    font-weight: 900;
    color: var(--olive);
}

.woocommerce-checkout-payment {
    background: var(--cream-light) !important;
    border-radius: 22px !important;
    padding: 20px !important;
}

.woocommerce-checkout-payment ul.payment_methods {
    border-bottom: 1px solid var(--grey-mid) !important;
}

.woocommerce-checkout-payment .place-order {
    padding-bottom: 0 !important;
}

.woocommerce-checkout-payment #place_order {
    background: var(--olive);
    color: var(--cream);
    border-radius: 999px;
    padding: 16px 26px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
    width: 100%;
}

.woocommerce-checkout-payment #place_order:hover {
    background: var(--olive-dark);
    color: var(--cream);
}

/* Notices */
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    border-top-color: var(--terracotta);
    border-radius: 16px;
    background: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
    .peazzy-checkout-form {
        grid-template-columns: 1fr;
    }

    .peazzy-checkout-summary {
        position: static;
    }
}

@media (max-width: 640px) {
    .peazzy-checkout-card,
    .peazzy-checkout-summary-card,
    .peazzy-checkout-support-card {
        padding: 22px;
    }
}

/* MY ACCOUNT DASHBOARD */
.peazzy-account-dashboard {
    display: grid;
    gap: 32px;
}

.peazzy-account-welcome {
    background:
        radial-gradient(circle at 85% 20%, rgba(196,113,74,.30), transparent 28%),
        linear-gradient(145deg, var(--olive), var(--olive-dark));
    color: var(--cream);
    border-radius: 32px;
    padding: 42px;
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: center;
}

.peazzy-account-welcome h2 {
    color: var(--white);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    margin: 18px 0 12px;
}

.peazzy-account-welcome p {
    color: var(--cream);
    font-size: 17px;
    line-height: 1.65;
    max-width: 720px;
}

.peazzy-account-status-grid,
.peazzy-account-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.peazzy-account-actions-grid {
    grid-template-columns: repeat(4, 1fr);
}

.peazzy-account-card,
.peazzy-account-action,
.peazzy-account-orders,
.peazzy-account-vendor-panel,
.peazzy-account-empty {
    background: var(--white);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 4px 18px rgba(0,0,0,.06);
}

.peazzy-account-card h3,
.peazzy-account-action h3,
.peazzy-account-orders h3,
.peazzy-account-vendor-panel h3,
.peazzy-account-empty h4 {
    color: var(--olive);
    margin-top: 0;
}

.peazzy-account-card strong {
    display: block;
    font-size: 32px;
    color: var(--terracotta);
    margin: 10px 0;
}

.peazzy-account-card p,
.peazzy-account-action p,
.peazzy-account-vendor-panel p,
.peazzy-account-empty p {
    color: var(--grey-text);
    line-height: 1.6;
}

.peazzy-account-vendor-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.peazzy-account-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.peazzy-account-section-header a {
    color: var(--terracotta);
    font-weight: 900;
    text-decoration: none;
}

.peazzy-account-order-list {
    display: grid;
    gap: 14px;
}

.peazzy-account-order-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr auto;
    gap: 18px;
    align-items: center;
    background: var(--cream-light);
    border-radius: 18px;
    padding: 18px;
}

.peazzy-account-order-card h4 {
    color: var(--charcoal);
    margin: 0 0 4px;
}

.peazzy-account-order-card p,
.peazzy-account-order-card small {
    display: block;
    color: var(--grey-text);
}

.peazzy-order-status {
    display: inline-flex;
    background: var(--cream);
    color: var(--olive);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.peazzy-order-link {
    color: var(--terracotta);
    font-weight: 900;
    text-decoration: none;
}

.peazzy-account-action {
    text-decoration: none;
    transition: .25s ease;
}

.peazzy-account-action:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,.10);
}

@media (max-width: 1024px) {
    .peazzy-account-welcome,
    .peazzy-account-vendor-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .peazzy-account-status-grid,
    .peazzy-account-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .peazzy-account-order-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .peazzy-account-status-grid,
    .peazzy-account-actions-grid {
        grid-template-columns: 1fr;
    }

    .peazzy-account-welcome {
        padding: 30px;
    }
}

/* MY ACCOUNT WRAPPER */
.peazzy-myaccount-page {
    background: var(--cream-light);
}

.peazzy-myaccount-hero {
    text-align: center;
    padding: 90px 24px 60px;
    background:
        radial-gradient(circle at 85% 20%, rgba(196,113,74,.22), transparent 28%),
        linear-gradient(135deg, var(--cream-light), var(--cream));
}

.peazzy-myaccount-hero h1 {
    color: var(--olive);
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    margin: 18px 0 12px;
    letter-spacing: -.04em;
}

.peazzy-myaccount-hero p {
    color: var(--grey-text);
    font-size: 18px;
    max-width: 760px;
    margin: 0 auto;
}

.peazzy-myaccount-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 24px 100px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px;
    align-items: start;
}

.peazzy-myaccount-nav {
    background: var(--white);
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 4px 18px rgba(0,0,0,.07);
    position: sticky;
    top: 105px;
}

.peazzy-myaccount-nav .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.peazzy-myaccount-nav .woocommerce-MyAccount-navigation li {
    margin-bottom: 8px;
}

.peazzy-myaccount-nav .woocommerce-MyAccount-navigation a {
    display: block;
    padding: 13px 16px;
    border-radius: 999px;
    color: var(--olive);
    text-decoration: none;
    font-weight: 800;
}

.peazzy-myaccount-nav .woocommerce-MyAccount-navigation li.is-active a,
.peazzy-myaccount-nav .woocommerce-MyAccount-navigation a:hover {
    background: var(--olive);
    color: var(--cream);
}

.peazzy-myaccount-content {
    background: transparent;
}

.peazzy-myaccount-content .woocommerce-MyAccount-content {
    float: none;
    width: 100%;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    float: none;
    width: 100%;
}

@media (max-width: 1024px) {
    .peazzy-myaccount-layout {
        grid-template-columns: 1fr;
    }

    .peazzy-myaccount-nav {
        position: static;
    }
}

/* ACCOUNT ORDERS PAGE */
.peazzy-account-orders-page {
    display: grid;
    gap: 24px;
}

.peazzy-order-actions {
    display: flex;
    gap: 10px;
}

.peazzy-order-actions a {
    color: var(--terracotta);
    font-weight: 900;
    text-decoration: none;
    font-size: 14px;
}

.peazzy-order-actions a:hover {
    text-decoration: underline;
}

/* JS ENHANCEMENTS */
.peazzy-header.scrolled {
    box-shadow: 0 8px 28px rgba(0,0,0,.08);
}

body.peazzy-menu-open {
    overflow: hidden;
}

.peazzy-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.peazzy-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.peazzy-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.peazzy-menu-toggle span {
    transition: .25s ease;
}

.peazzy-loading {
    opacity: .75;
    pointer-events: none;
}

.peazzy-cart-pulse {
    animation: peazzyCartPulse .7s ease;
}

@keyframes peazzyCartPulse {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.peazzy-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    background: var(--olive);
    color: var(--cream);
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 12px 40px rgba(0,0,0,.18);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: .25s ease;
}

.peazzy-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.peazzy-faq-item.active {
    border-color: var(--terracotta);
}

.peazzy-payment-active {
    background: rgba(61,74,53,.08) !important;
    border-radius: 14px;
}

.peazzy-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: .6s ease;
}

.peazzy-visible {
    opacity: 1;
    transform: translateY(0);
}