/* ═══════════════════════════════════════════════════════════
   Ponni Pages — Frontend Styles v2
   Pixel-accurate WooCommerce translation of React source
   (Cart.tsx, Checkout.tsx, Collections.tsx, ProductDetail.tsx)
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   1. COLLECTIONS / SHOP PAGE
   (Source: Collections.tsx)
   ═══════════════════════════════════════════ */

/* Hero – gradient bg with radial gold glow */
.pp-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, hsl(var(--pearl)), hsl(var(--muted)));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pp-hero__glow {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background: radial-gradient(circle at 50% 50%, hsl(45, 100%, 50%) 0%, transparent 60%);
    pointer-events: none;
}

.pp-hero__label {
    color: hsl(var(--gold));
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.pp-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    line-height: 1.1;
}

.pp-hero__desc {
    color: hsl(var(--muted-foreground));
    max-width: 28rem;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
}

/* Sticky filter bar */
.pp-filter-bar {
    position: sticky;
    top: 5rem;
    z-index: 40;
    background: hsl(var(--background) / 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid hsl(var(--border));
}

.pp-filter-bar__inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.pp-filter-pills {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pp-pill {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--muted));
    color: hsl(var(--foreground));
}

.pp-pill:hover {
    background: hsl(var(--gold) / 0.1);
    color: hsl(var(--gold));
}

.pp-pill--active {
    background: linear-gradient(to right, hsl(var(--gold)), hsl(var(--gold-light)));
    color: hsl(var(--primary-foreground));
    border-color: transparent;
    box-shadow: 0 3px 15px rgba(255, 193, 7, 0.4);
}

.pp-pill--active:hover {
    background: linear-gradient(to right, hsl(var(--gold)), hsl(var(--gold-light)));
    color: hsl(var(--primary-foreground));
}

.pp-filter-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pp-filter-right select {
    font-size: 0.75rem;
    font-weight: 700;
    background: transparent;
    border: 1px solid hsl(var(--border));
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: hsl(var(--foreground));
}

.pp-filter-right select:focus {
    outline: none;
    border-color: hsl(var(--gold));
}

