/* ============================================================
   AwwFis AF — components.css
   Buttons, badges, product cards, forms, breadcrumbs
   ============================================================ */

/* First-visit gender gate */
body.awwfis-gate-open { overflow: hidden; }
.awwfis-gender-gate {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
}
.awwfis-gender-gate.is-visible { display: flex; }
.awwfis-gender-gate__inner {
    max-width: 480px;
    width: 100%;
    text-align: center;
}
.awwfis-gender-gate__logo { font-size: 1.5rem; display: block; margin-bottom: var(--space-6); }
.awwfis-gender-gate__title {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: var(--space-2);
}
.awwfis-gender-gate__sub { color: var(--text-muted); font-size: 14px; margin-bottom: var(--space-8); }
.awwfis-gender-gate__options {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}
.awwfis-gender-gate__option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-6) var(--space-4);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    color: var(--text);
    font-weight: 700;
    font-size: 15px;
    transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.awwfis-gender-gate__option svg { color: var(--yellow); }
.awwfis-gender-gate__option:hover {
    border-color: var(--yellow);
    background: var(--bg-hover);
    transform: translateY(-3px);
}
.awwfis-gender-gate__skip {
    display: inline-block;
    color: var(--text-dim);
    font-size: 13px;
    text-decoration: underline;
}
.awwfis-gender-gate__skip:hover { color: var(--text-muted); }

@media (max-width: 480px) {
    .awwfis-gender-gate__options { flex-direction: column; }
}

/* ── Buttons ─────────────────────────────────────────────── */
.awwfis-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}
.awwfis-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Primary (Yellow) */
.awwfis-btn--primary {
    background: var(--yellow);
    color: #000;
    border-color: var(--yellow);
}
.awwfis-btn--primary:hover {
    background: var(--yellow-light);
    border-color: var(--yellow-light);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255,197,58,0.3);
}
.awwfis-btn--primary:active { transform: translateY(0); }

/* Outline */
.awwfis-btn--outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border-hover);
}
.awwfis-btn--outline:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    background: rgba(255,197,58,0.05);
}

/* Ghost */
.awwfis-btn--ghost {
    background: transparent;
    color: var(--text-muted);
    border-color: transparent;
}
.awwfis-btn--ghost:hover { color: var(--text); background: var(--bg-hover); }

/* Sizes */
.awwfis-btn--sm { padding: 7px 14px; font-size: 12px; }
.awwfis-btn--lg { padding: 13px 28px; font-size: 15px; }
.awwfis-btn--full { width: 100%; }

/* Pill variants */
.awwfis-btn--pill         { border-radius: var(--radius-pill); }
.awwfis-btn--outline-pill {
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border-hover);
}
.awwfis-btn--outline-pill:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    background: rgba(255,197,58,0.05);
}

/* Loading state */
.awwfis-btn.is-loading { pointer-events: none; opacity: 0.7; }
.awwfis-btn.is-loading::after {
    content: '';
    width: 14px; height: 14px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: awwfis-spin 0.6s linear infinite;
    margin-left: 6px;
}

@keyframes awwfis-spin {
    to { transform: rotate(360deg); }
}

/* ── Badges ──────────────────────────────────────────────── */
.awwfis-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: var(--radius-sm);
    line-height: 1.2;
}
.awwfis-badge--sale { background: #ff4444; color: #fff; }
.awwfis-badge--new  { background: var(--yellow); color: #000; }
.awwfis-badge--oos  { background: var(--bg-hover); color: var(--text-dim); border: 1px solid var(--border); }
.awwfis-badge--popular { background: rgba(255,197,58,0.15); color: var(--yellow); border: 1px solid rgba(255,197,58,0.3); }

/* ── Product Card ─────────────────────────────────────────── */
.awwfis-product-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}
.awwfis-product-card:hover {
    border-color: rgba(255,197,58,0.4);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.awwfis-product-card__cover-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.awwfis-product-card__image-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-hover);
}
.awwfis-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.awwfis-product-card:hover .awwfis-product-card__image { transform: scale(1.04); }
.awwfis-product-card__no-image {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.awwfis-product-card__badges {
    position: absolute;
    top: 8px; left: 8px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.awwfis-product-card__wish {
    position: absolute;
    top: 8px; right: 8px;
    z-index: 2;
    width: 30px; height: 30px;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}
.awwfis-product-card__wish:hover,
.awwfis-product-card__wish.is-wishlisted { color: var(--yellow); }

.awwfis-product-card__hover-actions {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: var(--space-3);
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transform: translateY(100%);
    transition: transform var(--transition);
}
.awwfis-product-card:hover .awwfis-product-card__hover-actions { transform: translateY(0); }

.awwfis-product-card__info {
    padding: var(--space-4);
}
.awwfis-product-card__category {
    font-size: 10px;
    font-weight: 600;
    color: var(--yellow);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: var(--space-1);
    display: block;
}
.awwfis-product-card__name {
    position: relative;
    z-index: 2;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--space-2);
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
}
.awwfis-product-card__name a { color: inherit; text-decoration: none; }
.awwfis-product-card__name a:hover { color: var(--yellow); }
.awwfis-product-card__price {
    font-size: 16px;
    font-weight: 800;
    color: var(--yellow);
    font-family: 'Space Grotesk', sans-serif;
}
.awwfis-product-card__price del { color: var(--text-dim); font-size: 12px; font-weight: 400; }
.awwfis-product-card__price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
}
.awwfis-product-card__swatches {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 6px;
}
.awwfis-swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.4);
}
.awwfis-swatch:hover {
    border-color: var(--yellow);
}
.awwfis-swatch.is-active {
    border-color: var(--yellow);
    box-shadow: 0 0 0 2px var(--yellow);
}
.awwfis-product-card__mobile-cta { position: relative; z-index: 2; display: none; margin-top: var(--space-3); }

