:root {
    /* Brand */
    --color-primary: #E2690E;
    --color-primary-hover: #C85D0B;
    --color-primary-light: rgba(226, 105, 14, .08);

    /* Surfaces */
    --color-bg: #FEFCE8;
    --color-surface: #FFFFFF;
    --color-surface-warm: #FEFDE8;

    /* Dark olive */
    --color-dark: #29371C;
    --color-dark-light: #435336;

    /* Borders */
    --color-border: rgba(41, 55, 28, .12);
    --color-border-strong: rgba(41, 55, 28, .20);

    /* Text */
    --color-text: #29371C;
    --color-text-light: rgba(41, 55, 28, .7);
    --color-text-muted: rgba(41, 55, 28, .45);

    /* Feedback */
    --color-success: #16A34A;
    --color-success-bg: rgba(22, 163, 74, .08);

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, .04);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, .08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .10);
    --shadow-glow: 0 0 0 3px rgba(226, 105, 14, .2);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 999px;

    /* Timing */
    --transition: all .3s ease;
    --ease: cubic-bezier(.4, 0, .2, 1);

    /* Typography */
    --font-heading: "Ranade Light", sans-serif;
    --font-body: "Ranade Light", sans-serif;

    /* Layout */
    --container-max: 1400px;
    --section-pad: 80px;
}

/* ==========================================================================
   BASE
   ========================================================================== */

.csp *,
.csp *::before,
.csp *::after {
    box-sizing: border-box;
}

.wp-singular.product-template-default.single.single-product {
    background-color: var(--color-bg);
    font-family: var(--font-body);
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* .wp-singular.product-template-default.single.single-product::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/honey_pattern.png');
    background-size: 400px;
    background-repeat: repeat;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
} */

.csp__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--section-pad) 40px;
}

/* ==========================================================================
   PRODUCT TOP — Two Columns
   ========================================================================== */

.csp__top {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

/* ---------- GALLERY — stacked: main image + thumbs below ---------- */

.csp__gallery {
    width: 48%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 100px;
}

/* Thumbnails — horizontal row below main image */
.csp__gallery-thumbs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.csp__gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.csp__thumb {
    display: block;
    width: 78px;
    height: 78px;
    padding: 0;
    margin: 3px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    background: var(--color-surface);
    transition: var(--transition);
    outline: none;
    flex-shrink: 0;
}

.csp__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: var(--color-bg);
}

.csp__thumb:hover {
    border-color: var(--color-primary);
    background-color: transparent !important;
}

.csp__thumb.active {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
    background-color: transparent !important;
}

.csp__thumb:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Main image */
.csp__gallery-main {
    flex: 1;
    min-width: 0;
}

.csp__gallery-main-inner {
    /* background: var(--color-surface); */
    border-radius: var(--radius-lg);
    overflow: hidden;
    /* box-shadow: var(--shadow-md); */
    aspect-ratio: 1/1;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.csp__gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-primary);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-dark);
    transition: var(--transition);
    z-index: 10;
    opacity: 0;
}

.csp__gallery-main-inner:hover .csp__gallery-arrow {
    opacity: 1;
}

.csp__gallery-arrow:hover {
    background: var(--color-primary);
    color: var(--color-surface);
    border-color: var(--color-primary);
}

.csp__arrow-prev {
    left: 10px;
}

.csp__arrow-next {
    right: 10px;
}

.csp__main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--color-bg);
    display: block;
    transition: opacity .18s ease, transform .5s var(--ease);
}

.csp__gallery-main-inner:hover .csp__main-img {
    transform: scale(1.05);
}

/* ---------- PRODUCT INFO ---------- */

.csp__info {
    width: 52%;
    min-width: 0;
    padding-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* Category */
.csp__category {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.csp__category a {
    color: var(--color-primary);
    text-decoration: none;
}

.csp__category a:hover {
    text-decoration: underline;
}

/* Title */
.csp__title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-dark);
    margin: 0;
}

.csp__group.csp__group__title {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Short description */
.csp__short-desc {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 150%;
    color: var(--color-dark);
    margin-bottom: 0;
    /* max-width: 90%; */
}

.csp__short-desc p {
    margin: 0 0 12px 0;
}

.csp__short-desc p:last-child {
    margin-bottom: 0;
}

/* Rating */
.csp__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.csp__rating-average {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
}

.csp__rating-stars {
    display: flex;
    gap: 2px;
    color: var(--color-primary);
    font-size: 20px;
}

.csp__rating-count {
    font-size: 18px;
    color: var(--color-dark);
    text-decoration: none;
}

.csp__rating-count:hover {
    color: var(--color-primary);
}

/* Price */
.csp__price,
.csp__varprice {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 4px;
}

.csp__price .price,
.csp__current-price,
.csp__varprice .price ins {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--color-dark);
    text-decoration: none;
    line-height: 1;
}

.csp__old-price,
.csp__varprice .price del,
.csp__price .price del {
    font-size: 24px;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.csp__save-badge {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
}

/* Tax Info */
.csp__tax-info {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 0;
}

/* ==========================================================================
   CART AREA — Variations / Quantity / Buttons
   ========================================================================== */

.csp__cart-area {
    margin-bottom: 24px;
}

/* Variations table */
.csp__cart-area .variations {
    width: 100%;
    border: none !important;
    margin-bottom: 0;
}

.csp__cart-area .variations tbody,
.csp__cart-area .variations tr,
.csp__cart-area .variations th,
.csp__cart-area .variations td,
.csp__cart-area .single_variation_wrap {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0;
}

.csp__cart-area .variations tbody {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.csp__cart-area .variations tr {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.csp__cart-area .variations td.label,
.csp__cart-area .variations th.label {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--color-text);
    text-align: left;
    display: block;
    margin-bottom: 0;
}

.csp__cart-area .variations td.label label,
.csp__cart-area .variations th.label label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-dark);
}

/* Hide native select entirely */
.csp__cart-area .variations select {
    display: none !important;
}

/* Hide default WC controls & Clear / Reset link */
.csp__cart-area .reset_variations,
.csp__cart-area .woocommerce-variation-price,
.csp__cart-area .single_variation,
.csp__cart-area .woocommerce-variation-availability {
    display: none !important;
}

/* Hide variable product price range — variation price shown via JS */
.csp__price[data-type="variable"]>.price {
    display: none;
}



/* Screen-reader-only — hides native select while keeping accessible */
.csp__sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Custom variation pill buttons */
.csp__var-pills {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.csp__var-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 48px;
    padding: 0 16px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-dark);
    background: var(--color-bg);
    cursor: pointer;
    transition: var(--transition);
    outline: none;
    text-transform: lowercase;
}

.csp__var-pill:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
    color: var(--color-dark);
}

