
:root {
    --stw-red: #D83434;
    --stw-cream: #FFF7EC;
    --stw-cream-deep: #FDE7CF;
    --stw-cream-soft: #FFF9F1;
    --stw-brown: #5A3524;
    --stw-gold: #D6A84E;
    --stw-cinnamon: #B5563C;

    --stw-text-main: #432318;
    --stw-text-muted: #8A5C48;

    --stw-radius-lg: 24px;
    --stw-radius-md: 16px;
    --stw-radius-sm: 10px;

    --stw-shadow-soft: 0 18px 38px rgba(201, 140, 93, 0.25);
    --stw-shadow-subtle: 0 10px 22px rgba(180, 120, 78, 0.18);
}

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

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Quicksand", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 197, 173, 0.45), transparent 55%),
        radial-gradient(circle at bottom right, rgba(255, 230, 185, 0.55), transparent 55%),
        var(--stw-cream-soft);
    color: var(--stw-text-main);
}

body.stw-no-scroll {
    overflow: hidden;
}

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

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

/* Layout */
.stw-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* HEADER + LOGO
   ===================================================== */

.stw-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(16px);
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.96), rgba(255, 247, 236, 0.96));
    border-bottom: 1px solid rgba(214, 168, 78, 0.35);
    box-shadow: 0 8px 18px rgba(210, 150, 100, 0.15);
    overflow: visible;
    padding-bottom: 40px;   /* try 40px instead of 80px */
}
.stw-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 0.7rem 0.2rem;
}

/* wrapper that holds logo + text */
.stw-logo-wrap {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 130px; /* room for logo so text doesn’t overlap */
}

/* reserves horizontal space but NO height for the overlapping logo */
.stw-logo-badge-slot {
    position: relative;
    width: 260px;
    height: 0;
}

/* the big overlapping logo */
.stw-logo-badge {
    position: absolute;
    left: -60px;
    top: 100%;                 /* anchor to the bottom of the header line */
    transform: translateY(-20%);  /* tweak this % to move logo up/down */
    height: 210px;
    width: auto;
    display: block;
    z-index: 5;
    filter: drop-shadow(0 10px 18px rgba(150, 90, 50, 0.35));
}

.stw-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-left: 8px;
}

.stw-logo-title {
    font-family: "Playfair Display", serif;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    color: var(--stw-brown);
}

.stw-logo-tagline {
    font-size: 0.75rem;
    color: var(--stw-text-muted);
}

/* nav links + cart */
.stw-nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.9rem;
}

.stw-nav-links a {
    position: relative;
    padding-bottom: 0.1rem;
    color: var(--stw-text-muted);
}

.stw-nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--stw-gold), var(--stw-red));
    transition: width 0.2s ease-out;
}

.stw-nav-links a:hover {
    color: var(--stw-text-main);
}

.stw-nav-links a:hover::after {
    width: 100%;
}

.stw-cart-button {
    border: none;
    background: rgba(216, 52, 52, 0.09);
    color: var(--stw-text-main);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(180, 120, 78, 0.2);
}

.stw-cart-button:hover {
    background: rgba(216, 52, 52, 0.16);
}

.stw-cart-icon {
    font-size: 1.05rem;
}

.stw-cart-count {
    background: var(--stw-red);
    border-radius: 999px;
    min-width: 18px;
    padding: 0 0.35rem;
    font-size: 0.7rem;
    color: #fff;
}

/* HERO
   ===================================================== */

.stw-hero {
    padding-top: 1.2rem;       /* ← change only this part */
    padding-bottom: 3.2rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.stw-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.4rem;
    align-items: center;
}

.stw-hero-text h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 3vw, 3rem);
    margin: 0.4rem 0 0.8rem;
    color: var(--stw-brown);
}

.stw-hero-kicker {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--stw-red);
}

.stw-hero-subtext {
    font-size: 0.95rem;
    color: var(--stw-text-muted);
    max-width: 34rem;
}

.stw-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 1.4rem 0 0.9rem;
}