/* ── Breadcrumb ──────────────────────────────────────────── */
.awwfis-breadcrumb {
    padding: var(--space-3) 0;
    margin-bottom: var(--space-2);
}
.awwfis-breadcrumb p {
    font-size: 12px;
    color: var(--text-dim);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.awwfis-breadcrumb a { color: var(--text-dim); transition: color var(--transition); }
.awwfis-breadcrumb a:hover { color: var(--yellow); }
.breadcrumb-sep { color: var(--text-faint); }

/* ── Form Elements ───────────────────────────────────────── */
.awwfis-field {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
}
.awwfis-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.awwfis-input,
.awwfis-textarea,
.awwfis-select {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    padding: 10px 14px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color var(--transition);
    width: 100%;
}
.awwfis-input:focus,
.awwfis-textarea:focus,
.awwfis-select:focus {
    outline: none;
    border-color: var(--yellow);
}
.awwfis-input::placeholder,
.awwfis-textarea::placeholder { color: var(--text-dim); }
.awwfis-textarea { min-height: 100px; resize: vertical; }
.awwfis-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

/* ── Size Selector ───────────────────────────────────────── */
.awwfis-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}
.awwfis-size-btn {
    min-width: 44px;
    height: 44px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    padding: 0 12px;
    font-family: 'Space Grotesk', sans-serif;
}
.awwfis-size-btn:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}
.awwfis-size-btn.is-selected {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #000;
}
.awwfis-size-btn.is-unavailable {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* ── Color Selector ──────────────────────────────────────── */
.awwfis-color-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}
.awwfis-color-btn {
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    padding: 0;
    position: relative;
}
.awwfis-color-btn:hover,
.awwfis-color-btn.is-selected {
    box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--yellow);
}
.awwfis-color-btn[data-color="black"] { background: #111; border-color: #333; }
.awwfis-color-btn[data-color="white"] { background: #fff; border-color: #ccc; }

/* ── Quantity Selector ───────────────────────────────────── */
.awwfis-qty-wrap {
    display: inline-flex;
    align-items: center;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.awwfis-qty-btn {
    width: 40px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 18px;
    transition: all var(--transition);
    border: none;
    background: none;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
}
.awwfis-qty-btn:hover { color: var(--yellow); background: rgba(255,197,58,0.08); }
.awwfis-qty-input {
    width: 52px;
    text-align: center;
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    padding: 0;
    font-family: 'Space Grotesk', sans-serif;
}
.awwfis-qty-input:focus { outline: none; }
.awwfis-qty-input::-webkit-inner-spin-button,
.awwfis-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* ── Tabs ────────────────────────────────────────────────── */
.awwfis-tabs {
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 0;
    margin-bottom: var(--space-6);
}
.awwfis-tab-btn {
    padding: var(--space-3) var(--space-5);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dim);
    border: none;
    background: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    cursor: pointer;
    transition: all var(--transition);
    font-family: 'Space Grotesk', sans-serif;
}
.awwfis-tab-btn:hover { color: var(--text); }
.awwfis-tab-btn.is-active { color: var(--yellow); border-bottom-color: var(--yellow); }
.awwfis-tab-panel { display: none; }
.awwfis-tab-panel.is-active { display: block; }

/* ── Notice / Alert ──────────────────────────────────────── */
.awwfis-notice {
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}
.awwfis-notice--success { background: rgba(107,255,158,0.1); border: 1px solid rgba(107,255,158,0.2); color: var(--success); }
.awwfis-notice--error   { background: rgba(255,107,107,0.1); border: 1px solid rgba(255,107,107,0.2); color: var(--error); }
.awwfis-notice--info    { background: rgba(90,171,255,0.1);  border: 1px solid rgba(90,171,255,0.2);  color: var(--info); }
.awwfis-notice--warning { background: rgba(255,197,58,0.1);  border: 1px solid rgba(255,197,58,0.2);  color: var(--yellow); }

/* ── Toast Notification ──────────────────────────────────── */
#awwfis-toast-container {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}
.awwfis-toast {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-4) var(--space-5);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    animation: awwfis-slide-in 0.3s ease forwards;
    max-width: 320px;
}
.awwfis-toast--success { border-color: rgba(107,255,158,0.3); }
.awwfis-toast--error   { border-color: rgba(255,107,107,0.3); }
@keyframes awwfis-slide-in {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0);   opacity: 1; }
}

/* ============================================================
   PDP — Single Product Page
   ============================================================ */

/* Page wrapper */
.awwfis-pdp-page {
    padding-top: var(--space-6);
    padding-bottom: var(--space-20);
}

/* Breadcrumb */
.awwfis-pdp-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: var(--space-8);
}
.awwfis-pdp-breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.awwfis-pdp-breadcrumb a:hover { color: var(--yellow); }
.awwfis-pdp-breadcrumb .breadcrumb-sep { color: var(--text-dim); }
.awwfis-pdp-breadcrumb .breadcrumb-current { color: var(--text); font-weight: 600; }

/* Two-column layout */
.awwfis-pdp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
    margin-bottom: var(--space-16);
}

/* Gallery */
.awwfis-pdp-gallery {
    position: sticky;
    top: calc(var(--header-height) + var(--space-6));
}
.awwfis-pdp-gallery__main {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-3);
}
.awwfis-pdp-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.awwfis-pdp-gallery__main:hover img { transform: scale(1.03); }
.awwfis-pdp-gallery__placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    color: var(--text-dim);
    font-size: 4rem;
}
.awwfis-pdp-gallery__placeholder p { font-size: 14px; }

.awwfis-pdp-badges {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

/* Slider arrows */
.awwfis-pdp-gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
    z-index: 2;
}
.awwfis-pdp-gallery__arrow:hover { background: var(--yellow); color: #000; }
.awwfis-pdp-gallery__arrow--prev { left: var(--space-3); }
.awwfis-pdp-gallery__arrow--next { right: var(--space-3); }

/* Slide dots */
.awwfis-pdp-thumbs {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
}
.awwfis-pdp-thumb {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--border-hover);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}
.awwfis-pdp-thumb:hover { background: var(--text-muted); }
.awwfis-pdp-thumb.is-active { background: var(--yellow); transform: scale(1.3); }

/* Info Column */
.awwfis-pdp-info__cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--yellow);
    margin-bottom: var(--space-3);
}
.awwfis-pdp-info__cat:hover { color: var(--yellow-light); }

.awwfis-pdp-info__name {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: var(--space-3);
}

/* Rating */
.awwfis-pdp-info__rating {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-5);
    text-decoration: none;
    color: inherit;
}
a.awwfis-pdp-info__rating--empty:hover .awwfis-pdp-info__rating-text { color: var(--yellow); text-decoration: underline; text-underline-offset: 2px; }
.awwfis-stars { display: flex; align-items: center; gap: 2px; }
.awwfis-pdp-info__rating-text { font-size: 13px; color: var(--text-muted); }
.awwfis-pdp-info__rating-link {
    font-size: 12px;
    color: var(--yellow);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.awwfis-pdp-info__rating-link:hover { color: var(--yellow-light); }

/* Price */
.awwfis-pdp-info__price-wrap {
    display: flex;
    align-items: baseline;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}
.awwfis-pdp-info__price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}
.awwfis-pdp-info__price .woocommerce-Price-amount { font-size: inherit; color: inherit; }
.awwfis-pdp-info__price-range { font-size: 13px; color: var(--text-muted); }

/* Option Groups */
.awwfis-pdp-option-group { margin-bottom: var(--space-5); }
.awwfis-pdp-option-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-3);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
}
/* Sleeve buttons */
.awwfis-pdp-sleeve-options {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}
.awwfis-sleeve-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-3) var(--space-5);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    cursor: pointer;
    transition: all var(--transition);
    min-width: 120px;
    gap: 4px;
}
.awwfis-sleeve-btn:hover { border-color: var(--border-hover); background: var(--bg-hover); }
.awwfis-sleeve-btn.is-selected {
    border-color: var(--yellow);
    background: rgba(255,197,58,0.05);
}
.awwfis-sleeve-btn__name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
}
.awwfis-sleeve-btn__price {
    font-size: 14px;
    font-weight: 800;
    color: var(--yellow);
    font-family: 'Space Grotesk', sans-serif;
}