.csp__var-pill.active {
    background: rgb(226 105 14 / 5%);
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.csp__var-pill:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.theme-astra table.variations td.value {
    padding: 0 !important;
}

.theme-astra.cfvsw-product-page tr th.label {
    padding: 0 !important;
}

/* ---------- QUANTITY ---------- */

.csp__cart-area .quantity {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.csp__cart-area .quantity::before {
    content: "Quantity";
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.csp__qty-wrap {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    height: 48px;
    background: var(--color-bg);
    transition: var(--transition);
    width: fit-content;
}

.csp__qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 100%;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--color-text-light);
    transition: var(--transition);
}

.csp__qty-btn svg {
    width: 18px;
    height: 18px;
}

.csp__qty-btn:hover {
    background: transparent;
    color: var(--color-primary);
}

.csp__qty-btn:active {
    background: transparent;
    transform: scale(.9);
}

.csp__cart-area input.qty {
    width: 64px;
    height: 100%;
    text-align: center;
    border: none;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    background: transparent;
    outline: none;
    -moz-appearance: textfield;
}

.csp__cart-area input.qty::-webkit-outer-spin-button,
.csp__cart-area input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ---------- CTA BUTTONS ---------- */

.csp__cart-area .single_variation_wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.csp__cart-area .woocommerce-variation-add-to-cart {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.csp__cart-area form.cart {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.csp__buttons-wrap {
    display: flex;
    gap: 24px;
    width: 100%;
}

.csp__buy-now,
.csp__cart-area .single_add_to_cart_button,
.csp__cart-area .button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    border: none !important;
    border-radius: var(--radius-lg) !important;
    font-family: var(--font-body) !important;
    font-size: 18px !important;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0 !important;
}

.csp__buy-now {
    background: var(--color-primary);
    color: var(--color-surface);
}

.csp__buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(226, 105, 14, .25);
    background: transparent !important;
    border: 1px solid var(--color-primary) !important;
    color: var(--color-primary) !important;
}

.csp__cart-area .single_add_to_cart_button,
.csp__cart-area .button {
    background: var(--color-bg);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-weight: 500 !important;
}

.csp__cart-area .single_add_to_cart_button {
    background-color: var(--color-bg) !important;
    border: 1px solid var(--color-primary) !important;
    color: var(--color-primary) !important;
}

.csp__cart-area .single_add_to_cart_button:hover,
.csp__cart-area .button:hover {
    background: var(--color-primary);
    color: var(--color-surface);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(226, 105, 14, .25);
}

.csp__cart-area .single_add_to_cart_button:hover {
    background-color: var(--color-primary) !important;
    color: var(--color-surface) !important;
}

.csp__buy-now:active,
.csp__cart-area .single_add_to_cart_button:active,
.csp__cart-area .button:active {
    transform: translateY(0);
}

.csp__buy-now:focus-visible,
.csp__cart-area .single_add_to_cart_button:focus-visible,
.csp__cart-area .button:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

/* Variation price */
.csp__cart-area .woocommerce-variation-price {
    margin-bottom: 4px;
}

/* ==========================================================================
   TRUST BADGES
   ========================================================================== */

.csp__trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 28px 0 0;
    border-top: 1px solid var(--color-border);
}

.csp__trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
    padding: 0 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.csp__trust-item svg {
    width: 26px;
    height: 26px;
    color: var(--color-dark-light);
    transition: color .3s ease;
}

.csp__trust-item:hover svg {
    color: var(--color-primary);
}

.csp__trust-item span {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-light);
    line-height: 1.3;
}

/* ==========================================================================
   ACCORDION
   ========================================================================== */

.csp__accordion-section {
    margin-top: 0;
    width: 100%;
    border-top: 1px solid var(--color-border);
}

.csp__accordion-item {
    border-bottom: 1px solid var(--color-border);
}

.csp__accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 16px 0 !important;
    cursor: pointer;
    text-align: left;
    box-shadow: none !important;
}

.csp__accordion-header:hover,
.csp__accordion-header:focus,
.csp__accordion-header:active,
.csp__accordion-item.active .csp__accordion-header {
    background: transparent !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.csp__accordion-title {
    font-family: "Ranade Light", sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0 !important;
    color: var(--color-dark);
}

.csp__accordion-icon {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1;
    transition: transform 0.3s var(--ease);
}

.csp__accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.csp__accordion-content-inner {
    padding: 0;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.85;
    color: var(--color-text-light);
}

.csp__accordion-content-inner h2 {
    display: none;
    /* Hide default WC tab titles */
}

.csp__accordion-content-inner p {
    margin-bottom: 18px;
    margin-top: 0 !important;
}

.csp__accordion-content-inner ul,
.csp__accordion-content-inner ol {
    padding-left: 22px;
    margin-bottom: 18px;
}

.csp__accordion-content-inner li {
    margin-bottom: 10px;
}

.csp__accordion-content-inner strong {
    color: var(--color-dark);
    font-weight: 600;
}

/* Additional info table in Accordion */
.csp__accordion-content-inner .shop_attributes {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 8px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.csp__accordion-content-inner .shop_attributes th,
.csp__accordion-content-inner .shop_attributes td {
    padding: 14px 20px !important;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    font-size: 15px;
    font-style: normal !important;
}

.csp__accordion-content-inner .shop_attributes th {
    width: 35% !important;
    font-weight: 500 !important;
    color: var(--color-text-light);
    text-align: left !important;
    background: rgba(0, 0, 0, 0.04);
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.csp__accordion-content-inner .shop_attributes thead th,
.csp__accordion-content-inner .shop_attributes thead td {
    font-weight: 600 !important;
    color: var(--color-dark);
    background: rgba(0, 0, 0, 0.04);
}

.csp__accordion-content-inner .shop_attributes th p,
.csp__accordion-content-inner .shop_attributes td p {
    padding: 0 0 !important;
}

.csp__accordion-content-inner .shop_attributes td {
    color: var(--color-dark);
}

.csp__accordion-content-inner .shop_attributes td p,
.csp__accordion-content-inner .shop_attributes td a {
    margin: 0;
    font-style: normal !important;
    text-decoration: none;
    color: var(--color-dark);
}

/* ==========================================================================
   CUSTOMER REVIEWS
   ========================================================================== */

.csp__reviews-section {
    margin: 80px auto 0;
}

.csp__reviews-title {
    font-family: "Ranade Light", sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 32px;
}

.csp__reviews-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.csp__reviews-summary-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.csp__reviews-average {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1;
}

.csp__reviews-stars {
    display: flex;
    gap: 2px;
}

.csp__reviews-count {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text-light);
}

/* Review Cards */
.csp__reviews-content .woocommerce-Reviews-title {
    display: none;
    /* Hide default WC title */
}

#csp-reviews-sort {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
}

.csp__reviews-content #comments .commentlist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.csp__reviews-content #comments .commentlist li.review {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(41, 55, 28, .08);
    padding: 24px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.csp__reviews-content #comments .commentlist li.review:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.csp__reviews-content #comments .comment_container {
    display: flex;
    gap: 16px;
}

.csp__reviews-content #comments .comment_container img.avatar {
    border-radius: 50%;
    width: 48px;
    height: 48px;
}

.csp__reviews-content .comment-text {
    flex: 1;
}

.csp__reviews-content .star-rating {
    float: right;
    color: var(--color-primary);
    font-size: 14px;
}

.csp__reviews-content .meta {
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-light);
}

.csp__reviews-content .meta strong {
    color: var(--color-dark);
    font-weight: 600;
    font-size: 16px;
}

.csp__reviews-content .description {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-light);
}

.csp__reviews-content .description p {
    margin: 0;
}

/* Review Form */
.csp__reviews-content #review_form_wrapper {
    margin-top: 48px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(41, 55, 28, .08);
    padding: 32px;
}

.csp__reviews-content #review_form input[type="text"],
.csp__reviews-content #review_form input[type="email"],
.csp__reviews-content #review_form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color .2s ease;
    margin-bottom: 16px;
}

.csp__reviews-content #review_form input:focus,
.csp__reviews-content #review_form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.csp__reviews-content #review_form .form-submit input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    border: none;
    border-radius: var(--radius-pill);
    background: var(--color-primary);
    color: var(--color-surface);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.csp__reviews-content #review_form .form-submit input[type="submit"]:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226, 105, 14, .2);
}