/* Buttons */
.stw-btn {
    border-radius: 999px;
    padding: 0.65rem 1.4rem;
    border: 1px solid transparent;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    font-weight: 600;
}

.stw-btn-primary {
    background: linear-gradient(135deg, var(--stw-red), var(--stw-cinnamon));
    border-color: rgba(162, 64, 40, 0.5);
    color: #fff;
    box-shadow: var(--stw-shadow-soft);
}

.stw-btn-primary:hover {
    filter: brightness(1.05);
}

.stw-btn-ghost {
    background: #ffffff;
    border-color: rgba(210, 150, 100, 0.5);
    color: var(--stw-brown);
    box-shadow: var(--stw-shadow-subtle);
}

.stw-btn-ghost:hover {
    background: #fff7ee;
}

.stw-btn-small {
    padding: 0.45rem 1.1rem;
    font-size: 0.8rem;
}

.stw-btn-block {
    width: 100%;
}

.stw-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.4rem;
}

.stw-hero-badges span {
    font-size: 0.75rem;
    padding: 0.1rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(210, 150, 100, 0.35);
    background: rgba(255, 250, 241, 0.95);
    color: var(--stw-text-muted);
}

/* HERO CARDS
   ===================================================== */

.stw-hero-showcase {
    position: relative;
}

.stw-hero-card {
    background: linear-gradient(145deg, #FFFFFF, #FFEFE0);
    border-radius: var(--stw-radius-lg);
    padding: 1.2rem 1.4rem;
    border: 1px solid rgba(214, 168, 78, 0.45);
    box-shadow: var(--stw-shadow-soft);
    position: relative;
}

.stw-hero-card-main {
    min-height: 260px;
}

.stw-hero-card-image {
    height: 160px;
    border-radius: 18px;
    background:
        linear-gradient(120deg, rgba(216, 52, 52, 0.3), transparent),
        radial-gradient(circle at 20% 20%, rgba(214, 168, 78, 0.4), transparent 60%),
        url("https://images.pexels.com/photos/4110097/pexels-photo-4110097.jpeg?auto=compress&cs=tinysrgb&w=1200") center / cover no-repeat;
    margin-bottom: 0.9rem;
    position: relative;
    overflow: hidden;
}

.stw-shimmer::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -40%;
    width: 40%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.55), transparent 60%);
    transform: translateX(-100%) skewX(-18deg);
    animation: stw-shimmer 3s infinite;
}

@keyframes stw-shimmer {
    0% { transform: translateX(-140%) skewX(-18deg); }
    60% { transform: translateX(260%) skewX(-18deg); }
    100% { transform: translateX(260%) skewX(-18deg); }
}

.stw-hero-card-content h2 {
    font-size: 1.15rem;
    margin: 0 0 0.4rem;
    color: var(--stw-brown);
}

.stw-hero-card-content p {
    font-size: 0.9rem;
    color: var(--stw-text-muted);
}

.stw-hero-card-stack {
    position: absolute;
    right: -10%;
    width: 70%;
    max-width: 260px;
    background: linear-gradient(145deg, #FFFFFF, #FFEFE0);
}

.stw-hero-card-top {
    top: -16%;
}

.stw-hero-card-bottom {
    bottom: -18%;
}

.stw-hero-card-stack h3 {
    margin: 0 0 0.3rem;
    font-size: 0.95rem;
    color: var(--stw-brown);
}

.stw-hero-card-stack p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--stw-text-muted);
}

/* FLOATING SPRINKLES */
.stw-floating-sprinkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.stw-floating-sprinkles span {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0.25;
    color: rgba(216, 52, 52, 0.45);
    animation: stw-float 10s linear infinite;
}

.stw-floating-sprinkles span:nth-child(1) { left: 8%; top: 16%; animation-delay: 0s; }
.stw-floating-sprinkles span:nth-child(2) { right: 4%; top: 8%; animation-delay: 2.5s; }
.stw-floating-sprinkles span:nth-child(3) { left: 18%; bottom: 12%; animation-delay: 4.5s; }
.stw-floating-sprinkles span:nth-child(4) { right: 12%; bottom: 6%; animation-delay: 6.5s; }