/* Color swatches */
.awwfis-pdp-colors {
    display: flex;
    gap: var(--space-2);
    align-items: center;
}
.awwfis-color-swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid var(--border);
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
    position: relative;
}
.awwfis-color-swatch:hover { transform: scale(1.1); border-color: var(--border-hover); }
.awwfis-color-swatch.is-selected { border-color: var(--yellow); }
.awwfis-color-swatch.is-selected::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid var(--yellow);
}

/* Size buttons */
.awwfis-pdp-sizes { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.awwfis-size-btn {
    min-width: 52px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.3px;
}
.awwfis-size-btn:hover { border-color: var(--border-hover); background: var(--bg-hover); }
.awwfis-size-btn.is-selected {
    border-color: var(--yellow);
    background: rgba(255,197,58,0.08);
    color: var(--yellow);
}
.awwfis-size-btn.is-unavailable {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
}

.awwfis-pdp-size-guide {
    display: inline-block;
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    transition: color var(--transition);
}
.awwfis-pdp-size-guide:hover { color: var(--yellow); }

.awwfis-pdp-option-label__right {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.awwfis-pdp-wish-icon.awwfis-pdp-wish {
    width: 30px;
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--border-hover);
    background: var(--bg-card);
    color: var(--text-muted);
    transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}
.awwfis-pdp-wish-icon.awwfis-pdp-wish:hover {
    border-color: var(--yellow);
    background: var(--bg-hover);
    transform: scale(1.08);
}
.awwfis-pdp-wish-icon.awwfis-pdp-wish.is-wishlisted {
    border-color: var(--yellow);
    background: rgba(255,197,58,0.08);
}

/* CTA Row */
.awwfis-pdp-cta-row {
    display: flex;
    gap: var(--space-3);
    align-items: center;
    margin-bottom: var(--space-5);
    margin-top: var(--space-6);
}
.awwfis-pdp-atc,
.awwfis-pdp-buy-now {
    flex: 1;
    justify-content: center;
    gap: var(--space-2);
    height: 56px;
    font-size: 16px;
    font-weight: 700;
}

/* Qty */
.awwfis-qty-wrap {
    display: flex;
    align-items: center;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    overflow: hidden;
    flex-shrink: 0;
}
.awwfis-qty-btn {
    width: 40px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition), background var(--transition);
    line-height: 1;
}
.awwfis-qty-btn:hover { color: var(--text); background: var(--bg-hover); }
.awwfis-qty-input {
    width: 44px;
    height: 56px;
    text-align: center;
    background: transparent;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    -moz-appearance: textfield;
}
.awwfis-qty-input::-webkit-outer-spin-button,
.awwfis-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Notice */
.awwfis-pdp-notice {
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    background: rgba(255,107,107,0.1);
    border: 1px solid rgba(255,107,107,0.3);
    color: #ff6b6b;
    margin-bottom: var(--space-4);
}

/* Out of stock */
.awwfis-pdp-out-of-stock {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    background: var(--bg-hover);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--space-6);
}

/* Trust Bullets */
.awwfis-pdp-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    border-top: 1px solid var(--border);
    padding-top: var(--space-5);
    margin-bottom: var(--space-6);
}
.awwfis-pdp-trust li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}
.awwfis-pdp-trust li svg { flex-shrink: 0; }

/* Accordion */
.awwfis-pdp-accordion { border-top: 1px solid var(--border); }
.awwfis-pdp-accordion__item { border-bottom: 1px solid var(--border); }
.awwfis-pdp-accordion__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.2px;
    list-style: none;
    user-select: none;
}
.awwfis-pdp-accordion__trigger::-webkit-details-marker { display: none; }
.awwfis-pdp-accordion__icon {
    transition: transform var(--transition);
    flex-shrink: 0;
    color: var(--text-muted);
}
details[open] .awwfis-pdp-accordion__icon { transform: rotate(180deg); }
.awwfis-pdp-accordion__body {
    padding-bottom: var(--space-5);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}
.awwfis-pdp-accordion__body p { color: var(--text-muted); margin-bottom: var(--space-2); }
.awwfis-pdp-accordion__list {
    list-style: disc;
    padding-left: var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}
.awwfis-pdp-accordion__list li { color: var(--text-muted); }

/* Size chart image */
.awwfis-size-chart-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin-bottom: var(--space-4);
    display: block;
}

/* Size table */
.awwfis-size-table-wrap { overflow-x: auto; margin-bottom: var(--space-3); }
.awwfis-size-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    min-width: 260px;
}
.awwfis-size-table th,
.awwfis-size-table td {
    padding: var(--space-2) var(--space-3);
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.awwfis-size-table th {
    font-weight: 700;
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--bg-hover);
}
.awwfis-size-table td { color: var(--text-muted); }
.awwfis-size-table__note { font-size: 12px; color: var(--text-dim); font-style: italic; }

/* Size chart section */
.awwfis-pdp-sizechart {
    border-top: 1px solid var(--border);
    padding: var(--space-12) 0;
    scroll-margin-top: 100px;
}
.awwfis-pdp-sizechart__img {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto;
    border-radius: var(--radius-lg);
}

/* Reviews section */
.awwfis-pdp-reviews {
    padding: var(--space-12) 0;
    border-top: 1px solid var(--border);
    margin-bottom: var(--space-12);
}

/* WooCommerce's own review/comment markup — themed to match the site */
.awwfis-pdp-reviews .woocommerce-Reviews-title,
.awwfis-pdp-reviews #reply-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--space-4);
}
.awwfis-pdp-reviews #reply-title small a {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: var(--space-2);
}
.awwfis-pdp-reviews .woocommerce-noreviews {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-6);
}

/* Existing review list */
.awwfis-pdp-reviews .commentlist {
    list-style: none;
    margin: 0 0 var(--space-8);
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}
.awwfis-pdp-reviews .commentlist .comment {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.awwfis-pdp-reviews .commentlist .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
}
.awwfis-pdp-reviews .commentlist .star-rating {
    color: var(--yellow);
    font-size: 13px;
    margin-bottom: var(--space-2);
}
.awwfis-pdp-reviews .commentlist .meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0 0 var(--space-2);
}
.awwfis-pdp-reviews .commentlist .woocommerce-review__author { color: var(--text); font-weight: 600; }
.awwfis-pdp-reviews .commentlist .description p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Review form */
.awwfis-pdp-reviews #review_form_wrapper { max-width: 560px; }
.awwfis-review-must-login {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.awwfis-review-must-login a { color: var(--yellow); font-weight: 600; }
.awwfis-pdp-reviews .comment-form { display: flex; flex-direction: column; gap: var(--space-4); }
.awwfis-pdp-reviews .comment-notes { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.awwfis-pdp-reviews .comment-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--space-2);
}
.awwfis-pdp-reviews .comment-form .required { color: var(--yellow); text-decoration: none; }