/* ==========================================================================
   RELATED PRODUCTS
   ========================================================================== */

.csp__related-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--color-border);
}

.csp__related-section .related.products>h2,
.csp__related-section section.related>h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 44px;
    letter-spacing: -.01em;
}

.csp__related-section ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: stretch;
}

.csp__related-section ul.products li.product {
    background: transparent;
    border-radius: 0;
    padding: 0;
    overflow: visible;
    border: none;
    box-shadow: none;
    transition: none;
    display: flex;
    flex-direction: column;
}

.csp__related-section ul.products li.product:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.csp__related-section ul.products li.product .astra-shop-thumbnail-wrap {
    background: var(--color-bg) !important;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    position: relative;
    overflow: hidden;
}

.csp__related-section ul.products li.product:hover .astra-shop-thumbnail-wrap {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.csp__related-section ul.products li.product a {
    display: block;
    text-decoration: none;
}

.csp__related-section ul.products li.product a img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: contain;
    border-radius: 0;
    display: block;
    margin: 0;
    transition: transform .5s var(--ease);
}

.csp__related-section ul.products li.product:hover a img {
    transform: scale(1.05);
}

.csp__related-section ul.products li.product .astra-shop-summary-wrap {
    display: flex;
    flex-direction: column;
    padding: 0 4px;
    flex: 1;
}

.csp__related-section ul.products li.product .ast-woo-product-category {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    margin-bottom: 8px;
    display: block;
}

.csp__related-section ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    padding: 0;
    margin: 0 0 8px 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.csp__related-section ul.products li.product .price {
    padding: 0;
    margin: auto 0 0 0;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    display: block;
}

.csp__info .price .woocommerce-price-suffix {
    display: none !important;
}

.csp__related-section ul.products li.product .price del {
    color: var(--color-text-muted);
    font-weight: 400;
}

.csp__related-section ul.products li.product .price ins {
    text-decoration: none;
}

.csp__related-section ul.products li.product .price .woocommerce-price-suffix {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-left: 4px;
    display: inline-block;
}

.csp__related-section .products li.product .button,
.csp__related-section .products li.product .add_to_cart_button {
    display: block;
    width: 100%;
    margin: 0;
    padding: 12px;
    text-align: center;
    border: 1.5px solid var(--color-primary);
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.csp__related-section .products li.product .button:hover,
.csp__related-section .products li.product .add_to_cart_button:hover {
    background: var(--color-primary);
    color: var(--color-surface);
}

.csp__related-section .products li.product .star-rating {
    padding: 0;
    margin-bottom: 8px;
    font-size: 13px;
}

/* ==========================================================================
   STICKY MOBILE CTA BAR
   ========================================================================== */

.csp__sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .08);
    transform: translateY(100%);
    transition: transform .35s var(--ease);
}

.csp__sticky-bar.visible {
    transform: translateY(0);
}

.csp__sticky-bar-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.csp__sticky-bar-price {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-dark);
}

.csp__sticky-bar-price .price {
    font-size: inherit;
    color: inherit;
}

.csp__sticky-bar-btn {
    flex-shrink: 0;
    height: 48px;
    padding: 0 32px;
    border: none;
    border-radius: var(--radius-pill);
    background: var(--color-primary);
    color: var(--color-surface);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    transition: var(--transition);
}

.csp__sticky-bar-btn:hover {
    background: var(--color-primary-hover);
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */

.csp__toast {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10000;
    opacity: 0;
    transform: translateY(-16px);
    pointer-events: none;
    transition: opacity .35s var(--ease), transform .35s var(--ease);
}

.csp__toast.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.csp__toast-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--color-success);
    max-width: 420px;
}

.csp__toast--error .csp__toast-inner {
    border-left-color: #DC2626;
}

.csp__toast-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--color-success);
}

.csp__toast--error .csp__toast-icon {
    color: #DC2626;
}

.csp__toast-msg {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
    flex: 1;
}

.csp__toast-action {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s ease;
}

.csp__toast-action:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
}

.csp__toast-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    color: var(--color-text-muted);
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    padding: 0;
    flex-shrink: 0;
}

.csp__toast-close:hover {
    background: rgba(41, 55, 28, .06);
    color: var(--color-dark);
}

/* ==========================================================================
   RESPONSIVE — Laptop (< 1400px)
   ========================================================================== */

@media (max-width: 1399px) {
    .csp__container {
        padding: var(--section-pad) 32px;
    }

    .csp__top {
        gap: 48px;
    }
}

/* ==========================================================================
   FAQS SECTION
   ========================================================================== */

.csp-faq-section {
    margin-top: 80px;
}

.csp-faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.csp-faq-title {
    font-family: 'Ranade Light', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 40px;
    text-align: center;
}

.csp-faq-item {
    border-top: 1px solid rgba(41, 55, 28, .08);
    border-bottom: 1px solid rgba(41, 55, 28, .08);
    margin-top: -1px;
}

.csp-faq-item .csp__accordion-header {
    padding: 24px 0 !important;
}

.csp-faq-question {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    color: var(--color-dark);
    text-transform: none;
}

.csp-faq-answer {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: rgba(41, 55, 28, .85);
    padding-bottom: 24px;
}

.csp-faq-answer p:last-child {
    margin-bottom: 0;
}

.csp-faq-item .csp__accordion-icon {
    font-size: 24px;
    color: var(--color-primary);
}

/* ==========================================================================
   RESPONSIVE — Tablet (< 992px)
   ========================================================================== */

@media (max-width: 991px) {
    :root {
        --section-pad: 60px;
    }

    .csp__title {
        font-size: 32px;
    }

    .csp__price .price,
    .csp__varprice .price,
    .csp__current-price {
        font-size: 28px;
    }

    .csp__old-price,
    .csp__varprice .price del,
    .csp__price .price del {
        font-size: 20px;
    }

    .csp__save-badge {
        font-size: 18px;
    }

    .csp__short-desc {
        font-size: 15px;
    }

    .csp__top {
        flex-direction: column;
        gap: 40px;
    }

    .csp__gallery {
        width: 100%;
        position: static;
    }


    .csp__info {
        width: 100%;
        gap: 24px;
    }

    .csp__gallery-main-inner {
        aspect-ratio: auto;
    }

    /* Accordion, FAQs & Reviews Tablet */
    .csp-faq-title {
        font-size: 40px;
    }

    .csp__accordion-title {
        font-size: 16px;
    }

    .csp__reviews-title {
        font-size: 32px;
    }

    .csp__reviews-average {
        font-size: 40px;
    }

    .csp__related-section .related.products>h2,
    .csp__related-section section.related>h2 {
        font-size: 32px;
    }

    .csp__related-section ul.products {
        grid-template-columns: repeat(2, 1fr);
    }

    .csp__sticky-bar {
        display: block;
    }
}

/* ==========================================================================
   RESPONSIVE — Mobile (< 768px)
   ========================================================================== */

