:root {
    --shivi-orange: #ff9933;
    --shivi-green: #138a42;
    --shivi-dark: #2b1a08;
    --shivi-cream: #fff8ec;
    --shivi-border: #f0d2aa;
    --shivi-muted: #6d5a43;
}

.smw-hero {
    position: relative;
    padding: 34px 28px 28px;
    border-radius: 28px;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(103, 57, 0, 0.74), rgba(103, 57, 0, 0.34)),
        linear-gradient(135deg, rgba(255, 153, 51, 0.98), rgba(255, 205, 107, 0.95)),
        url("https://www.jotform.com/uploads/pglprofit9/form_files/unnamed_16f70ddd0034e7f6a20c03f693b90b8e.jpg");
    background-size: cover;
    background-position: center;
    box-shadow: 0 18px 45px rgba(120, 72, 24, 0.14);
}

.smw-hero h1 {
    color: #ffffff;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.07;
    letter-spacing: -0.7px;
}

.smw-hero p {
    color: rgba(255, 255, 255, 0.94);
    max-width: 780px;
}

.smw-hero .smw-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
    margin-bottom: 14px;
}

.smw-notice {
    background: linear-gradient(135deg, #fff8ed, #ffffff);
    border: 1px solid var(--shivi-border);
    border-radius: 20px;
    padding: 18px;
    margin: 22px 0;
}

.smw-notice h2 {
    color: #0066cc;
    font-size: 20px;
}

.smw-notice p {
    color: var(--shivi-muted);
    margin: 7px 0;
}

.smw-policy-bar {
    gap: 12px;
    margin: 18px 0 24px;
}

.smw-policy-bar .wp-block-column {
    padding: 14px;
    border: 1px solid rgba(19, 138, 66, 0.16);
    background: #f3fff7;
    border-radius: 16px;
    font-weight: 700;
    color: #0c6b31;
    text-align: center;
    font-size: 14px;
}

.smw-checkout-box,
.smw-whatsapp-box {
    background: linear-gradient(135deg, #fff8ed, #ffffff);
    border: 1px solid var(--shivi-border);
    border-radius: 22px;
    padding: 20px;
    margin: 18px 0;
    box-shadow: 0 10px 28px rgba(126, 75, 8, 0.07);
}

.smw-checkout-box h3,
.smw-whatsapp-box h2 {
    margin-top: 0;
    color: var(--shivi-dark);
}

.smw-policy-note {
    background: #f3fff7;
    border: 1px solid rgba(19, 138, 66, 0.18);
    color: #0c6b31;
    padding: 11px 12px;
    border-radius: 14px;
    font-weight: 700;
}

.smw-fulfilment-method .woocommerce-input-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.smw-fulfilment-method label.radio {
    display: block;
    border: 1px solid #e5c89c;
    border-radius: 15px;
    padding: 14px;
    background: #fffdf9;
    font-weight: 800;
    cursor: pointer;
    text-align: center;
}

.smw-fulfilment-method input[type="radio"]:checked + label,
.smw-fulfilment-method label.radio.smw-selected,
.smw-fulfilment-method label.radio:has(input[type="radio"]:checked) {
    border-color: var(--shivi-green);
    background: #f0fff5;
    color: #0c6b31;
    box-shadow: 0 0 0 4px rgba(19, 138, 66, 0.12);
}

.smw-delivery-message {
    padding: 12px;
    border-radius: 14px;
    background: #fff8ed;
    color: var(--shivi-muted);
    font-weight: 700;
}

.smw-whatsapp-button {
    background: #25D366 !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    padding: 12px 20px !important;
    text-decoration: none !important;
    font-weight: 800 !important;
}

.woocommerce ul.products li.product {
    border: 1px solid var(--shivi-border);
    border-radius: 22px;
    padding: 16px !important;
    box-shadow: 0 10px 28px rgba(126, 75, 8, 0.09);
    background: #ffffff;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(126, 75, 8, 0.14);
}

.woocommerce ul.products li.product img {
    border-radius: 16px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #d97000;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.25;
}

.woocommerce ul.products li.product .price {
    color: #0c6b31;
    font-weight: 900;
    font-size: 22px;
}

.woocommerce ul.products li.product .button {
    width: 100%;
    text-align: center;
    border-radius: 16px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.woocommerce-checkout-review-order-table,
.woocommerce-cart-form,
.cart_totals {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(126, 75, 8, 0.07);
}

@media (max-width: 700px) {
    .smw-hero {
        padding: 24px 16px 22px;
        border-radius: 0;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .smw-hero h1 {
        font-size: clamp(24px, 8vw, 34px);
    }

    .smw-notice {
        padding: 15px;
        border-radius: 18px;
    }

    .smw-policy-bar {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .smw-fulfilment-method .woocommerce-input-wrapper {
        grid-template-columns: 1fr;
    }

    .smw-checkout-box,
    .smw-whatsapp-box {
        border-radius: 18px;
        padding: 16px;
    }

    .woocommerce ul.products {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .woocommerce ul.products li.product {
        width: 100% !important;
        margin: 0 !important;
        border-radius: 18px;
    }

    .woocommerce ul.products li.product img {
        max-height: 205px;
        width: 100%;
    }
}