.awwfis-pdp-reviews .comment-form-rating p.stars {
    margin: 0;
    display: flex;
    gap: 4px;
}
.awwfis-pdp-reviews .comment-form-rating p.stars a {
    position: relative;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
}
/* WooCommerce's own ::before renders its icon-font glyph with :hover/.active/
   .selected state rules at the same specificity as anything scoped here, so
   overriding `content` on it directly loses that cascade fight unpredictably
   per state (root cause of the persistent "grey box" / "only one star lights
   up" bugs). Kill it outright instead of fighting it - the real glyph is a
   separate DOM node injected by main.js (awwfisBuildStarGlyphs), fully
   independent of WooCommerce's markup/classes. */
.awwfis-pdp-reviews .comment-form-rating p.stars a::before {
    content: none !important;
}
.awwfis-pdp-reviews .comment-form-rating p.stars a .awwfis-star-glyph {
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    height: 1em;
    /* SVG polygon, not a font character - confirmed live that a text-glyph
       star (both the original "★" character and WooCommerce's own icon font)
       can render as a fully invisible/missing box depending on the browser's
       installed fonts. An SVG shape has no font-availability dependency,
       matching the PDP's own average-rating stars, which already work. */
    overflow: visible;
}
.awwfis-pdp-reviews .comment-form-rating p.stars a .awwfis-star-glyph polygon {
    /* --border-hover (#333) is nearly invisible against this page's near-black
       background (#0a0a0a) - confirmed live the unlit stars were technically
       rendering but simply couldn't be seen, which was part of why clicking
       felt "not working" (nothing visible to click on in the first place).
       --text-muted (#888) has real contrast, matching other secondary UI text. */
    fill: var(--text-muted);
    stroke: none;
    transition: fill var(--transition);
}
/* Cumulative 1-through-N fill (click star 3 -> stars 1,2,3 light up), driven
   entirely by JS toggling this class - no WooCommerce cascade involved. */
.awwfis-pdp-reviews .comment-form-rating p.stars a.awwfis-star-lit .awwfis-star-glyph polygon {
    fill: var(--yellow);
}
.awwfis-pdp-reviews .comment-form-rating select { display: none; }

.awwfis-pdp-reviews .comment-form-comment textarea,
.awwfis-pdp-reviews .comment-form-author input,
.awwfis-pdp-reviews .comment-form-email input {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
    resize: vertical;
    box-sizing: border-box;
    transition: border-color var(--transition);
}
.awwfis-pdp-reviews .comment-form-comment textarea:focus,
.awwfis-pdp-reviews .comment-form-author input:focus,
.awwfis-pdp-reviews .comment-form-email input:focus {
    outline: none;
    border-color: var(--yellow);
}
.awwfis-pdp-reviews .comment-form p { margin: 0; }

.awwfis-pdp-reviews .form-submit { margin-top: var(--space-2); }
.awwfis-pdp-reviews .form-submit #submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--yellow);
    color: #000;
    border: 1px solid var(--yellow);
    border-radius: var(--radius);
    font-family: inherit;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition);
}
.awwfis-pdp-reviews .form-submit #submit:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
}

/* Related section */
.awwfis-pdp-related {
    border-top: 1px solid var(--border);
    padding-top: var(--space-12);
}

/* Sticky Bar — hidden by default, shown on mobile via responsive.css */
.awwfis-pdp-sticky-bar { display: none; }

/* ============================================================
   PLP — Archive / Shop / Category Page
   ============================================================ */

.awwfis-plp-page {
    padding-top: var(--space-6);
    padding-bottom: var(--space-20);
}

/* Breadcrumb */
.awwfis-plp-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: var(--space-6);
}
.awwfis-plp-breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.awwfis-plp-breadcrumb a:hover { color: var(--yellow); }
.awwfis-plp-breadcrumb .breadcrumb-sep { color: var(--text-dim); }
.awwfis-plp-breadcrumb .breadcrumb-current { color: var(--text); font-weight: 600; }

/* Page Header */
.awwfis-plp-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}
.awwfis-plp-header__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: var(--space-1);
}
.awwfis-plp-header__desc {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 500px;
}
.awwfis-plp-count {
    font-size: 13px;
    color: var(--text-dim);
    font-weight: 600;
    white-space: nowrap;
}

/* Layout: sidebar + grid */
.awwfis-plp-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: var(--space-8);
    align-items: start;
}

/* ── Sidebar ─────────────────────────────────────────────── */
.awwfis-plp-sidebar {
    position: sticky;
    top: calc(var(--header-height) + var(--space-4));
}

/* Mobile toggle — hidden on desktop */
.awwfis-plp-filter-toggle { display: none; }

.awwfis-plp-filter-group {
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--border);
}
.awwfis-plp-filter-group:last-of-type { border-bottom: none; }

.awwfis-plp-filter-group__title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    margin-bottom: var(--space-3);
}

/* Sort list */
.awwfis-plp-sort-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}
.awwfis-plp-sort-item {
    font-size: 13px;
    color: var(--text-muted);
    padding: 5px 8px;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    font-weight: 500;
}
.awwfis-plp-sort-item:hover { color: var(--text); background: var(--bg-hover); }
.awwfis-plp-sort-item.is-active {
    color: var(--yellow);
    background: rgba(255,197,58,0.08);
    font-weight: 700;
}

/* Category list */
.awwfis-plp-cat-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: 360px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
}
.awwfis-plp-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
    padding: 5px 8px;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    font-weight: 500;
    gap: var(--space-2);
}
.awwfis-plp-cat-item:hover { color: var(--text); background: var(--bg-hover); }
.awwfis-plp-cat-item.is-active {
    color: var(--yellow);
    background: rgba(255,197,58,0.08);
    font-weight: 700;
}
.awwfis-plp-cat-count {
    font-size: 11px;
    color: var(--text-dim);
    background: var(--bg-hover);
    border-radius: var(--radius-pill);
    padding: 1px 6px;
    flex-shrink: 0;
}
.awwfis-plp-cat-item.is-active .awwfis-plp-cat-count {
    background: rgba(255,197,58,0.15);
    color: var(--yellow);
}