@media (max-width: 767px) {
    :root {
        --section-pad: 40px;
    }

    .csp__title {
        font-size: 28px;
    }

    .csp__price .price,
    .csp__varprice .price,
    .csp__current-price {
        font-size: 24px;
    }

    .csp__old-price,
    .csp__varprice .price del,
    .csp__price .price del {
        font-size: 18px;
    }

    .csp__save-badge {
        font-size: 16px;
    }

    .csp__short-desc {
        font-size: 14px;
    }

    .csp__container {
        padding: var(--section-pad) 20px;
    }

    .csp__top {
        gap: 28px;
    }

    /* Gallery — already column on desktop, keep same on mobile */
    .csp__gallery {
        gap: 12px;
    }

    .csp__gallery-thumbs {
        justify-content: flex-start;
        gap: 10px;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }

    .csp__thumb {
        width: 64px;
        height: 64px;
    }

    /* Toast on mobile — top center */
    .csp__toast {
        right: 16px;
        left: 16px;
        top: 16px;
    }

    .csp__toast-inner {
        max-width: 100%;
    }

    .csp__gallery-main-inner {
        border-radius: var(--radius-md);
        aspect-ratio: auto;
    }

    .csp__short-desc {
        max-width: 100%;
    }

    .csp__benefits {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 16px;
    }

    .csp__trust {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .csp__buttons-wrap {
        flex-direction: column;
        gap: 16px;
    }

    .csp__buy-now,
    .csp__cart-area .single_add_to_cart_button,
    .csp__cart-area .button {
        height: 56px;
        font-size: 15px;
    }

    /* Accordion & Reviews Mobile */
    .csp-faq-title {
        font-size: 32px;
    }

    .csp-faq-question {
        font-size: 18px;
    }

    .csp__accordion-section {
        margin-top: 32px;
    }

    .csp__accordion-header {
        padding: 14px 0 !important;
    }

    .csp__reviews-section {
        margin-top: 60px;
    }

    .csp__reviews-title {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .csp__reviews-summary {
        margin-bottom: 32px;
    }

    .csp__reviews-content #comments .commentlist {
        gap: 16px;
    }

    .csp__reviews-content #comments .commentlist li.review {
        padding: 20px;
    }

    .csp__reviews-content #comments .comment_container {
        flex-direction: column;
        gap: 12px;
    }

    .csp__reviews-content .star-rating {
        float: none;
        margin-bottom: 8px;
    }

    .csp__related-section {
        margin-top: 48px;
        padding-top: 36px;
    }

    .csp__reviews-title,
    .csp__related-section .related.products>h2,
    .csp__related-section section.related>h2 {
        font-size: 26px;
    }

    .csp__related-section ul.products {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ==========================================================================
   RESPONSIVE — Small Mobile (< 480px)
   ========================================================================== */

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

    .csp__related-section ul.products {
        grid-template-columns: 1fr;
    }

    .csp__thumb {
        width: 56px;
        height: 56px;
    }

    .csp__var-pill {
        height: 46px;
        padding: 0 18px;
        font-size: 13px;
    }
}

/* ==========================================================================
   ACCESSIBILITY — Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    .csp *,
    .csp *::before,
    .csp *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    .csp__gallery-main-inner:hover .csp__main-img {
        transform: none;
    }

    .csp__related-section .products li.product:hover {
        transform: none;
    }

    .csp__cart-area .single_add_to_cart_button:hover,
    .csp__cart-area .button:hover {
        transform: none;
    }
}

/* ==========================================================================
   WOOCOMMERCE OVERRIDES
   ========================================================================== */

.csp .woocommerce-product-rating {
    margin-bottom: 0;
}

.csp .woocommerce-product-rating .star-rating {
    float: none;
    display: inline-block;
    vertical-align: middle;
}

.csp .woocommerce-product-gallery {
    display: none;
}

.csp__price .price .woocommerce-Price-currencySymbol {
    font-size: inherit;
}

.cfvsw-label-none table.variations tr th.label {
    display: block !important;
}

.cfvsw-swatches-container {
    display: none !important;
}

/* ==========================================================================
   CUSTOM REVIEWS SECTION
   ========================================================================== */

.csp__reviews-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.csp__reviews-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 44px;
    text-align: center;
    letter-spacing: -.01em;
}

.csp__reviews-summary-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
}

.csp-modal-content .woocommerce-Reviews div#comments {
    display: none;
}

.csp-no-reviews {
    text-align: center;
}

.csp__reviews-col-1 {
    text-align: center;
}

.csp__reviews-stars-summary {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.csp__reviews-average-score {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.csp__reviews-count-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-light);
}

.csp__reviews-col-2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    padding: 0 40px;
}

.csp__rating-bar-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.csp__rating-bar-label {
    display: flex;
    justify-content: flex-end;
    gap: 2px;
    width: 80px;
}

.csp__rating-bar-track {
    flex: 1;
    height: 8px;
    background: rgba(41, 55, 28, .08);
    border-radius: 999px;
    overflow: hidden;
    max-width: 200px;
}

.csp__rating-bar-fill {
    height: 100%;
    background: var(--color-primary);
    border-radius: 999px;
    transition: width 0.3s ease;
    max-width: 200px;
}

.csp__rating-bar-count {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-light);
    width: 30px;
}

.csp__reviews-col-3 {
    text-align: center;
}

.csp__write-review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    width: max-content;
    height: 42px;
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0 !important;
    transition: var(--transition);
}

.csp__write-review-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-surface);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(226, 105, 14, .25);
}

.csp__reviews-filter {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.csp__reviews-filter select {
    padding: 10px 36px 10px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-dark);
    background-color: #fff;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2329371C%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 14px top 50%;
    background-size: 10px auto;
}

/* Review Rows */
.csp-review-row {
    width: 100%;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(41, 55, 28, .08);
}

.csp-review-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.csp-review-rating-top {
    margin-bottom: 12px;
}

.csp-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.csp-review-meta-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.csp-review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.csp-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.csp-review-stars {
    display: flex;
    gap: 2px;
}

.csp-review-author {
    font-family: var(--font-heading);
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--color-dark);
}

.csp-review-date {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(41, 55, 28, .7);
}

.csp-review-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 12px 0 8px;
}

.csp-review-content {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-dark);
}

.csp-review-content p {
    margin: 0;
}

/* Pagination */
.csp-review-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.csp-page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.csp-page-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.csp-page-btn.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

/* Modal */
.csp-modal {
    display: none;
}

.csp-modal.is-open {
    display: block;
}

.csp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
}

.csp-modal-container {
    background: var(--color-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.csp-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--color-text-light);
    line-height: 1;
}

.csp-modal-close:hover {
    color: var(--color-dark);
}

/* Review Form Styling inside modal */
.csp-modal-content .comment-respond {
    margin: 0;
}

.csp-modal-content .comment-reply-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color-dark);
}

.csp-modal-content .comment-form-title,
.csp-modal-content .comment-form-author,
.csp-modal-content .comment-form-email,
.csp-modal-content .comment-form-comment {
    margin-bottom: 20px;
}

.csp-modal-content label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--color-dark);
}

.csp-modal-content input[type="text"],
.csp-modal-content input[type="email"],
.csp-modal-content textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
}

.csp-modal-content input[type="submit"] {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.csp-modal-content input[type="submit"]:hover {
    background: var(--color-secondary);
}

/* Responsive Reviews */
@media (max-width: 991px) {
    .csp__reviews-summary-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .csp__reviews-col-3 {
        grid-column: 1 / -1;
        text-align: center;
        border-top: 1px solid var(--color-border);
        padding-top: 24px;
    }
}

@media (max-width: 767px) {
    .csp__reviews-summary-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }

    .csp__reviews-col-2 {
        border-left: none;
        border-right: none;
        border-top: 1px solid var(--color-border);
        border-bottom: 1px solid var(--color-border);
        padding: 24px 0;
    }

    .csp__reviews-col-3 {
        border-top: none;
        padding-top: 0;
    }

    .csp-review-rating-top {
        margin-bottom: 12px;
    }

    .csp-review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .csp-review-meta-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .csp-review-avatar {
        width: 36px;
        height: 36px;
    }
}