.pp-filter-count {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

/* Product grid */
.pp-products-section {
    padding: 3.5rem 0;
}

.pp-products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .pp-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pp-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .pp-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ═══════════════════════════════════════════
   2. SINGLE PRODUCT PAGE
   (Source: ProductDetail.tsx)
   ═══════════════════════════════════════════ */

/* Breadcrumb */
.pp-breadcrumb {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

.pp-breadcrumb a {
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    transition: color 0.2s;
}

.pp-breadcrumb a:hover {
    color: hsl(var(--gold));
}

.pp-breadcrumb__sep {
    color: hsl(var(--muted-foreground));
}

.pp-breadcrumb__current {
    color: hsl(var(--foreground));
    font-weight: 500;
}

/* Product detail section */
.pp-product {
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.pp-product__grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .pp-product__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Gallery — rounded-3xl aspect-square */
.pp-gallery {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: linear-gradient(135deg, hsl(var(--pearl)), hsl(var(--muted)));
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid hsl(var(--border));
}

.pp-gallery:hover .pp-gallery__emoji {
    transform: scale(1.1);
    opacity: 0.5;
}

.pp-gallery__emoji {
    font-size: 10rem;
    opacity: 0.2;
    transition: all 0.5s;
}

.pp-gallery__main-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.pp-gallery:hover .pp-gallery__main-img {
    transform: scale(1.1);
}

.pp-gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--foreground) / 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.pp-gallery:hover .pp-gallery__overlay {
    opacity: 1;
}

/* Badge & discount overlays */
.pp-gallery__badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: linear-gradient(to right, hsl(var(--gold)), hsl(var(--gold-light)));
    color: hsl(var(--primary-foreground));
    font-size: 0.6875rem;
    font-weight: 900;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pp-gallery__discount {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    background: hsl(var(--charcoal) / 0.9);
    color: hsl(var(--gold));
    font-size: 0.875rem;
    font-weight: 900;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
}

.pp-gallery__wishlist {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    background: hsl(var(--background) / 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pp-gallery__wishlist:hover {
    transform: scale(1.1);
}

.pp-gallery__wishlist svg {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--muted-foreground));
}

/* Thumbnail row */
.pp-thumbs {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.pp-thumb {
    flex: 1;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, hsl(var(--pearl)), hsl(var(--muted)));
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid hsl(var(--border));
    cursor: pointer;
    transition: border-color 0.2s;
    overflow: hidden;
}

.pp-thumb:hover,
.pp-thumb--active {
    border-color: hsl(var(--gold));
}

.pp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pp-thumb__emoji {
    font-size: 1.875rem;
    opacity: 0.2;
}

/* Info section */
.pp-info__category {
    color: hsl(var(--gold));
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.pp-info__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 900;
    color: hsl(var(--foreground));
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

/* Rating */
.pp-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pp-rating__stars {
    display: flex;
    gap: 0.125rem;
}

.pp-rating__stars svg {
    width: 1rem;
    height: 1rem;
}

.pp-rating__stars .filled {
    fill: hsl(var(--gold));
    color: hsl(var(--gold));
}

.pp-rating__stars .empty {
    color: hsl(var(--border));
}

.pp-rating__score {
    font-size: 0.875rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.pp-rating__count {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* Price */
.pp-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.pp-price__current {
    font-size: 2.25rem;
    font-weight: 900;
    color: hsl(var(--foreground));
    font-family: 'Inter', sans-serif;
}

.pp-price__original {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    text-decoration: line-through;
}

.pp-price__save {
    background: hsl(var(--gold) / 0.15);
    color: hsl(var(--gold));
    font-size: 0.875rem;
    font-weight: 900;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid hsl(var(--gold) / 0.3);
}

/* Short description */
.pp-desc {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Color selector — pill buttons */
.pp-selector {
    margin-bottom: 1.25rem;
}

.pp-selector__label {
    font-size: 0.75rem;
    font-weight: 900;
    color: hsl(var(--foreground));
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.pp-selector__label span {
    color: hsl(var(--gold));
}

.pp-selector__options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pp-color-pill {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid hsl(var(--border));
    color: hsl(var(--foreground));
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.pp-color-pill:hover {
    border-color: hsl(var(--gold) / 0.5);
}

.pp-color-pill--active {
    border-color: hsl(var(--gold));
    background: hsl(var(--gold) / 0.1);
    color: hsl(var(--gold));
}

/* Size selector — square buttons */
.pp-size-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 900;
    border: 2px solid hsl(var(--border));
    color: hsl(var(--foreground));
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pp-size-btn:hover {
    border-color: hsl(var(--gold) / 0.5);
    color: hsl(var(--gold));
}

.pp-size-btn--active {
    border-color: hsl(var(--gold));
    background: hsl(var(--gold));
    color: hsl(var(--primary-foreground));
    box-shadow: 0 3px 15px rgba(255, 193, 7, 0.4);
}

/* Quantity stepper — round pill */
.pp-qty {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid hsl(var(--border));
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
}

.pp-qty__btn {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: hsl(var(--foreground));
    transition: color 0.2s;
    background: none;
    border: none;
    font-size: 0;
}

.pp-qty__btn:hover {
    color: hsl(var(--gold));
}

.pp-qty__btn svg {
    width: 0.875rem;
    height: 0.875rem;
}

.pp-qty__val {
    font-weight: 900;
    font-size: 1rem;
    width: 1.5rem;
    text-align: center;
    color: hsl(var(--foreground));
    border: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
}

.pp-qty__total {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    margin-left: 0.5rem;
}

.pp-qty__total strong {
    color: hsl(var(--foreground));
    font-size: 1rem;
    font-weight: 900;
}

/* Actions row — Add to Cart + Wishlist */
.pp-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.pp-add-to-cart {
    flex: 1;
    padding: 1rem;
    border-radius: 9999px;
    font-weight: 900;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    background: linear-gradient(to right, hsl(var(--gold)), hsl(var(--gold-light)));
    color: hsl(var(--primary-foreground));
    border: none;
}

.pp-add-to-cart:hover {
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.45);
    transform: scale(1.02);
}

.pp-add-to-cart svg {
    width: 1rem;
    height: 1rem;
}

.pp-wishlist-btn {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    border: 2px solid hsl(var(--border));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
    flex-shrink: 0;
}

.pp-wishlist-btn:hover {
    border-color: hsl(var(--gold));
    transform: scale(1.1);
}

.pp-wishlist-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--muted-foreground));
}

/* Trust badges — grid-cols-3 cards */
.pp-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

@media (max-width: 640px) {
    .pp-trust-badges {
        grid-template-columns: 1fr;
    }
}

.pp-trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    background: hsl(var(--muted) / 0.5);
    border-radius: 0.75rem;
    padding: 0.75rem 0.5rem;
    text-align: center;
    border: 1px solid hsl(var(--border));
}

.pp-trust-badge__icon {
    color: hsl(var(--gold));
}

.pp-trust-badge__icon svg {
    width: 1rem;
    height: 1rem;
}

.pp-trust-badge__text {
    font-size: 0.625rem;
    font-weight: 700;
    color: hsl(var(--muted-foreground));
}

/* Tabs — gold underline */
.pp-tabs {
    max-width: 80rem;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.pp-tabs__nav {
    display: flex;
    gap: 1.5rem;
    border-bottom: 1px solid hsl(var(--border));
    margin-bottom: 2rem;
}

.pp-tabs__btn {
    padding-bottom: 0.75rem;
    font-size: 0.875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: hsl(var(--muted-foreground));
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.pp-tabs__btn:hover {
    color: hsl(var(--foreground));
}

.pp-tabs__btn--active {
    color: hsl(var(--gold));
    border-bottom-color: hsl(var(--gold));
}

.pp-tabs__panel {
    display: none;
}

.pp-tabs__panel--active {
    display: block;
}

/* Tab content cards */
.pp-detail-card {
    background: hsl(var(--muted) / 0.4);
    border-radius: 1rem;
    padding: 1.25rem;
    border: 1px solid hsl(var(--border));
}

.pp-detail-card__title {
    font-weight: 900;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: hsl(var(--gold));
    margin-bottom: 0.75rem;
}

.pp-detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pp-detail-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    padding: 0.25rem 0;
}

.pp-detail-card li::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: hsl(var(--gold));
    flex-shrink: 0;
}

/* Review card */
.pp-review {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 1.25rem;
    transition: border-color 0.2s;
}

.pp-review:hover {
    border-color: hsl(var(--gold) / 0.3);
}

.pp-review__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.pp-review__name {
    font-weight: 900;
    font-size: 0.875rem;
    color: hsl(var(--foreground));
}

.pp-review__date {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

.pp-review__text {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    font-style: italic;
}

/* Related products */
.pp-related {
    padding: 3rem 0;
    background: hsl(var(--muted) / 0.3);
}

.pp-related__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: hsl(var(--foreground));
    text-align: center;
    margin-bottom: 2rem;
}

.pp-related__grid {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .pp-related__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ═══════════════════════════════════════════
   3. CART PAGE
   (Source: Cart.tsx)
   ═══════════════════════════════════════════ */
.pp-cart {
    max-width: 80rem;
    margin: 0 auto;
    padding: 2.5rem 1rem;
}

.pp-cart__header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 900;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.pp-cart__header p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
}

.pp-cart__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .pp-cart__grid {
        grid-template-columns: 2fr 1fr;
    }
}

.pp-cart__items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Cart item card */
.pp-cart-item {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    gap: 1.25rem;
    transition: border-color 0.3s;
}

.pp-cart-item:hover {
    border-color: hsl(var(--gold) / 0.3);
}

.pp-cart-item__img {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, hsl(var(--pearl)), hsl(var(--muted)));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid hsl(var(--border));
    overflow: hidden;
    transition: border-color 0.2s;
}

.pp-cart-item__img:hover {
    border-color: hsl(var(--gold) / 0.5);
}

.pp-cart-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pp-cart-item__img .emoji {
    font-size: 2.5rem;
    opacity: 0.3;
    transition: opacity 0.2s;
}

.pp-cart-item:hover .pp-cart-item__img .emoji {
    opacity: 0.5;
}

.pp-cart-item__body {
    flex: 1;
    min-width: 0;
}

.pp-cart-item__top {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
}

.pp-cart-item__category {
    font-size: 0.625rem;
    color: hsl(var(--gold));
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.pp-cart-item__name {
    font-weight: 900;
    color: hsl(var(--foreground));
    font-size: 1rem;
    line-height: 1.3;
    margin-top: 0.125rem;
}

.pp-cart-item__meta {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    margin-top: 0.25rem;
}

.pp-cart-item__meta strong {
    color: hsl(var(--foreground));
    font-weight: 700;
}

.pp-cart-item__remove {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--muted-foreground));
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.pp-cart-item__remove:hover {
    background: hsl(var(--destructive) / 0.1);
    color: hsl(var(--destructive));
}

.pp-cart-item__remove svg {
    width: 0.875rem;
    height: 0.875rem;
}

/* Bottom row: qty stepper + price */
.pp-cart-item__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

/* Cart qty stepper — round pill */
.pp-cart-qty {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid hsl(var(--border));
    border-radius: 9999px;
    padding: 0.375rem 0.75rem;
}

.pp-cart-qty__btn {
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--foreground));
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.pp-cart-qty__btn:hover {
    color: hsl(var(--gold));
}