/* Price options */
.awwfis-plp-price-options {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.awwfis-plp-price-item {
    font-size: 13px;
    color: var(--text-muted);
    padding: 5px 8px;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    font-weight: 500;
}
.awwfis-plp-price-item:hover { color: var(--text); background: var(--bg-hover); }
.awwfis-plp-price-item.is-active {
    color: var(--yellow);
    background: rgba(255,197,58,0.08);
    font-weight: 700;
}

/* Clear filters */
.awwfis-plp-clear-filters {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-dim);
    padding: 5px 8px;
    border-radius: var(--radius);
    transition: color var(--transition);
    font-weight: 600;
    margin-top: var(--space-2);
}
.awwfis-plp-clear-filters:hover { color: var(--error); }

/* ── Main Area ───────────────────────────────────────────── */
.awwfis-plp-main { min-width: 0; }

/* Active filter tags */
.awwfis-plp-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}
.awwfis-plp-active-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255,197,58,0.1);
    border: 1px solid rgba(255,197,58,0.3);
    color: var(--yellow);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}
.awwfis-plp-active-tag__remove {
    color: var(--yellow);
    font-size: 14px;
    line-height: 1;
    opacity: 0.7;
    transition: opacity var(--transition);
}
.awwfis-plp-active-tag__remove:hover { opacity: 1; }

/* Toolbar */
.awwfis-plp-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-5);
    gap: var(--space-4);
}
.awwfis-plp-toolbar__count {
    font-size: 13px;
    color: var(--text-muted);
}
/* Hide WooCommerce default ordering form — we use our own */
.woocommerce-ordering,
.woocommerce-result-count { display: none !important; }

/* Sort wrapper — custom styled, select overlaid invisibly */
.awwfis-plp-sort-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #111111;
    border: 1px solid #222222;
    border-radius: var(--radius);
    padding: 7px 12px;
    cursor: pointer;
    transition: border-color var(--transition);
    min-width: 160px;
}
.awwfis-plp-sort-wrap:hover { border-color: #333333; }
.awwfis-plp-sort-label {
    font-size: 13px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: #FCA600;
    flex: 1;
    pointer-events: none;
    white-space: nowrap;
}
.awwfis-plp-sort-wrap svg { pointer-events: none; flex-shrink: 0; }
.awwfis-plp-sort-select {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    font-size: 13px;
}

/* Pagination */
.awwfis-plp-pagination {
    margin-top: var(--space-10);
    display: flex;
    justify-content: center;
}
.awwfis-plp-pagination .page-numbers {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}
.awwfis-plp-pagination .page-numbers li { list-style: none; }
.awwfis-plp-pagination .page-numbers a,
.awwfis-plp-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--space-3);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    border: 1px solid var(--border);
    color: var(--text-muted);
    background: var(--bg-card);
    transition: all var(--transition);
}
.awwfis-plp-pagination .page-numbers a:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    background: rgba(255,197,58,0.05);
}
.awwfis-plp-pagination .page-numbers .current {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #000;
}
.awwfis-plp-pagination .page-numbers .dots {
    border-color: transparent;
    background: transparent;
    color: var(--text-dim);
}

/* Empty state */
.awwfis-plp-empty {
    text-align: center;
    padding: var(--space-20) var(--space-4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}
.awwfis-plp-empty__icon { font-size: 4rem; }
.awwfis-plp-empty__title { font-size: 1.5rem; color: var(--text); }

/* ============================================================
   Cart Page
   ============================================================ */

.awwfis-cart-page {
    padding: var(--space-8) 0 var(--space-20);
    min-height: 60vh;
}

.awwfis-cart-page__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: var(--space-8);
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.awwfis-cart-page__count {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
}

/* Layout */
.awwfis-cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: var(--space-8);
    align-items: start;
}

/* ── Coupon bar ─────────────────────────────────────────── */
.awwfis-coupon-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: var(--space-4);
    color: var(--text-muted);
    font-size: 0.875rem;
}
.awwfis-coupon-bar svg { flex-shrink: 0; color: var(--yellow); }
.awwfis-coupon-toggle {
    margin-left: auto;
    color: var(--yellow);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}
.awwfis-coupon-toggle:hover { text-decoration: underline; }

.awwfis-coupon-form {
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    margin-top: -1px;
    margin-bottom: var(--space-4);
}
.awwfis-coupon-form .woocommerce-form-coupon {
    display: flex;
    gap: 8px;
}
.awwfis-coupon-form input[type="text"] {
    flex: 1;
    padding: 10px 14px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.9rem;
}
.awwfis-coupon-form input[type="text"]:focus {
    outline: none;
    border-color: var(--yellow);
}
.awwfis-coupon-form button[type="submit"] {
    padding: 10px 20px;
    background: var(--yellow);
    color: #000;
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition);
}
.awwfis-coupon-form button[type="submit"]:hover { background: var(--yellow-light); }

/* ── Cart Table ─────────────────────────────────────────── */
.awwfis-cart-table {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: var(--space-4);
}
.awwfis-cart-table__head {
    display: grid;
    grid-template-columns: 1fr 100px 130px 100px 40px;
    gap: 0;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
}

/* Cart Row */
.awwfis-cart-row {
    display: grid;
    grid-template-columns: 1fr 100px 130px 100px 40px;
    gap: 0;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
.awwfis-cart-row:last-child { border-bottom: none; }
.awwfis-cart-row:hover { background: var(--bg-hover); }

/* Product cell */
.awwfis-cart-row__product {
    display: flex;
    align-items: center;
    gap: 14px;
}
.awwfis-cart-row__image {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-hover);
    border: 1px solid var(--border);
}
.awwfis-cart-row__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.awwfis-cart-row__name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.3;
    display: block;
    margin-bottom: 4px;
}
.awwfis-cart-row__name:hover { color: var(--yellow); }
.awwfis-cart-row__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
}
.awwfis-cart-row__meta span {
    background: var(--bg-hover);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2px 8px;
}

/* Price / subtotal cells */
.awwfis-cart-row__price,
.awwfis-cart-row__subtotal {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 600;
}
.awwfis-cart-row__subtotal { color: var(--yellow); }

/* Qty control */
.awwfis-qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    width: fit-content;
    background: var(--bg-input);
}
.awwfis-qty-btn {
    width: 32px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition), background var(--transition);
    flex-shrink: 0;
}
.awwfis-qty-btn:hover { color: var(--yellow); background: rgba(255,197,58,0.08); }
.awwfis-qty-control input.qty {
    width: 40px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--text);
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    -moz-appearance: textfield;
}
.awwfis-qty-control input.qty::-webkit-inner-spin-button,
.awwfis-qty-control input.qty::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Remove button */
.awwfis-cart-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: var(--text-dim);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.awwfis-cart-remove:hover {
    color: #ff4444;
    border-color: #ff4444;
    background: rgba(255,68,68,0.08);
}

/* Cart actions bar */
.awwfis-cart-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.awwfis-cart-update { margin-left: auto; }

/* ── Order Summary ──────────────────────────────────────── */
.awwfis-cart-summary__inner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-6);
    position: sticky;
    top: 90px;
}
.awwfis-cart-summary__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border);
}