@keyframes stw-float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

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

.stw-section {
    padding: 2.3rem 0 2.8rem;
}

.stw-section-header {
    text-align: center;
    max-width: 640px;
}

.stw-section-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
    color: var(--stw-brown);
}

.stw-section-header p {
    margin-top: 0;
    font-size: 0.95rem;
    color: var(--stw-text-muted);
    margin-left: auto;
    margin-right: auto;
}

.stw-section-treats {
    background: radial-gradient(circle at top, rgba(255, 215, 196, 0.6), transparent 60%);
}

/* PRODUCTS */
/* PRODUCT GRID
   ===================================================== */
.stw-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 columns on desktop */
    gap: 1.8rem;
    align-items: stretch;
}

/* make sure nothing is clipping the grid */
.stw-section-treats,
.stw-section-treats .stw-container {
    overflow: visible;
}

/* each card just lives in one grid cell */
.stw-product-card {
    display: flex;
    flex-direction: column;
    background: #fffdf8;
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(190, 120, 70, 0.18);
    overflow: hidden;
}

/* image area on top */
.stw-product-image-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

/* content area */
.stw-product-content {
    padding: 1rem 1.25rem 1.2rem;
}

/* responsive breakpoints */
@media (max-width: 960px) {
    .stw-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .stw-grid {
        grid-template-columns: 1fr;
    }
}

/* ABOUT */
.stw-section-about {
    background: radial-gradient(circle at top, rgba(255, 237, 209, 0.9), transparent 65%);
}

.stw-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
    gap: 2rem;
    margin-top: 1.8rem;
}

.stw-about-card {
    background: #FFFFFF;
    border-radius: var(--stw-radius-lg);
    border: 1px solid rgba(214, 168, 78, 0.4);
    padding: 1.4rem 1.5rem;
    box-shadow: var(--stw-shadow-subtle);
}

.stw-about-card h3 {
    margin-top: 0;
    margin-bottom: 0.7rem;
    color: var(--stw-brown);
}

.stw-about-card ul {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.9rem;
    color: var(--stw-text-muted);
}

/* ORDER */
.stw-section-order {
    background: radial-gradient(circle at top, rgba(255, 235, 205, 0.9), transparent 75%);
}

.stw-order-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.3rem;
    margin-top: 1.6rem;
}

.stw-order-card {
    background: #FFFFFF;
    border-radius: var(--stw-radius-md);
    padding: 1rem 1.1rem;
    border: 1px solid rgba(214, 168, 78, 0.38);
    box-shadow: var(--stw-shadow-subtle);
    position: relative;
}

.stw-order-step {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--stw-gold), var(--stw-red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff9f1;
}

.stw-order-card h3 {
    margin-top: 0.2rem;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
    color: var(--stw-brown);
}

.stw-order-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--stw-text-muted);
}

/* FOOTER */
.stw-footer {
    border-top: 1px solid rgba(214, 168, 78, 0.35);
    padding: 1.3rem 0 1.6rem;
    background: #FFF8F2;
}

.stw-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--stw-text-muted);
}