/* ==========================================================================
   EDITORIAL TYPOGRAPHY AND SPACING OVERRIDES
   ========================================================================== */

/* Remove Borders and Add Desktop Margin */
.csp-faq-section,
.csp__reviews-section,
.csp__related-section {
    margin-top: 160px !important;
    padding-top: 0 !important;
    border-top: none !important;
    border-bottom: none !important;
}

/* Desktop Titles */
.csp-faq-title,
.csp__reviews-title,
.csp__related-section .related.products>h2,
.csp__related-section section.related>h2 {
    font-family: 'Ranade Light', sans-serif !important;
    font-size: 36px !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    color: var(--color-dark) !important;
    text-align: center !important;
    margin-bottom: 40px !important;
    letter-spacing: normal !important;
}

/* Tablet Overrides */
@media (max-width: 991px) {

    .csp-faq-section,
    .csp__reviews-section,
    .csp__related-section {
        margin-top: 120px !important;
    }

    .csp-faq-title,
    .csp__reviews-title,
    .csp__related-section .related.products>h2,
    .csp__related-section section.related>h2 {
        font-size: 32px !important;
        margin-bottom: 32px !important;
    }
}

/* Mobile Overrides */
@media (max-width: 767px) {

    .csp-faq-section,
    .csp__reviews-section,
    .csp__related-section {
        margin-top: 80px !important;
    }

    .csp-faq-title,
    .csp__reviews-title,
    .csp__related-section .related.products>h2,
    .csp__related-section section.related>h2 {
        font-size: 28px !important;
        margin-bottom: 24px !important;
    }
}

/* ==========================================================================
   PRODUCT TRUST & QUALITY HIGHLIGHTS
   ========================================================================== */

.csp__trust-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 0;
    margin-bottom: 36px;
}

.csp__trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.csp__trust-icon-wrap {
    width: 96px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    margin-bottom: 12px;
    transition: all .3s ease;
}

.csp__trust-icon {
    width: 96px;
    height: 64px;
    object-fit: contain;
    transition: all .3s ease;
}

.csp__trust-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-dark);
    text-transform: capitalize;
    letter-spacing: 0.08em;
    margin: 0;
    letter-spacing: 0;
    transition: all .3s ease;
}

/* Responsive Trust Highlights */
@media (max-width: 991px) {
    .csp__trust-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .csp__trust-icon-wrap {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-pad: 48px;
    }

    /* Product Container */
    .csp__container {
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
        overflow-x: hidden;
    }

    /* Product Section Layout */
    .csp__top {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }

    /* Product Gallery */
    .csp__gallery {
        width: 100%;
    }

    .csp__main-img {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 16px;
    }

    .csp__gallery-main-inner {
        border-radius: 16px;
        overflow: hidden;
    }

    /* Product Thumbnails */
    .csp__gallery-thumbs {
        display: flex;
        justify-content: center;
        gap: 12px;
        overflow-x: auto;
        padding-top: 12px;
    }

    .csp__thumb {
        width: 72px;
        height: 72px;
        flex-shrink: 0;
    }

    /* Product Title */
    .csp__title {
        font-family: 'Ranade Light', sans-serif;
        font-size: 34px !important;
        line-height: 1.1 !important;
    }

    /* Short Description */
    .csp__short-desc {
        font-size: 14px !important;
        line-height: 1.7 !important;
    }

    /* Rating Row */
    .csp__rating {
        display: inline-flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 6px;
    }

    /* Product Price */
    .csp__price {
        font-size: 32px !important;
        margin-bottom: 0;
    }

    .csp__current-price,
    .csp__varprice .price {
        font-size: 20px !important;
    }

    .csp__old-price,
    .csp__price .price del,
    .csp__varprice .price del {
        font-size: 20px !important;
    }

    .csp__save-badge {
        font-size: 16px !important;
    }

    /* Variant Selector */
    .csp__var-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .csp__var-pill {
        height: 44px;
        min-width: 90px;
    }

    /* Quantity Selector */
    .csp__qty-wrap {
        width: 140px;
        height: 44px;
    }

    .csp__qty-btn,
    .csp__qty-wrap input.qty {
        height: 44px;
    }

    /* CTA Buttons */
    .csp__buttons-wrap {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .csp__buy-now,
    .csp__cart-area .single_add_to_cart_button,
    .csp__cart-area .button {
        width: 100% !important;
        height: 48px !important;
        border-radius: var(--radius-pill);
        letter-spacing: 0 !important;
    }

    /* Trust Highlights Section */
    .csp__trust-highlights {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 48px 20px !important;
    }

    .csp__trust-icon-wrap,
    .csp__trust-icon {
        width: 100% !important;
        height: 72px !important;
    }

    .csp__trust-title {
        font-size: 13px !important;
    }

    /* Accordions */
    .csp__accordion-header {
        padding: 18px 0 !important;
    }

    .csp__accordion-title {
        font-size: 16px !important;
    }

    .csp__accordion-content-inner,
    .csp-highlight-desc,
    .csp-faq-answer {
        font-size: 14px !important;
        line-height: 1.8 !important;
    }

    /* Section Titles */
    .csp-faq-title,
    .csp__reviews-title,
    .csp__related-section .related.products>h2,
    .csp__related-section section.related>h2 {
        font-size: 28px !important;
        line-height: 1.2 !important;
        margin-bottom: 24px !important;
    }

    /* Customer Reviews Summary */
    .csp__reviews-summary-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        gap: 24px !important;
        text-align: center;
    }

    .csp__reviews-col-1,
    .csp__reviews-col-2,
    .csp__reviews-col-3 {
        width: 100% !important;
        border: none !important;
        padding: 0 !important;
    }

    /* Write Review Button */
    .csp__write-review-btn {
        width: max-content;
        max-width: 100%;
        height: 42px;
        margin: 0 auto;
        display: flex;
    }

    /* Review Cards */
    .csp__reviews-content #comments .commentlist li.review {
        display: flex;
        flex-direction: column;
    }

    .csp-review-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .csp-review-avatar {
        width: 48px !important;
        height: 48px !important;
    }

    .csp-review-author {
        font-size: 16px !important;
    }

    .csp-review-text {
        font-size: 14px !important;
    }

    /* Related Products */
    .csp__related-section ul.products {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .csp__related-section ul.products li.product a img {
        aspect-ratio: 1 / 1;
        height: auto !important;
    }

    .csp__related-section ul.products li.product .woocommerce-loop-product__title {
        font-size: 14px !important;
    }

    .csp__related-section ul.products li.product .price {
        font-size: 14px !important;
    }

    /* Footer */
    .site-footer .ast-builder-grid-row,
    .site-footer .footer-widget-area {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
        text-align: center !important;
    }

    .site-footer .widget {
        text-align: center !important;
    }

    /* General Mobile Typography */
    body,
    .csp {
        font-size: 14px !important;
        line-height: 1.7 !important;
    }

    .csp__small-text {
        font-size: 12px !important;
    }

    button,
    .button {
        font-size: 14px;
    }

    /* Spacing Overrides for Sections */
    .csp-faq-section,
    .csp__reviews-section,
    .csp__related-section {
        margin-top: 96px !important;
    }

    .csp__tax-info {
        font-size: 12px;
    }

    .csp__rating-average,
    .csp__rating-count {
        font-size: 14px;
    }

    .csp__price .price,
    .csp__current-price,
    .csp__varprice .price ins {
        font-size: 20px;
    }

    .csp__price .price del,
    .csp__varprice .price del {
        font-size: 16px !important;
    }
}