.awwfis-cart-totals {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: var(--space-5);
}
.awwfis-cart-totals__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.awwfis-cart-totals__row:last-child { border-bottom: none; }
.awwfis-cart-totals__row--discount { color: #4ade80; }
.awwfis-cart-totals__row--discount .discount { color: #4ade80; font-weight: 700; }
.awwfis-cart-totals__row--free .free { color: #4ade80; font-weight: 700; }
.awwfis-cart-totals__row--total {
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 800;
    padding-top: 14px;
    padding-bottom: 0;
}
.awwfis-cart-totals__row--total span:last-child { color: var(--yellow); font-size: 1.2rem; }

/* Remove coupon link */
.awwfis-remove-coupon {
    margin-left: 6px;
    color: var(--text-dim);
    font-size: 0.75rem;
    cursor: pointer;
}
.awwfis-remove-coupon:hover { color: #ff4444; }

/* Checkout CTA */
.awwfis-cart-checkout-btn {
    margin-bottom: var(--space-4);
    font-size: 1rem;
    padding: 14px 20px;
}

/* Trust items */
.awwfis-cart-trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: var(--space-4) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: var(--space-4);
}
.awwfis-cart-trust__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.awwfis-cart-trust__item svg { color: var(--yellow); flex-shrink: 0; }

/* Payment icons */
.awwfis-cart-payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.awwfis-payment-icon {
    padding: 4px 10px;
    background: var(--bg-hover);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Shipping calculator overrides */
.woocommerce-shipping-calculator .shipping-calculator-button {
    color: var(--yellow);
    font-size: 0.85rem;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    text-decoration: underline;
}
.shipping-calculator-form {
    padding: var(--space-3) 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.shipping-calculator-form select,
.shipping-calculator-form input {
    width: 100%;
    padding: 8px 12px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.85rem;
}
.shipping-calculator-form select:focus,
.shipping-calculator-form input:focus { outline: none; border-color: var(--yellow); }
.shipping-calculator-form button[type="submit"] {
    align-self: flex-start;
    padding: 8px 16px;
    background: var(--yellow);
    color: #000;
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
}

/* ── Empty Cart ─────────────────────────────────────────── */
.awwfis-cart-empty {
    text-align: center;
    padding: var(--space-20) var(--space-4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}
.awwfis-cart-empty__icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-dim);
    margin-bottom: var(--space-2);
}
.awwfis-cart-empty h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text);
}
.awwfis-cart-empty p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 360px;
}
.awwfis-cart-empty .awwfis-btn { margin-top: var(--space-2); }

/* ── Cart Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
    .awwfis-cart-layout { grid-template-columns: 1fr; }
    .awwfis-cart-summary__inner { position: static; }
}

@media (max-width: 768px) {
    .awwfis-cart-table__head { display: none; }
    .awwfis-cart-row {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "product product"
            "price   qty"
            "subtotal remove";
        gap: 10px;
        padding: 16px;
    }
    .awwfis-cart-row__product { grid-area: product; }
    .awwfis-cart-row__price   { grid-area: price; }
    .awwfis-cart-row__qty     { grid-area: qty; justify-self: end; }
    .awwfis-cart-row__subtotal{ grid-area: subtotal; }
    .awwfis-cart-row__remove  { grid-area: remove; justify-self: end; }

    .awwfis-cart-row__price::before   { content: attr(data-label) ': '; color: var(--text-muted); font-size: 0.8rem; }
    .awwfis-cart-row__subtotal::before{ content: attr(data-label) ': '; color: var(--text-muted); font-size: 0.8rem; }

    .awwfis-cart-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .awwfis-cart-update { margin-left: 0; }
}

@media (max-width: 480px) {
    .awwfis-cart-page { padding: var(--space-4) 0 var(--space-12); }
}

/* ============================================================
   Checkout Page
   ============================================================ */

.awwfis-checkout-page {
    padding: var(--space-8) 0 var(--space-20);
    min-height: 60vh;
}
.awwfis-checkout-page__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: var(--space-6);
}

/* Trust strip */
.awwfis-checkout-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: var(--space-6);
}
.awwfis-checkout-trust-strip__item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.awwfis-checkout-trust-strip__item svg { color: var(--yellow); flex-shrink: 0; }

/* Layout */
.awwfis-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: var(--space-8);
    align-items: start;
}

/* Login prompt */
.awwfis-checkout-login-prompt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: var(--space-4);
    font-size: 0.875rem;
    color: var(--text-muted);
}
.awwfis-checkout-login-prompt svg { color: var(--yellow); }
.awwfis-checkout-login-link { color: var(--yellow); font-weight: 600; }
.awwfis-checkout-login-link:hover { text-decoration: underline; }

/* Coupon bar */
.awwfis-checkout-coupon-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: var(--space-4);
    color: var(--text-muted);
    font-size: 0.875rem;
}
.awwfis-checkout-coupon-bar svg { color: var(--yellow); flex-shrink: 0; }

/* Checkout sections */
.awwfis-checkout-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-6);
    margin-bottom: var(--space-5);
}
.awwfis-checkout-section__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border);
}
.awwfis-checkout-section__header--sub {
    margin-top: var(--space-5);
    padding-top: var(--space-5);
    border-top: 1px solid var(--border);
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: var(--space-4);
}
.awwfis-checkout-section__header h2 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}
.awwfis-checkout-step-num {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--yellow);
    color: #000;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WC field overrides */
.awwfis-checkout-fields .form-row {
    margin-bottom: var(--space-4);
}
.awwfis-checkout-fields label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.awwfis-checkout-fields .required { color: var(--yellow); }
.awwfis-checkout-fields input[type="text"],
.awwfis-checkout-fields input[type="email"],
.awwfis-checkout-fields input[type="tel"],
.awwfis-checkout-fields input[type="number"],
.awwfis-checkout-fields input[type="password"],
.awwfis-checkout-fields textarea,
.awwfis-checkout-fields select,
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    width: 100%;
    padding: 11px 14px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: border-color var(--transition);
    appearance: none;
}
.awwfis-checkout-fields input:focus,
.awwfis-checkout-fields select:focus,
.awwfis-checkout-fields textarea:focus,
.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row select:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(255,197,58,0.1);
}
.awwfis-checkout-fields input::placeholder,
.woocommerce-checkout input::placeholder { color: var(--text-dim); }

/* Two-col fields */
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 var(--space-4);
}
.woocommerce-billing-fields__field-wrapper .form-row-wide,
.woocommerce-shipping-fields__field-wrapper .form-row-wide { grid-column: 1 / -1; }

/* Checkbox */
.woocommerce-checkout .form-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--yellow);
    margin-right: 8px;
    cursor: pointer;
}

/* Select arrow */
.woocommerce-checkout .form-row select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