.pp-cart-qty__btn svg {
    width: 0.75rem;
    height: 0.75rem;
}

.pp-cart-qty__val {
    font-size: 0.875rem;
    font-weight: 900;
    width: 1.25rem;
    text-align: center;
    color: hsl(var(--foreground));
    border: none;
    background: transparent;
}

.pp-cart-item__price {
    text-align: right;
}

.pp-cart-item__price-main {
    font-weight: 900;
    color: hsl(var(--foreground));
    font-size: 1rem;
}

.pp-cart-item__price-each {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

/* Item removing animation */
.pp-cart-item--removing {
    opacity: 0;
    transform: translateX(-30px);
    max-height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Sidebar */
.pp-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Coupon box */
.pp-coupon-box {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 1.25rem;
}

.pp-coupon-box__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.pp-coupon-box__header svg {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--gold));
}

.pp-coupon-box__header span {
    font-weight: 900;
    font-size: 0.875rem;
    color: hsl(var(--foreground));
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pp-coupon-box__row {
    display: flex;
    gap: 0.5rem;
}

.pp-coupon-box__input {
    flex: 1;
    border: 1px solid hsl(var(--border));
    border-radius: 0.75rem;
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    transition: all 0.2s;
}

.pp-coupon-box__input::placeholder {
    color: hsl(var(--muted-foreground));
}

.pp-coupon-box__input:focus {
    outline: none;
    border-color: hsl(var(--gold));
    box-shadow: 0 0 0 2px hsl(var(--gold) / 0.2);
}

.pp-coupon-box__apply {
    background: hsl(var(--charcoal));
    color: hsl(var(--secondary-foreground));
    padding: 0.625rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    font-weight: 900;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.pp-coupon-box__apply:hover {
    background: hsl(var(--smoke));
}

.pp-coupon-box__hint {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    margin-top: 0.5rem;
}

.pp-coupon-box__hint button {
    color: hsl(var(--gold));
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.pp-coupon-box__hint button:hover {
    text-decoration: underline;
}

.pp-coupon-box__msg {
    font-size: 0.75rem;
    font-weight: 600;
    color: hsl(130, 60%, 35%);
    margin-top: 0.5rem;
}

/* Order Summary card */
.pp-summary {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 1.25rem;
    position: sticky;
    top: 6rem;
}

.pp-summary__title {
    font-weight: 900;
    font-size: 1rem;
    color: hsl(var(--foreground));
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.pp-summary__rows {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.pp-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: hsl(var(--muted-foreground));
}

.pp-summary__row strong {
    color: hsl(var(--foreground));
    font-weight: 700;
}

.pp-summary__row--green {
    color: hsl(130, 60%, 35%);
}

.pp-summary__row--green strong {
    color: hsl(130, 60%, 35%);
}

.pp-summary__free-ship {
    font-size: 0.625rem;
    color: hsl(var(--muted-foreground));
    margin-top: -0.25rem;
}

.pp-summary__row--total {
    border-top: 1px solid hsl(var(--border));
    padding-top: 0.75rem;
    font-weight: 900;
    font-size: 1.125rem;
    color: hsl(var(--foreground));
}

.pp-summary__row--total strong {
    color: hsl(var(--foreground));
    font-weight: 900;
}

.pp-summary__row .pp-ship-icon {
    width: 0.875rem;
    height: 0.875rem;
    color: hsl(var(--gold));
    margin-right: 0.25rem;
}

/* CTA button — gold gradient pill */
.pp-btn-gold {
    display: flex;
    width: 100%;
    padding: 1rem;
    margin-top: 1.25rem;
    background: linear-gradient(to right, hsl(var(--gold)), hsl(var(--gold-light)));
    color: hsl(var(--primary-foreground));
    border: none;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pp-btn-gold:hover {
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.45);
    transform: scale(1.02);
}

.pp-btn-gold svg {
    width: 1rem;
    height: 1rem;
}

/* Outline button */
.pp-btn-outline {
    display: inline-flex;
    padding: 1rem 2rem;
    border: 2px solid hsl(var(--border));
    border-radius: 9999px;
    font-weight: 900;
    font-size: 0.875rem;
    color: hsl(var(--foreground));
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    align-items: center;
    justify-content: center;
}

.pp-btn-outline:hover {
    border-color: hsl(var(--gold));
    color: hsl(var(--gold));
}

.pp-continue-link {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    text-align: center;
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    transition: color 0.2s;
}

.pp-continue-link:hover {
    color: hsl(var(--gold));
}

/* Empty cart */
.pp-empty {
    max-width: 32rem;
    margin: 6rem auto;
    text-align: center;
    padding: 0 1rem;
}

.pp-empty__icon {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.pp-empty__icon svg {
    width: 6rem;
    height: 6rem;
    color: hsl(var(--muted-foreground) / 0.3);
    margin: 0 auto 1.5rem;
}

.pp-empty__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 900;
    color: hsl(var(--foreground));
    margin-bottom: 0.75rem;
}

.pp-empty__text {
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════
   4. CHECKOUT PAGE
   (Source: Checkout.tsx)
   ═══════════════════════════════════════════ */
.pp-checkout {
    max-width: 75rem;
    margin: 0 auto;
    padding: 2.5rem 1rem;
}

.pp-checkout__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 900;
    color: hsl(var(--foreground));
    margin-bottom: 2rem;
}

/* Step indicator */
.pp-steps {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.pp-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pp-step__circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    transition: all 0.3s;
    background: hsl(var(--muted));
    color: hsl(var(--muted-foreground));
    border: 1px solid hsl(var(--border));
}

.pp-step--active .pp-step__circle,
.pp-step--done .pp-step__circle {
    background: linear-gradient(to right, hsl(var(--gold)), hsl(var(--gold-light)));
    color: hsl(var(--primary-foreground));
    border-color: transparent;
    box-shadow: 0 3px 12px rgba(255, 193, 7, 0.4);
}

.pp-step__label {
    font-size: 0.875rem;
    font-weight: 900;
    color: hsl(var(--muted-foreground));
}

.pp-step--active .pp-step__label {
    color: hsl(var(--gold));
}

.pp-step--done .pp-step__label {
    color: hsl(var(--gold));
}

.pp-step__line {
    width: 3rem;
    height: 1px;
    background: hsl(var(--border));
    margin: 0 0.25rem;
}

/* Checkout grid */
.pp-checkout__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .pp-checkout__grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* Checkout form card */
.pp-form-card {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 1.5rem;
}

.pp-form-card__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.pp-form-card__header svg {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--gold));
}

.pp-form-card__header h2 {
    font-weight: 900;
    font-size: 1rem;
    color: hsl(var(--foreground));
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Form fields — grid layout */
.pp-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .pp-fields {
        grid-template-columns: 1fr 1fr;
    }
}

.pp-field--full {
    grid-column: 1 / -1;
}

.pp-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 900;
    color: hsl(var(--muted-foreground));
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.375rem;
}

.pp-field input,
.pp-field textarea,
.pp-field select {
    width: 100%;
    border: 1px solid hsl(var(--border));
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    transition: all 0.2s;
}

.pp-field input::placeholder,
.pp-field textarea::placeholder {
    color: hsl(var(--muted-foreground));
}

.pp-field input:focus,
.pp-field textarea:focus,
.pp-field select:focus {
    outline: none;
    border-color: hsl(var(--gold));
    box-shadow: 0 0 0 2px hsl(var(--gold) / 0.2);
}

/* Payment method radio cards — with emoji icons */
.pp-payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.pp-payment-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 2px solid hsl(var(--border));
    cursor: pointer;
    transition: all 0.3s;
}