.stw-footer-payments {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.stw-footer-payments span:first-child {
    color: var(--stw-text-main);
    font-weight: 600;
}

.stw-footer-credit {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stw-heart {
    color: var(--stw-red);
}

/* CART PANEL */
.stw-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease-out;
    z-index: 49;
}

.stw-cart-overlay-show {
    opacity: 1;
    pointer-events: auto;
}

.stw-cart-panel {
    position: fixed;
    top: 0;
    right: -360px;
    width: 340px;
    max-width: 90%;
    height: 100%;
    background: #FFF9F1;
    border-left: 1px solid rgba(214, 168, 78, 0.6);
    box-shadow: -14px 0 34px rgba(150, 100, 60, 0.35);
    display: flex;
    flex-direction: column;
    z-index: 50;
    transition: right 0.25s ease-out;
}

.stw-cart-open {
    right: 0;
}

.stw-cart-header {
    padding: 1rem 1.1rem 0.6rem;
    border-bottom: 1px solid rgba(210, 150, 100, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stw-cart-header h2 {
    font-size: 1.05rem;
    margin: 0;
    color: var(--stw-brown);
}

.stw-cart-close {
    border: none;
    background: transparent;
    color: var(--stw-text-main);
    font-size: 1.4rem;
    cursor: pointer;
}

.stw-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 0.6rem 1.1rem 0.5rem;
}

.stw-cart-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.stw-cart-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.85rem;
    padding: 0.4rem 0;
    border-bottom: 1px dashed rgba(210, 150, 100, 0.35);
}

.stw-cart-item-main {
    display: flex;
    flex-direction: column;
}

.stw-cart-item-name {
    font-weight: 600;
    color: var(--stw-brown);
}

.stw-cart-item-meta {
    color: var(--stw-text-muted);
}

.stw-cart-item-actions {
    text-align: right;
}

.stw-cart-item-line {
    font-weight: 600;
    color: var(--stw-red);
    display: block;
}

.stw-cart-remove {
    border: none;
    background: transparent;
    color: var(--stw-text-muted);
    font-size: 0.75rem;
    cursor: pointer;
}

.stw-cart-empty {
    text-align: center;
    color: var(--stw-text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.stw-cart-footer {
    padding: 0.6rem 1.1rem 1rem;
    border-top: 1px solid rgba(210, 150, 100, 0.3);
    background: #FFF4EA;
}

.stw-cart-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
}

.stw-cart-total-row span:last-child {
    font-weight: 700;
    color: var(--stw-red);
}

/* CHECKOUT MODAL */
.stw-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 60;
}

.stw-modal-show {
    display: block;
}

.stw-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.stw-modal-dialog {
    position: relative;
    max-width: 520px;
    margin: 4vh auto;
    background: #FFFFFF;
    border-radius: 18px;
    padding: 1.4rem 1.5rem 1.6rem;
    border: 1px solid rgba(214, 168, 78, 0.65);
    box-shadow: 0 24px 50px rgba(150, 100, 60, 0.45);
}

.stw-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    color: var(--stw-text-main);
    font-size: 1.4rem;
    cursor: pointer;
}

.stw-modal h2 {
    margin: 0 0 0.4rem;
    font-family: "Playfair Display", serif;
    color: var(--stw-brown);
}

.stw-modal-intro {
    font-size: 0.9rem;
    color: var(--stw-text-muted);
}

.stw-modal-section {
    margin-top: 0.9rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(210, 150, 100, 0.35);
}

.stw-modal-section h3 {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
    color: var(--stw-brown);
}

.stw-checkout-items {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
}

.stw-checkout-item {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) auto auto;
    gap: 0.3rem 0.7rem;
    padding: 0.3rem 0;
}

.stw-checkout-name {
    font-weight: 600;
    color: var(--stw-brown);
}

.stw-checkout-meta {
    color: var(--stw-text-muted);
}

.stw-checkout-line {
    text-align: right;
    color: var(--stw-red);
    font-weight: 600;
}

.stw-checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.4rem;
    font-size: 0.9rem;
}

.stw-checkout-total span:last-child {
    font-weight: 700;
    color: var(--stw-red);
}

.stw-modal-note {
    font-size: 0.8rem;
    color: var(--stw-text-muted);
}

.stw-pay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.7rem;
    margin-top: 0.4rem;
}

.stw-pay-card {
    border-radius: 14px;
    padding: 0.75rem 0.8rem;
    background: #FFF7EE;
    border: 1px solid rgba(214, 168, 78, 0.6);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.8rem;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.15s ease-out;
}

.stw-pay-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--stw-shadow-subtle);
    border-color: var(--stw-red);
}