/* Small Mobile Titles */
@media (max-width: 479px) {
    .csp__title {
        font-size: 24px !important;
    }
}

/* ==========================================================================
   LATEST PRODUCT REVIEWS SHORTCODE
   ========================================================================== */

.csp-home-reviews-container {
    position: relative;
    padding: var(--section-pad) 0;
    max-width: var(--content-width);
    margin: 0 auto;
}

.csp-home-reviews-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 44px;
    letter-spacing: -.01em;
}

.csp-review-slide {
    height: auto;
}

.csp-review-card {
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.csp-review-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.csp-review-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.csp-review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.csp-review-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    text-transform: capitalize;
    margin: 0;
    line-height: 1.2;
}

.csp-review-stars {
    display: flex;
    gap: 2px;
}

.csp-review-card-content {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-light);
    flex-grow: 1;
    margin-bottom: 0;
}

.csp-review-card-content p {
    margin-bottom: 10px;
}

.csp-review-card-content p:last-child {
    margin-bottom: 0;
}

.csp-review-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-top: auto;
}

.csp-review-product-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.csp-review-product-img img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--color-border);
}

.csp-review-product-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-dark);
    transition: color .2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.csp-review-product-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.csp-review-product-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.2;
}

.csp-review-product-price del {
    color: var(--color-text-light);
    font-size: 12px;
    font-weight: 400;
    margin-right: 6px;
}

.csp-review-product-price ins {
    text-decoration: none;
}

.csp-review-product-link:hover .csp-review-product-title {
    color: var(--color-primary);
}

.csp-home-reviews-container .swiper-pagination {
    bottom: 0 !important;
}

.csp-home-reviews-container .swiper-pagination-bullet-active {
    background: var(--color-primary);
}

.csp-home-reviews-container .swiper-button-next,
.csp-home-reviews-container .swiper-button-prev {
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.csp-home-reviews-container .swiper-button-next:after,
.csp-home-reviews-container .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}


/* ==========================================================================
   Custom Product Card – Global WooCommerce Loop Card
   ========================================================================== */

/* ── Card Link Reset ── */
.custom-product-card {
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-top: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.custom-product-card:hover,
.custom-product-card:focus-within {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* ── Image Container – 1:1 Square ── */
.custom-product-card__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    background-color: var(--color-surface-warm);
}

/* Fallback for browsers without aspect-ratio support */
@supports not (aspect-ratio: 1 / 1) {
    .custom-product-card__image-wrap::before {
        content: "";
        display: block;
        padding-top: 100%;
    }

    .custom-product-card__image-wrap .custom-product-card__img {
        position: absolute;
        top: 0;
        left: 0;
    }
}

/* ── Product Images ── */
.custom-product-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.45s ease;
}

/* Default image – visible by default */
.custom-product-card__img--default {
    position: relative;
    z-index: 1;
}

/* Hover image – layered behind, hidden by default */
.custom-product-card__img--hover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
}

/* ── Hover / Focus Image Swap ── */
.custom-product-card:hover .custom-product-card__img--default,
.custom-product-card:focus .custom-product-card__img--default {
    opacity: 0;
}

.custom-product-card:hover .custom-product-card__img--hover,
.custom-product-card:focus .custom-product-card__img--hover {
    opacity: 1;
    z-index: 2;
}

/* ── Product Info ── */
.custom-product-card__info {
    padding: 12px 14px 16px;
}

/* Title */
.custom-product-card__title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 4px !important;
    color: var(--color-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-product-card:hover .custom-product-card__title {
    color: var(--color-primary);
}

/* Price Row */
.custom-product-card__price-row {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 4px;
}

.custom-product-card__price {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
}

.custom-product-card__price .woocommerce-price-suffix {
    display: none !important;
}

/* WooCommerce sale / del price overrides */
.custom-product-card__price del {
    font-weight: 400;
    opacity: 0.55;
    font-size: 13px;
}

.custom-product-card__price ins {
    text-decoration: none;
    font-weight: 600;
}

/* Tax inclusive text */
.custom-product-card__tax-text {
    font-size: 12px;
    color: var(--color-text-muted);
    white-space: nowrap;
    line-height: 100%;
}

/* ── Responsive Fine-Tuning ── */
@media (max-width: 480px) {
    .custom-product-card__title {
        font-size: 13px;
    }

    .custom-product-card__price {
        font-size: 13px;
    }

    .custom-product-card__tax-text {
        font-size: 11px;
    }

    .custom-product-card__info {
        padding: 8px 10px 12px;
    }
}


/* ==========================================================================
   Shop / Archive Page — Unified Design System
   ========================================================================== */

/* ── Page Background ── */
.woocommerce-page.archive,
.woocommerce-page.post-type-archive-product,
.tax-product_cat,
.tax-product_tag {
    background-color: var(--color-bg);
    font-family: var(--font-body);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Shop Container ── */
.csp-shop__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 40px 40px 80px;
}

/* ── Breadcrumbs ── */
.csp-shop__breadcrumbs {
    margin-bottom: 32px;
}

.csp-shop__breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-light);
}

.csp-shop__breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.csp-shop__breadcrumb-item a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.csp-shop__breadcrumb-item a:hover {
    color: var(--color-primary);
}

.csp-shop__breadcrumb-sep {
    display: inline-block;
    margin: 0 8px;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* Last breadcrumb (current page) */
.csp-shop__breadcrumb-item:last-child {
    color: var(--color-dark);
    font-weight: 500;
}

/* ── Page Header ── */
.csp-shop__header {
    text-align: center;
    margin-bottom: 48px;
}

.csp-shop__title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-dark);
    margin: 0 0 12px;
    letter-spacing: normal;
}

.csp-shop__header .term-description,
.csp-shop__header .page-description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-light);
    max-width: 640px;
    margin: 0 auto;
}

.csp-shop__header .term-description p:last-child,
.csp-shop__header .page-description p:last-child {
    margin-bottom: 0;
}

/* ── Toolbar (Result Count + Ordering) ── */
.csp-shop__toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.csp-shop__result-count .woocommerce-result-count {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
    padding: 0;
}

.csp-shop__ordering .woocommerce-ordering {
    margin: 0;
}

.csp-shop__ordering .woocommerce-ordering select.orderby {
    padding: 10px 36px 10px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-dark);
    background-color: var(--color-surface);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2329371C%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 14px top 50%;
    background-size: 10px auto;
}

.csp-shop__ordering .woocommerce-ordering select.orderby:hover {
    border-color: var(--color-border-strong);
}