.pp-payment-card:hover,
.pp-payment-card--active {
    border-color: hsl(var(--gold));
    background: hsl(var(--gold) / 0.05);
}

.pp-payment-card__radio {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid hsl(var(--border));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s;
}

.pp-payment-card--active .pp-payment-card__radio {
    border-color: hsl(var(--gold));
}

.pp-payment-card--active .pp-payment-card__radio::after {
    content: '';
    width: 0.625rem;
    height: 0.625rem;
    background: hsl(var(--gold));
    border-radius: 50%;
}

.pp-payment-card__emoji {
    font-size: 1.5rem;
}

.pp-payment-card__label {
    font-weight: 900;
    font-size: 0.875rem;
    color: hsl(var(--foreground));
}

.pp-payment-card__desc {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

/* Checkout sidebar order summary — with item thumbnails */
.pp-checkout-summary {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 1.25rem;
    position: sticky;
    top: 6rem;
    height: fit-content;
}

.pp-checkout-summary__title {
    font-weight: 900;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.pp-checkout-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 13rem;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.pp-checkout-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pp-checkout-item__thumb {
    width: 2.5rem;
    height: 2.5rem;
    background: hsl(var(--muted));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.pp-checkout-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pp-checkout-item__thumb .emoji {
    font-size: 1.125rem;
    opacity: 0.4;
}

.pp-checkout-item__info {
    flex: 1;
    min-width: 0;
}

.pp-checkout-item__name {
    font-size: 0.75rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pp-checkout-item__meta {
    font-size: 0.625rem;
    color: hsl(var(--muted-foreground));
}

.pp-checkout-item__price {
    font-size: 0.875rem;
    font-weight: 900;
    color: hsl(var(--foreground));
    white-space: nowrap;
}

/* Checkout action buttons */
.pp-checkout-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.pp-checkout-actions .pp-btn-outline {
    flex: 1;
    padding: 1rem;
    font-size: 0.875rem;
}

/* ═══════════════════════════════════════════
   5. THANK YOU / ORDER SUCCESS
   (Source: Checkout.tsx success state)
   ═══════════════════════════════════════════ */
.pp-success {
    max-width: 28rem;
    margin: 0 auto;
    padding: 6rem 1rem;
    text-align: center;
}

.pp-success__check {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, hsl(var(--gold)), hsl(var(--gold-light)));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.4);
    animation: scaleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.pp-success__check svg {
    width: 3rem;
    height: 3rem;
    color: hsl(var(--primary-foreground));
    stroke-width: 3;
}

.pp-success__heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 900;
    color: hsl(var(--foreground));
    margin-bottom: 0.75rem;
}

.pp-success__text {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Order details card */
.pp-order-card {
    background: hsl(var(--gold) / 0.1);
    border: 1px solid hsl(var(--gold) / 0.3);
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.pp-order-card__label {
    font-size: 0.75rem;
    color: hsl(var(--gold));
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.pp-order-card__row {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.25rem;
}

.pp-order-card__row strong {
    font-weight: 900;
    color: hsl(var(--foreground));
}

/* ═══════════════════════════════════════════
   6. SHARED ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.pp-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

.pp-fade-in--d1 {
    animation-delay: 0.08s;
}

.pp-fade-in--d2 {
    animation-delay: 0.16s;
}

.pp-fade-in--d3 {
    animation-delay: 0.24s;
}

.pp-loading {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid hsl(var(--border));
    border-top-color: hsl(var(--gold));
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* ═══════════════════════════════════════════
   7. WOOCOMMERCE OVERRIDES (Checkout form)
   ═══════════════════════════════════════════ */
.pp-checkout .woocommerce-billing-fields__field-wrapper,
.pp-checkout .woocommerce-shipping-fields__field-wrapper {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {

    .pp-checkout .woocommerce-billing-fields__field-wrapper,
    .pp-checkout .woocommerce-shipping-fields__field-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .pp-checkout .form-row-wide {
        grid-column: 1 / -1;
    }
}

.pp-checkout .form-row {
    margin-bottom: 0;
}

.pp-checkout .form-row label {
    display: block;
    font-size: 0.75rem;
    font-weight: 900;
    color: hsl(var(--muted-foreground));
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.375rem;
}

.pp-checkout .form-row input,
.pp-checkout .form-row textarea,
.pp-checkout .form-row select {
    width: 100%;
    border: 1px solid hsl(var(--border));
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    transition: all 0.2s;
}

.pp-checkout .form-row input:focus,
.pp-checkout .form-row textarea:focus,
.pp-checkout .form-row select:focus {
    outline: none;
    border-color: hsl(var(--gold));
    box-shadow: 0 0 0 2px hsl(var(--gold) / 0.2);
}

/* Payment method list in WooCommerce */
.pp-checkout .wc_payment_methods {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pp-checkout .wc_payment_method {
    margin-bottom: 0.75rem;
}

.pp-checkout .wc_payment_method label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid hsl(var(--border));
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.875rem;
    font-weight: 700;
}

.pp-checkout .wc_payment_method label:hover {
    border-color: hsl(var(--gold));
    background: hsl(var(--gold) / 0.05);
}

.pp-checkout .wc_payment_method input[type=radio]:checked+label,
.pp-checkout .wc_payment_method.is-active label {
    border-color: hsl(var(--gold));
    background: hsl(var(--gold) / 0.05);
}

/* Place order button */
.pp-checkout #place_order {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to right, hsl(var(--gold)), hsl(var(--gold-light)));
    color: hsl(var(--primary-foreground));
    border: none;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.pp-checkout #place_order:hover {
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.45);
    transform: scale(1.02);
}