/* Validation */
.woocommerce-checkout .form-row.woocommerce-invalid input,
.woocommerce-checkout .form-row.woocommerce-invalid select { border-color: var(--error); }
.woocommerce-checkout .form-row.woocommerce-validated input,
.woocommerce-checkout .form-row.woocommerce-validated select { border-color: var(--success); }

/* Payment methods */
.awwfis-payment-methods { margin-top: var(--space-2); }
.woocommerce-checkout #payment .payment_methods {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: var(--space-5);
}
.woocommerce-checkout #payment .payment_methods li {
    background: var(--bg-hover);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    cursor: pointer;
    transition: border-color var(--transition);
}
.woocommerce-checkout #payment .payment_methods li.payment_method_razorpay { border-color: var(--border); }
.woocommerce-checkout #payment .payment_methods li:has(input:checked) {
    border-color: var(--yellow);
    background: rgba(255,197,58,0.05);
}
.woocommerce-checkout #payment .payment_methods label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    text-transform: none;
    letter-spacing: 0;
}
.woocommerce-checkout #payment .payment_methods input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: var(--yellow);
    flex-shrink: 0;
}
.woocommerce-checkout #payment .payment_box {
    margin-top: 10px;
    padding: 12px;
    background: var(--bg-input);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Place order button */
.woocommerce-checkout #payment #place_order,
.woocommerce #payment #place_order {
    width: 100%;
    padding: 15px 24px;
    background: var(--yellow);
    color: #000;
    border: none;
    border-radius: var(--radius-pill);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.3px;
    margin-top: var(--space-4);
}
.woocommerce-checkout #payment #place_order:hover {
    background: var(--yellow-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255,197,58,0.35);
}

/* ── Checkout Order Summary (right sidebar) ── */
.awwfis-checkout-summary__inner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-6);
    position: sticky;
    top: 90px;
}
.awwfis-checkout-summary__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border);
}

/* Checkout items list */
.awwfis-checkout-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border);
}
.awwfis-checkout-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.awwfis-checkout-item__img {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-hover);
}
.awwfis-checkout-item__img img { width: 100%; height: 100%; object-fit: cover; }
.awwfis-checkout-item__qty {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: var(--yellow);
    color: #000;
    font-size: 0.68rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.awwfis-checkout-item__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.awwfis-checkout-item__name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.awwfis-checkout-item__meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.awwfis-checkout-item__price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--yellow);
    flex-shrink: 0;
}

/* Checkout totals */
.awwfis-checkout-totals {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--space-5);
}
.awwfis-checkout-totals__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    font-size: 0.875rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.awwfis-checkout-totals__row:last-child { border-bottom: none; }
.awwfis-checkout-totals__row--discount { color: #4ade80; }
.awwfis-checkout-totals__row--total {
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 800;
    padding-top: 12px;
    padding-bottom: 0;
}
.awwfis-checkout-totals__row--total span:last-child { color: var(--yellow); }

.awwfis-checkout-summary__note {
    font-size: 0.75rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: var(--space-4);
}
.awwfis-checkout-summary__note a { color: var(--text-muted); text-decoration: underline; }

/* ============================================================
   Thank You Page
   ============================================================ */

.awwfis-thankyou-page {
    padding: var(--space-8) 0 var(--space-20);
    min-height: 60vh;
}

/* Hero */
.awwfis-thankyou-hero {
    text-align: center;
    padding: var(--space-12) var(--space-4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}
.awwfis-thankyou-hero__icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-2);
}
.awwfis-thankyou-hero__icon.is-paid {
    background: rgba(107,255,158,0.12);
    border: 2px solid #4ade80;
    color: #4ade80;
}
.awwfis-thankyou-hero__icon.is-pending {
    background: rgba(255,197,58,0.12);
    border: 2px solid var(--yellow);
    color: var(--yellow);
}
.awwfis-thankyou-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
}
.awwfis-thankyou-hero__sub {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.6;
}

/* Meta strip */
.awwfis-thankyou-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: var(--space-8);
}
.awwfis-thankyou-meta__item {
    flex: 1;
    min-width: 120px;
    padding: 16px 20px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.awwfis-thankyou-meta__item:last-child { border-right: none; }
.awwfis-thankyou-meta__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
}
.awwfis-thankyou-meta__value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}
.awwfis-thankyou-meta__value--total { color: var(--yellow); font-size: 1rem; }

/* Layout */
.awwfis-thankyou-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--space-8);
    align-items: start;
}

/* Sections */
.awwfis-thankyou-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-6);
    margin-bottom: var(--space-5);
}
.awwfis-thankyou-section__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border);
}

/* Items */
.awwfis-thankyou-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border);
}
.awwfis-thankyou-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.awwfis-thankyou-item__img {
    position: relative;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-hover);
}
.awwfis-thankyou-item__img img { width: 100%; height: 100%; object-fit: cover; }
.awwfis-thankyou-item__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.awwfis-thankyou-item__name { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.awwfis-thankyou-item__meta { font-size: 0.78rem; color: var(--text-muted); }
.awwfis-thankyou-item__price { font-size: 0.95rem; font-weight: 700; color: var(--yellow); }

/* Totals */
.awwfis-thankyou-totals { display: flex; flex-direction: column; }
.awwfis-thankyou-totals__row {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    font-size: 0.875rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.awwfis-thankyou-totals__row:last-child { border-bottom: none; }
.awwfis-thankyou-totals__row--discount { color: #4ade80; }
.awwfis-thankyou-totals__row--total {
    color: var(--text);
    font-weight: 800;
    font-size: 1.05rem;
    padding-top: 12px;
    padding-bottom: 0;
}
.awwfis-thankyou-totals__row--total span:last-child { color: var(--yellow); }
.awwfis-thankyou-totals__row .free { color: #4ade80; font-weight: 700; }

/* Address */
.awwfis-thankyou-address {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* What's next sidebar */
.awwfis-thankyou-next__inner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-6);
    position: sticky;
    top: 90px;
}
.awwfis-thankyou-next__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border);
}

/* Steps */
.awwfis-thankyou-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: var(--space-6);
}
.awwfis-thankyou-step {
    display: flex;
    gap: 14px;
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.awwfis-thankyou-step:last-child { border-bottom: none; }
.awwfis-thankyou-step__num {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--bg-hover);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
}
.awwfis-thankyou-step.is-done .awwfis-thankyou-step__num {
    background: rgba(107,255,158,0.15);
    border-color: #4ade80;
    color: #4ade80;
}
.awwfis-thankyou-step div { padding-top: 3px; }
.awwfis-thankyou-step strong { font-size: 0.875rem; color: var(--text); display: block; margin-bottom: 3px; }
.awwfis-thankyou-step p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

.awwfis-thankyou-next__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: var(--space-5);
}