.stw-pay-label {
    font-weight: 700;
    color: var(--stw-brown);
}

.stw-pay-text {
    color: var(--stw-text-muted);
}

/* FADE IN ON SCROLL */
.stw-fade-in {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.stw-fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .stw-hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .stw-hero-showcase {
        margin-top: 1.4rem;
    }

    .stw-hero-card-stack {
        position: static;
        width: 100%;
        max-width: none;
        margin-top: 0.8rem;
    }
}

@media (max-width: 720px) {
    .stw-nav-links {
        display: none;
    }

    .stw-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .stw-container {
        padding: 0 1.1rem;
    }

    .stw-hero {
        padding-top: 2rem;
    }

    .stw-modal-dialog {
        margin: 6vh 1rem;
    }

    .stw-about-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
.stw-product-badge-soldout {
    background: rgba(216, 52, 52, 0.98);
    color: #fff7ec;
    right: 12px;
    left: auto;
}
/* In your style.css */
.stw-checkout-details {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.stw-checkout-details.stw-checkout-show {
    display: block;
}

.stw-order-form .stw-field {
    margin-bottom: 0.75rem;
}

.stw-order-form input,
.stw-order-form textarea {
    width: 100%;
    padding: 0.4rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.35);
    color: #fff;
}
/* Cart panel base (you likely already have some of this) */
.stw-cart-panel {
  max-width: 420px;
  width: 100%;
  background: #fff7ec;
  box-shadow: 0 0 20px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
}

.stw-cart-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f1d6bf;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stw-cart-header h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #5c2b1a;
}

.stw-cart-close {
  background: transparent;
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  color: #b8573f;
}

/* Cart body */
.stw-cart-body {
  padding: 1rem 1.25rem 0.75rem;
  flex: 1 1 auto;
  overflow-y: auto;
}

.stw-cart-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.stw-cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.5rem 0;
  border-bottom: 1px dashed #f0cfb5;
}

.stw-cart-item-name {
  font-weight: 600;
  color: #5c2b1a;
}

.stw-cart-item-meta {
  font-size: 0.85rem;
  color: #8a5a43;
}

.stw-cart-item-actions {
  text-align: right;
  font-size: 0.9rem;
}

.stw-cart-item-line {
  display: block;
  color: #b8573f;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.stw-cart-remove {
  border: none;
  background: transparent;
  cursor: pointer;
  color: #c46a50;
  font-size: 1rem;
}

.stw-cart-empty {
  text-align: center;
  padding: 1rem 0 0.5rem;
  font-size: 0.9rem;
  color: #c0a18c;
}

/* Footer total bar */
.stw-cart-footer {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid #f1d6bf;
  background: rgba(255, 244, 232, 0.95);
}

.stw-cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
  color: #5c2b1a;
}

/* Buyer info area */
.stw-checkout-details {
  padding: 1rem 1.25rem 1.25rem;
  background: #fff1e1;
  border-top: 1px solid #f1d6bf;
}

.stw-checkout-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: #5c2b1a;
}

/* Form fields */
.stw-order-form .stw-field {
  margin-bottom: 0.7rem;
}

.stw-order-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6a3720;
  margin-bottom: 0.25rem;
}

.stw-order-form input,
.stw-order-form textarea {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #e4c3aa;
  padding: 0.45rem 0.5rem;
  font-size: 0.9rem;
  background: #fffdf9;
  color: #5c2b1a;
  box-sizing: border-box;
}

.stw-order-form input::placeholder,
.stw-order-form textarea::placeholder {
  color: #c29b80;
}

.stw-order-form textarea {
  resize: vertical;
}

/* Primary button */
.stw-btn-primary,
.stw-checkout-btn {
  border: none;
  cursor: pointer;
  padding: 0.55rem 0.75rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, #c84732, #e8643b);
}

.stw-btn-block {
  width: 100%;
  display: block;
  margin-top: 0.35rem;
}

/* Make empty text disappear when items are present */
.stw-cart-empty.hidden {
  display: none;
}