.csp-shop__ordering .woocommerce-ordering select.orderby:focus {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

/* ── Product Grid ── */
.csp-shop ul.products,
.csp-shop .products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.csp-shop ul.products li.product {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    list-style: none;
}

/* Remove any default WooCommerce/Astra card hover styles */
.csp-shop ul.products li.product:hover {
    transform: none;
    box-shadow: none;
}

/* Hide default WooCommerce elements that our custom card replaces */
.csp-shop ul.products li.product>.astra-shop-thumbnail-wrap,
.csp-shop ul.products li.product>.astra-shop-summary-wrap,
.csp-shop ul.products li.product>a>img,
.csp-shop ul.products li.product>.woocommerce-loop-product__title,
.csp-shop ul.products li.product>.price,
.csp-shop ul.products li.product>.star-rating,
.csp-shop ul.products li.product>.button,
.csp-shop ul.products li.product>.add_to_cart_button,
.csp-shop ul.products li.product>.added_to_cart {
    /* Only hide these if they leak outside the custom card */
}

/* ── Pagination ── */
.csp-shop__pagination {
    margin-top: 56px;
    display: flex;
    justify-content: center;
}

.csp-shop__pagination .woocommerce-pagination {
    border: none;
}

.csp-shop__pagination .woocommerce-pagination ul {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    border: none;
}

.csp-shop__pagination .woocommerce-pagination ul li {
    border: none;
    margin: 0;
    padding: 0;
}

.csp-shop__pagination .woocommerce-pagination ul li a,
.csp-shop__pagination .woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.csp-shop__pagination .woocommerce-pagination ul li a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-surface);
}

.csp-shop__pagination .woocommerce-pagination ul li span.current {
    background: var(--color-primary);
    color: var(--color-surface);
    border-color: var(--color-primary);
    cursor: default;
}

.csp-shop__pagination .woocommerce-pagination ul li .prev,
.csp-shop__pagination .woocommerce-pagination ul li .next {
    font-size: 16px;
    font-weight: 600;
}

/* ── Empty State ── */
.csp-shop__empty {
    text-align: center;
    padding: 80px 20px;
    max-width: 480px;
    margin: 0 auto;
}

.csp-shop__empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: 0 auto 28px;
    background: var(--color-primary-light);
    border-radius: 50%;
    color: var(--color-primary);
}

.csp-shop__empty-icon svg {
    width: 48px;
    height: 48px;
}

.csp-shop__empty-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-dark);
    margin: 0 0 12px;
}

.csp-shop__empty-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0 0 28px;
}

.csp-shop__empty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 32px;
    background: var(--color-primary);
    color: var(--color-surface);
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.csp-shop__empty-btn:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(226, 105, 14, .25);
    color: var(--color-surface);
}


/* ==========================================================================
   Shop Page — Responsive
   ========================================================================== */

/* ── Laptop (< 1400px) ── */
@media (max-width: 1399px) {
    .csp-shop__container {
        padding: 40px 32px 60px;
    }
}

/* ── Tablet (< 992px) ── */
@media (max-width: 991px) {
    .csp-shop__container {
        padding: 32px 24px 48px;
    }

    .csp-shop__title {
        font-size: 32px;
    }

    .csp-shop ul.products,
    .csp-shop .products {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .csp-shop__header {
        margin-bottom: 36px;
    }

    .csp-shop__toolbar {
        margin-bottom: 24px;
    }
}

/* ── Mobile (< 768px) ── */
@media (max-width: 767px) {
    .csp-shop__container {
        padding: 24px 20px 40px;
    }

    .csp-shop__title {
        font-size: 28px;
    }

    .csp-shop__header {
        margin-bottom: 28px;
    }

    .csp-shop__toolbar {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        padding-bottom: 16px;
        margin-bottom: 20px;
    }

    .csp-shop__ordering .woocommerce-ordering select.orderby {
        width: 100%;
    }

    .csp-shop ul.products,
    .csp-shop .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .csp-shop__pagination {
        margin-top: 40px;
    }

    .csp-shop__pagination .woocommerce-pagination ul li a,
    .csp-shop__pagination .woocommerce-pagination ul li span {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .csp-shop__empty {
        padding: 60px 16px;
    }

    .csp-shop__empty-icon {
        width: 80px;
        height: 80px;
    }

    .csp-shop__empty-icon svg {
        width: 40px;
        height: 40px;
    }

    .csp-shop__empty-title {
        font-size: 24px;
    }

    .csp-shop__empty-text {
        font-size: 14px;
    }
}

/* ── Small Mobile (< 480px) ── */
@media (max-width: 479px) {
    .csp-shop__title {
        font-size: 24px;
    }

    .csp-shop__breadcrumb-list {
        font-size: 12px;
    }

    .csp-shop__result-count .woocommerce-result-count {
        font-size: 12px;
    }

    .csp-shop__ordering .woocommerce-ordering select.orderby {
        font-size: 12px;
        padding: 8px 30px 8px 12px;
    }
}


/* ==========================================================================
   WooCommerce Shop Page Overrides — Theme Compatibility
   ========================================================================== */

/* Override Astra default product grid styling on shop pages */
.csp-shop .ast-woocommerce-container {
    max-width: 100%;
    padding: 0;
}

/* Ensure the product card fills the grid cell */
.csp-shop ul.products li.product .custom-product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.csp-shop ul.products li.product .custom-product-card__image-wrap {
    flex-shrink: 0;
}

.csp-shop ul.products li.product .custom-product-card__info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.csp-shop ul.products li.product .custom-product-card__price-row {
    margin-top: auto;
}


/* ==========================================================================
   Cart Page — Unified Design System
   ========================================================================== */

/* ── Page Background ── */
.woocommerce-cart {
    background-color: var(--color-bg);
    font-family: var(--font-body);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Cart Container ── */
.csp-cart__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 40px 40px 80px;
}

/* ── Page Header ── */
.csp-cart__header {
    margin-bottom: 40px;
    padding: 40px;
    background: #FEFCE8;
    /* Soft beige background */
    border-radius: var(--radius-lg);
    text-align: center;
}

.csp-cart__title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-dark);
    margin: 16px 0 0;
}

/* ── Two-Column Layout ── */
.csp-cart__layout {
    display: grid;
    grid-template-columns: minmax(0, 68%) minmax(300px, 32%);
    gap: 40px;
    align-items: flex-start;
}

/* ── Cart Items List ── */
.csp-cart__items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ── Single Cart Item ── */
.csp-cart__item {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(41, 55, 28, 0.04);
    transition: var(--transition);
}

.csp-cart__item:hover {
    box-shadow: 0 8px 24px rgba(41, 55, 28, 0.08);
}

/* Item Image */
.csp-cart__item-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-surface-warm);
    border: 1px solid var(--color-border);
}

.csp-cart__item-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.csp-cart__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Item Info */
.csp-cart__item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.csp-cart__item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.csp-cart__item-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-dark);
}

.csp-cart__item-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.csp-cart__item-name a:hover {
    color: var(--color-primary);
}

/* Remove Button */
.csp-cart__item-remove {
    flex-shrink: 0;
}

.csp-cart__remove-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--color-text-muted);
    transition: var(--transition);
    text-decoration: none;
}

.csp-cart__remove-btn:hover {
    background: rgba(220, 38, 38, 0.08);
    color: #DC2626;
}

/* Item Meta (variations) */
.csp-cart__item-meta {
    font-size: 14px;
    color: var(--color-text-light);
}

.csp-cart__item-meta dl {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
    margin: 0;
}

.csp-cart__item-meta dt {
    font-weight: 500;
    color: var(--color-text-light);
}

.csp-cart__item-meta dd {
    margin: 0;
    color: var(--color-dark);
}

.csp-cart__item-meta p {
    margin: 0;
}

/* Backorder */
.csp-cart__backorder {
    font-size: 13px;
    color: var(--color-primary);
    margin: 0;
}

/* Item Bottom Row */
.csp-cart__item-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
}

.csp-cart__item-price {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-light);
}

.csp-cart__item-price del {
    color: var(--color-text-muted);
    font-weight: 400;
}

.csp-cart__item-price ins {
    text-decoration: none;
}