/* Social nudge */
.awwfis-thankyou-social {
    border-top: 1px solid var(--border);
    padding-top: var(--space-4);
    text-align: center;
}
.awwfis-thankyou-social p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--space-3);
}
.awwfis-thankyou-social__links {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.awwfis-thankyou-social .awwfis-social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 6px 14px;
    transition: all var(--transition);
}
.awwfis-thankyou-social .awwfis-social-link:hover {
    color: var(--yellow);
    border-color: var(--yellow);
    background: rgba(255,197,58,0.05);
}

/* Responsive — Checkout */
@media (max-width: 1024px) {
    .awwfis-checkout-layout { grid-template-columns: 1fr; }
    .awwfis-checkout-summary__inner { position: static; }
    .awwfis-thankyou-layout { grid-template-columns: 1fr; }
    .awwfis-thankyou-next__inner { position: static; }
}

@media (max-width: 768px) {
    .awwfis-checkout-trust-strip { gap: 10px 16px; }
    .woocommerce-billing-fields__field-wrapper,
    .woocommerce-shipping-fields__field-wrapper { grid-template-columns: 1fr; }
    .awwfis-thankyou-meta { flex-direction: column; }
    .awwfis-thankyou-meta__item { border-right: none; border-bottom: 1px solid var(--border); }
    .awwfis-thankyou-meta__item:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
    .awwfis-checkout-page,
    .awwfis-thankyou-page { padding: var(--space-4) 0 var(--space-12); }
    .awwfis-thankyou-hero { padding: var(--space-8) var(--space-2); }
}
.awwfis-plp-empty__sub { color: var(--text-muted); font-size: 14px; }

/* ============================================================
   About & Contact Page
   ============================================================ */

/* Split hero — different layout from the homepage's centered hero */
.awwfis-about-hero {
    position: relative;
    background: #0a0a0a;
    overflow: hidden;
    padding: var(--space-16) 0;
    border-bottom: 1px solid var(--border);
}
.awwfis-about-hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-10);
    align-items: center;
}
.awwfis-about-hero__content .awwfis-hero__pill-badge { margin-bottom: var(--space-5); display: inline-block; }
.awwfis-about-hero__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: var(--space-4);
}
.awwfis-about-hero__sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-6);
    max-width: 520px;
}
.awwfis-about-hero__content .awwfis-hero__cta-group { justify-content: flex-start; margin-bottom: var(--space-8); }
.awwfis-about-hero__stats {
    display: flex;
    gap: var(--space-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: fit-content;
}
.awwfis-about-hero__stats .awwfis-hero__stat { padding: var(--space-3) var(--space-6); }

.awwfis-about-hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}
.awwfis-about-hero__glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252,166,0,0.35), rgba(252,166,0,0) 70%);
    filter: blur(10px);
    z-index: 0;
}
.awwfis-about-hero__img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 340px;
    height: auto;
    filter: drop-shadow(0 25px 40px rgba(0,0,0,0.6));
}
.awwfis-about-hero__tag {
    position: absolute;
    z-index: 2;
    bottom: 6%;
    right: 4%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-3) var(--space-4);
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    max-width: 200px;
    box-shadow: 0 8px 24px -8px rgba(0,0,0,0.5);
}

@media (max-width: 900px) {
    .awwfis-about-hero__inner { grid-template-columns: 1fr; }
    .awwfis-about-hero__content { text-align: center; }
    .awwfis-about-hero__sub { margin-left: auto; margin-right: auto; }
    .awwfis-about-hero__content .awwfis-hero__cta-group { justify-content: center; }
    .awwfis-about-hero__stats { margin: 0 auto; }
    .awwfis-about-hero__visual { min-height: 320px; margin-top: var(--space-8); }
}

.awwfis-about-story { padding-bottom: var(--space-8); }
.awwfis-about-story__grid {
    max-width: 760px;
    margin: 0 auto;
}
.awwfis-about-story__grid p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: var(--space-4);
    text-align: center;
}

/* Value cards (reuses the category-card icon-badge visual language) */
.awwfis-value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
}
.awwfis-value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-6) var(--space-4);
    text-align: center;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.awwfis-value-card:hover {
    border-color: rgba(var(--cat-accent-rgb, 255,197,58), 0.6);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px -8px rgba(var(--cat-accent-rgb, 255,197,58), 0.35);
}
.awwfis-value-card__icon {
    width: 56px; height: 56px;
    margin: 0 auto var(--space-4);
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 28%, rgba(var(--cat-accent-rgb, 255,197,58), 0.55), rgba(var(--cat-accent-rgb, 255,197,58), 0.08) 65%),
        var(--bg-hover);
    border: 1.5px solid rgba(var(--cat-accent-rgb, 255,197,58), 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 16px -6px rgba(var(--cat-accent-rgb, 255,197,58), 0.5);
}
.awwfis-value-card__title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: var(--space-2); }
.awwfis-value-card__desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.awwfis-about-stats-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Contact */
.awwfis-contact-section { padding-bottom: var(--space-8); }
.awwfis-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-10);
    align-items: start;
    margin-top: var(--space-8);
}
.awwfis-contact-detail-card {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-4);
    margin-bottom: var(--space-3);
}
.awwfis-contact-detail-card__icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 28%, rgba(var(--cat-accent-rgb, 255,197,58), 0.55), rgba(var(--cat-accent-rgb, 255,197,58), 0.08) 65%),
        var(--bg-hover);
    border: 1.5px solid rgba(var(--cat-accent-rgb, 255,197,58), 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.awwfis-contact-detail-card strong { display: block; font-size: 13px; color: var(--text); }
.awwfis-contact-detail-card span,
.awwfis-contact-detail-card a { font-size: 14px; color: var(--text-muted); }
.awwfis-contact-detail-card a:hover { color: var(--yellow); }

.awwfis-contact-details__social-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin: var(--space-6) 0 var(--space-3);
}
.awwfis-contact-social { display: flex; flex-direction: column; gap: var(--space-2); }
.awwfis-contact-social__link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-muted);
    font-size: 14px;
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: color var(--transition), border-color var(--transition);
}
.awwfis-contact-social__link:hover { color: var(--yellow); border-color: var(--yellow); }

.awwfis-contact-form-wrap { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-6); }
.awwfis-contact-form { padding: 0; }
.awwfis-form-textarea { resize: vertical; min-height: 120px; font-family: inherit; }

.awwfis-form-notice {
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius);
    font-size: 14px;
    margin-bottom: var(--space-4);
}
.awwfis-form-notice--success { background: rgba(74,222,128,0.1); border: 1px solid #4ade80; color: #4ade80; }
.awwfis-form-notice--error { background: rgba(248,113,113,0.1); border: 1px solid #f87171; color: #f87171; }

.awwfis-about-faq { padding-top: var(--space-8); }
.awwfis-about-faq__accordion { max-width: 760px; margin: var(--space-6) auto 0; }

@media (max-width: 900px) {
    .awwfis-value-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .awwfis-contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .awwfis-value-grid { grid-template-columns: 1fr; }
}