/* Cart Quantity Input */
.csp-cart__item-qty .quantity {
    display: flex;
    align-items: center;
}

.csp-cart__item-qty .quantity input.qty {
    width: 60px;
    height: 44px;
    text-align: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    background: var(--color-surface);
    outline: none;
    -moz-appearance: textfield;
    transition: border-color 0.2s ease;
}

.csp-cart__item-qty .quantity input.qty:focus {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.csp-cart__item-qty .quantity input.qty::-webkit-outer-spin-button,
.csp-cart__item-qty .quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Item Subtotal */
.csp-cart__item-subtotal {
    margin-left: auto;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    white-space: nowrap;
}

/* ── Actions Row (Coupon + Update) ── */
.csp-cart__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    flex-wrap: wrap;
}

/* Coupon */
.csp-cart__coupon {
    display: flex;
    gap: 8px;
    flex: 1;
    max-width: 400px;
}

.csp-cart__coupon-input {
    flex: 1;
    height: 48px;
    padding: 0 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-dark);
    background: var(--color-surface);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.csp-cart__coupon-input:focus {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.csp-cart__coupon-input::placeholder {
    color: var(--color-text-muted);
}

.csp-cart__coupon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 24px;
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.csp-cart__coupon-btn:hover {
    background: var(--color-primary);
    color: var(--color-surface);
}

/* Update Cart Button */
.csp-cart__update-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 32px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    margin-left: auto;
}

.csp-cart__update-btn:hover {
    border-color: var(--color-dark);
    background: var(--color-dark);
    color: var(--color-surface);
}

/* ── Cart Totals Column ── */
.csp-cart__totals-col {
    position: sticky;
    top: 100px;
}

.csp-cart__totals-col .cart_totals {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.csp-cart__totals-col .cart_totals h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--color-dark);
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

/* Totals Table */
.csp-cart__totals-col .cart_totals table.shop_table {
    border: none;
    margin: 0 0 24px;
    width: 100%;
    table-layout: fixed;
    /* Prevents text from breaking layout */
}

.csp-cart__totals-col .cart_totals table.shop_table tr {
    border: none;
}

.csp-cart__totals-col .cart_totals table.shop_table th,
.csp-cart__totals-col .cart_totals table.shop_table td {
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid var(--color-border);
    font-family: var(--font-body);
    font-size: 16px;
    vertical-align: middle;
    background: transparent;
    word-break: normal;
}

.csp-cart__totals-col .cart_totals table.shop_table th {
    font-weight: 400;
    color: var(--color-text-light);
    text-align: left;
    width: 45%;
    padding-right: 12px;
}

.csp-cart__totals-col .cart_totals table.shop_table td {
    font-weight: 500;
    color: var(--color-dark);
    text-align: right;
}

.csp-cart__totals-col .cart_totals table.shop_table tr.order-total th,
.csp-cart__totals-col .cart_totals table.shop_table tr.order-total td {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
    border-bottom: none;
    padding-top: 20px;
}

/* Shipping */
.csp-cart__totals-col .cart_totals .woocommerce-shipping-methods {
    list-style: none;
    padding: 0;
    margin: 0;
}

.csp-cart__totals-col .cart_totals .woocommerce-shipping-methods li {
    margin-bottom: 6px;
    font-size: 14px;
}

.csp-cart__totals-col .cart_totals .woocommerce-shipping-methods li label {
    font-weight: 400;
    color: var(--color-dark);
}

.csp-cart__totals-col .cart_totals .woocommerce-shipping-destination {
    font-size: 13px;
    color: var(--color-text-light);
    margin-top: 8px;
}

.csp-cart__totals-col .shipping-calculator-button {
    font-size: 13px;
    color: var(--color-primary);
    text-decoration: none;
}

.csp-cart__totals-col .shipping-calculator-button:hover {
    text-decoration: underline;
}

/* Checkout Button */
.csp-cart__totals-col .wc-proceed-to-checkout {
    padding: 0;
    margin: 0;
}

.csp-cart__totals-col .wc-proceed-to-checkout a.checkout-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    background: var(--color-primary);
    color: var(--color-surface);
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 4px;
}

.csp-cart__totals-col .wc-proceed-to-checkout a.checkout-button:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(226, 105, 14, .25);
}

/* ── Empty Cart ── */
.woocommerce-cart .cart-empty {
    text-align: center;
    padding: 20px;
    font-family: var(--font-body);
    font-size: 24px;
    color: var(--color-dark);
}

.csp-cart__empty {
    text-align: center;
    padding: 80px 20px;
}

.csp-cart__empty-illustration {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.csp-cart__empty-illustration svg {
    opacity: 0.8;
}

.woocommerce-cart .return-to-shop {
    text-align: center;
    margin-top: 32px;
}

.woocommerce-cart .return-to-shop a.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 40px;
    background: var(--color-primary);
    color: var(--color-surface);
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.woocommerce-cart .return-to-shop a.button:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(226, 105, 14, .25);
}

/* ── Trust Badges ── */
.csp-cart__trust-badges {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.csp-cart__trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.csp-cart__trust-badge:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.csp-cart__trust-badge svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

/* ── WooCommerce Notices in Cart ── */
.csp-cart .woocommerce-message,
.csp-cart .woocommerce-info,
.csp-cart .woocommerce-error {
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
}

/* Hide default WC table display on cart page */
.csp-cart .shop_table.cart {
    display: none;
}


/* ==========================================================================
   Cart Page — Responsive
   ========================================================================== */

/* ── Laptop (< 1400px) ── */
@media (max-width: 1399px) {
    .csp-cart__container {
        padding: 40px 32px 60px;
    }

    .csp-cart__layout {
        grid-template-columns: 1fr 340px;
        gap: 32px;
    }
}

/* ── Tablet (< 992px) ── */
@media (max-width: 991px) {
    .csp-cart__container {
        padding: 32px 24px 48px;
    }

    .csp-cart__title {
        font-size: 32px;
    }

    .csp-cart__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .csp-cart__totals-col {
        position: static;
    }

    .csp-cart__totals-col .cart_totals {
        max-width: 480px;
    }

    .csp-cart__item-image {
        width: 88px;
        height: 88px;
    }
}

/* ── Mobile (< 768px) ── */
@media (max-width: 767px) {
    .csp-cart__container {
        padding: 24px 20px 40px;
    }

    .csp-cart__title {
        font-size: 28px;
    }

    .csp-cart__header {
        margin-bottom: 28px;
    }

    .csp-cart__item {
        gap: 14px;
        padding: 20px 0;
    }

    .csp-cart__item-image {
        width: 76px;
        height: 76px;
    }

    .csp-cart__item-name {
        font-size: 15px;
    }

    .csp-cart__item-bottom {
        flex-wrap: wrap;
        gap: 12px;
    }

    .csp-cart__item-subtotal {
        font-size: 15px;
    }

    .csp-cart__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .csp-cart__coupon {
        max-width: 100%;
    }

    .csp-cart__update-btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .csp-cart__totals-col .cart_totals {
        max-width: 100%;
    }
}

/* ── Small Mobile (< 480px) ── */
@media (max-width: 479px) {
    .csp-cart__title {
        font-size: 24px;
    }

    .csp-cart__item-image {
        width: 64px;
        height: 64px;
    }

    .csp-cart__item-name {
        font-size: 14px;
    }

    .csp-cart__item-price {
        font-size: 13px;
    }

    .csp-cart__item-subtotal {
        font-size: 14px;
        width: 100%;
        text-align: right;
    }
}