/*
Theme Name: SellerApp Theme
Theme URI: https://sellerapp.local
Author: SellerApp
Description: Custom e-commerce theme with WooCommerce integration
Version: 1.0.0
License: GPL v2 or later
Text Domain: sellerapp
*/

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.boxed-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.boxed-content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    padding: 32px;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Top Bar ========== */
.top-bar {
    background: #1a1a2e;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar .social-icons {
    display: flex;
    gap: 12px;
}

.top-bar .social-icons a {
    color: #fff;
    font-size: 16px;
    transition: opacity 0.2s;
}

.top-bar .social-icons a:hover {
    opacity: 0.7;
}

.top-bar .top-nav ul {
    display: flex;
    gap: 20px;
}

.top-bar .top-nav a {
    color: #ccc;
    transition: color 0.2s;
}

.top-bar .top-nav a:hover {
    color: #fff;
}

/* ========== Main Header ========== */
.main-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header .logo {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -1px;
}

.main-header .logo span {
    color: #e94560;
}

.main-header .main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-header .main-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-header .main-nav a {
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.main-header .main-nav a:hover {
    color: #e94560;
}

.cart-icon-wrap {
    position: relative;
    cursor: pointer;
    font-size: 22px;
}

.cart-icon-wrap .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e94560;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== Side Cart ========== */
.side-cart-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

.side-cart-overlay.active {
    display: block;
}

.side-cart {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100%;
    background: #fff;
    z-index: 10000;
    box-shadow: -4px 0 15px rgba(0,0,0,0.1);
    transition: right 0.35s ease;
    display: flex;
    flex-direction: column;
}

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

.side-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.side-cart-header h3 {
    font-size: 18px;
}

.side-cart-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.side-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.side-cart-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fafafa;
}

.side-cart-item__thumb {
    flex: 0 0 76px;
}

.side-cart-item__thumb img {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.side-cart-item__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.side-cart-item__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.side-cart-item__name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: #1a1a2e;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.side-cart-item__name:hover {
    color: #e94560;
}

.side-cart-item__remove {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border: none;
    background: #f1f1f4;
    color: #999;
    border-radius: 50%;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.side-cart-item__remove:hover {
    background: #e94560;
    color: #fff;
}

.side-cart-item__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 8px;
}

.side-cart-item__qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e2e2ea;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.side-cart-item__qty .side-cart-qty-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: #f7f7fa;
    color: #1a1a2e;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.side-cart-item__qty .side-cart-qty-btn:hover {
    background: #e94560;
    color: #fff;
}

.side-cart-item__qty .side-cart-item__qty-input {
    width: 32px;
    height: 28px;
    border: none;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    background: transparent;
    outline: none;
    -moz-appearance: textfield;
}

.side-cart-item__qty .side-cart-item__qty-input::-webkit-inner-spin-button,
.side-cart-item__qty .side-cart-item__qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.side-cart-item__price {
    font-weight: 700;
    color: #e94560;
    font-size: 14px;
    white-space: nowrap;
}

.side-cart-empty {
    text-align: center;
    padding: 50px 20px;
}

.side-cart-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f1f1f4;
    color: #999;
    font-size: 24px;
    margin-bottom: 14px;
}

.side-cart-empty p {
    color: #888;
    margin-bottom: 18px;
}

.side-cart-empty__btn {
    display: inline-block;
    padding: 12px 26px;
    background: #1a1a2e;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.side-cart-empty__btn:hover {
    background: #e94560;
    color: #fff;
}

.side-cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.side-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    margin-bottom: 15px;
}

.side-cart-total__amount {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a2e;
}

.side-cart-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.side-cart-btn {
    display: block;
    padding: 13px;
    text-align: center;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.side-cart-btn--view {
    background: #f1f1f4;
    color: #1a1a2e;
}

.side-cart-btn--view:hover {
    background: #e2e2ea;
    color: #1a1a2e;
}

.side-cart-btn--checkout {
    background: #1a1a2e;
    color: #fff;
}

.side-cart-btn--checkout:hover {
    background: #e94560;
    color: #fff;
}

/* ========== Hero Section ========== */
.hero-section {
    padding: 0;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    max-height: 500px;
}

.hero-slider .slides-track {
    display: flex;
    transition: transform 0.5s ease;
}

.hero-slider .slide {
    flex: 0 0 100%;
    width: 100%;
}

.hero-slider .slide a {
    display: block;
}

.hero-slider .slide a img {
    width: 100%;
    display: block;
}

.hero-slider .slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.hero-slider .slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.2s;
}

.hero-slider .slider-dots span.active {
    background: #fff;
    transform: scale(1.3);
}



/* ========== Products Section ========== */

.products-section .section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 10px;
}

/* ========== Categories Grid ========== */
.categories-grid {
    display: grid;
    gap: 16px;
}
.categories-grid--2 { grid-template-columns: repeat(2, 1fr); }
.categories-grid--3 { grid-template-columns: repeat(3, 1fr); }
.categories-grid--4 { grid-template-columns: repeat(4, 1fr); }
.categories-grid--5 { grid-template-columns: repeat(5, 1fr); }
.categories-grid--6 { grid-template-columns: repeat(6, 1fr); }

.cat-card {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    transition: box-shadow 0.3s, transform 0.3s;
    text-decoration: none;
    color: inherit;
}
.cat-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.cat-card__image {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
}
.cat-card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-card__count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e94560;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.25s, transform 0.25s;
    pointer-events: none;
    z-index: 2;
}
.cat-card:hover .cat-card__count {
    opacity: 1;
    transform: translateY(0);
}

.cat-card__title {
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    text-align: center;
    color: #1a1a2e;
}

/* ========== Section Title ========== */
.section-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #1a1a2e;
}
.section-title--left {
    text-align: left;
}

.product-card__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 8px 12px 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a2e;
}

.product-card {
    background: #fff;
    border: 1px solid #dbdbdb;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

/* Product Image Gallery Slider */
.product-image-wrap {
    position: relative;
    overflow: hidden;
}

.product-gallery {
    position: relative;
}

.product-gallery .gallery-slide {
    display: none;
}

.product-gallery .gallery-slide.active {
    display: block;
}

.product-gallery .gallery-slide img {
    width: auto;
    height: auto;
    object-fit: cover;
    margin: auto;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 8px;
}

.gallery-nav button {
    pointer-events: auto;
    background: rgba(255,255,255,0.9);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.product-card:hover .gallery-nav button {
    opacity: 1;
}

.product-info {
    padding: 10px;
}

.product-info .product-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-info .product-title a {
    color: #333;
}

.product-info .product-title a:hover {
    color: #e94560;
}

.product-info .product-price {
    font-size: 16px;
    font-weight: 700;
    color: #e94560;
}

.product-info .product-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
}

.product-info .product-meta .rating {
    color: #f5a623;
    margin-top: 4px;
}

.product-info .product-meta .sold {
    color: #888;
}

.product-actions {
    display: flex;
    gap: 8px;
	flex-direction: column;
}

.product-actions .btn {
    flex: 1;
    padding: 10px 0;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}

.product-actions .btn-add-cart {
    background: #1a1a2e;
    color: #fff;
}

.product-actions .btn-add-cart:hover {
    background: #e94560;
}

.product-actions .btn-source {
    background: #f0f0f0;
    color: #333;
}

.product-actions .btn-source:hover {
    background: #e0e0e0;
}

/* Load More */
.load-more-wrap {
    text-align: center;
    margin-top: 40px;
}

.btn-load-more,
.jfy-load-more {
    padding: 14px 48px;
    background: transparent;
    border: 2px solid #1a1a2e;
    color: #1a1a2e;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-load-more:hover,
.jfy-load-more:hover {
    background: #1a1a2e;
    color: #fff;
}

.btn-load-more.loading,
.jfy-load-more:disabled {
    opacity: 0.6;
    pointer-events: none;
}

/* ========== Footer ========== */
.site-footer {
    background: #1a1a2e;
    color: #ccc;
    padding: 40px 20px 20px;
}

.site-footer .boxed-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.site-footer h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

.site-footer a {
    color: #aaa;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.site-footer a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid #333;
    font-size: 13px;
}

/* ========== Admin Import Page ========== */
.wrap-import-product {
    max-width: 800px;
}

.import-form {
    background: #fff;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 20px;
}

.import-form .form-group {
    margin-bottom: 20px;
}

.import-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.import-form input[type="url"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

.import-form .submit-btn {
    padding: 12px 36px;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.import-form .submit-btn:hover {
    background: #e94560;
}

.import-result {
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
}

.import-result.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.import-result.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Hide default WooCommerce breadcrumb */
.woocommerce-breadcrumb {
    display: none !important;
}

/* ========== Single Product Page ========== */
.sp-wrapper {
    padding: 30px 0 0;
}

.sp-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.sp-layout > * {
    min-width: 0;
}
.pdp-product-desc {
	color: black;
}
.pdp-product-desc  ul {
    list-style: unset;
    padding: revert;
    margin: revert;
}

/* Gallery */
.single-product-gallery {
    margin-bottom: 40px;
}

.sp-gallery-main {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #fafafa;
    border: 1px solid #f0f0f0;
}

.sp-main-slide {
    display: none;
    aspect-ratio: 4 / 3;
    max-height: 600px;
}

.sp-main-slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-main-slide img {
    width: auto;
    height: auto;
    object-fit: contain;
    padding: 5px;
    border-radius: 12px;
}

.sp-gallery-prev,
.sp-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s;
    opacity: 0;
}

.sp-gallery-main:hover .sp-gallery-prev,
.sp-gallery-main:hover .sp-gallery-next {
    opacity: 1;
}

.sp-gallery-prev { left: 12px; }
.sp-gallery-next { right: 12px; }

.sp-gallery-prev:hover,
.sp-gallery-next:hover {
    background: #1a1a2e;
    color: #fff;
}

.sp-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
    max-width: 100%;
    min-width: 0;
}

.sp-gallery-thumbs::-webkit-scrollbar {
    height: 4px;
}

.sp-gallery-thumbs::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

.sp-thumb {
    flex-shrink: 0;
    width: 78px;
    height: 78px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    background: #fafafa;
}

.sp-thumb:hover {
    border-color: #1a1a2e;
}

.sp-thumb.active {
    border-color: #e94560;
}

.sp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Sidebar (Floating/Sticky) */
.sp-right {
    position: sticky;
    top: 90px;
    align-self: start;
}

.sp-sidebar {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.sp-title {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    line-height: 1.35;
    letter-spacing: -0.3px;
}

.sp-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.sp-stars {
    color: #f5a623;
    font-size: 15px;
    letter-spacing: 3px;
}

.sp-rating-text {
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.sp-sold {
    font-size: 13px;
    color: #888;
}

.sp-sold i {
    color: #e94560;
    margin-right: 4px;
}

.sp-price {
    font-size: 30px;
    font-weight: 800;
    color: #e94560;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
    letter-spacing: -0.5px;
}

.sp-rating:empty {
    display: none;
}

.sp-price del {
    font-size: 18px;
    color: #aaa;
    font-weight: 400;
    letter-spacing: 0;
}

.sp-price ins {
    text-decoration: none;
}

.sp-actions {
    margin-bottom: 20px;
}

.sp-actions form.cart {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.sp-qty {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.qty-btn {
    width: 38px;
    height: 44px;
    border: none;
    background: #f8f8f8;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    color: #333;
}

.qty-btn:hover {
    background: #eee;
}

.qty-input {
    width: 50px;
    height: 44px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    outline: none;
}

.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.single_add_to_cart_button {
    flex: 1;
    padding: 14px 20px;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.single_add_to_cart_button:hover {
    background: #e94560;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(233,69,96,0.3);
}

.sp-actions .btn-source {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    background: #f5f5f5;
    color: #444;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.sp-actions .btn-source:hover {
    background: #eee;
    border-color: #ccc;
    color: #1a1a2e;
}

.sp-actions form.cart.sp-var-form {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}

.sp-variation-selects {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 6px;
}

.sp-variation-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sp-variation-label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    text-transform: capitalize;
}

.sp-variation-select {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
}

.sp-variation-select:focus {
    border-color: #1a1a2e;
}

.sp-var-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.sp-var-row .single_add_to_cart_button {
    flex: 1;
}

.single_add_to_cart_button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.sp-variation-message {
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.sp-variation-message.error {
    background: #fef2f2;
    color: #b91c1c;
    border-color: #fecaca;
}

/* Full Description */
.sp-description-full {
    padding: 0 0 40px;
}

.sp-description-full h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
    padding-bottom: 12px;
    border-bottom: 2px solid #1a1a2e;
    letter-spacing: -0.2px;
}

.sp-description-content {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.sp-description-content p {
    margin-bottom: 15px;
}

/* ========== Reviews Section ========== */
.sp-reviews {
    padding: 30px 0 50px;
    border-top: 1px solid #eee;
}

.sp-reviews h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111;
    letter-spacing: -0.2px;
}

.sp-reviews-summary {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    padding: 24px;
    background: #fafafa;
    border-radius: 12px;
    margin-bottom: 28px;
}

.sp-review-score {
    text-align: center;
    padding-right: 24px;
    border-right: 1px solid #eee;
}

.sp-score-big {
    font-size: 48px;
    font-weight: 800;
    color: #111;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.sp-stars-large {
    color: #f5a623;
    font-size: 20px;
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.sp-review-count {
    font-size: 14px;
    font-weight: 500;
    color: #777;
}

.sp-review-bars {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.sp-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sp-bar-label {
    font-size: 13px;
    color: #888;
    min-width: 42px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.sp-bar-label i {
    color: #f5a623;
    font-size: 12px;
}

.sp-bar-track {
    flex: 1;
    height: 8px;
    background: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

.sp-bar-fill {
    height: 100%;
    background: #f5a623;
    border-radius: 4px;
    transition: width 0.4s ease;
}

.sp-bar-count {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    min-width: 30px;
    text-align: right;
}

/* Review List */
.sp-review-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sp-review-item {
    padding: 20px 22px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    transition: box-shadow 0.2s;
}

.sp-review-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

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

.sp-review-author {
    font-weight: 600;
    font-size: 15px;
    color: #111;
}

.sp-review-date {
    font-size: 12px;
    color: #aaa;
    font-weight: 400;
}

.sp-review-stars {
    color: #f5a623;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.sp-review-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.sp-review-attachment {
    margin-top: 14px;
}

.sp-review-attachment img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 8px;
    border: 1px solid #eee;
    object-fit: cover;
    transition: opacity 0.2s;
}

.sp-review-attachment img:hover {
    opacity: 0.85;
}

.sp-attachment-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #f0f0f0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a2e;
    transition: background 0.2s;
}

.sp-attachment-link:hover {
    background: #e0e0e0;
}

.sp-no-reviews {
    text-align: center;
    color: #999;
    padding: 40px 0;
    font-size: 15px;
    font-weight: 500;
}

/* Review Form */
.btn-write-review {
    display: block;
    width: 100%;
    padding: 14px;
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #1a1a2e;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 24px;
    text-align: center;
}

.btn-write-review:hover {
    background: #1a1a2e;
    color: #fff;
}

.sp-review-form {
    margin-top: 24px;
    padding: 28px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #eee;
}

.sp-review-form h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 24px;
    letter-spacing: -0.2px;
}

.rf-row {
    margin-bottom: 20px;
}

.rf-row label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.rf-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}

.rf-stars input {
    display: none;
}

.rf-stars label {
    cursor: pointer;
    font-size: 30px;
    color: #ddd;
    transition: color 0.15s;
    margin: 0;
}

.rf-stars label:hover,
.rf-stars label:hover ~ label,
.rf-stars input:checked ~ label {
    color: #f5a623;
}

.rf-stars label i {
    pointer-events: none;
}

#review-text {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s, box-shadow 0.2s;
    line-height: 1.6;
}

#review-text:focus {
    outline: none;
    border-color: #1a1a2e;
    box-shadow: 0 0 0 3px rgba(26,26,46,0.08);
}

#review-attachment {
    font-size: 14px;
    color: #555;
}

.rf-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-submit-review {
    padding: 12px 36px;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-submit-review:hover {
    background: #e94560;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(233,69,96,0.3);
}

.btn-submit-review.loading {
    opacity: 0.6;
    pointer-events: none;
}

.rf-message {
    font-size: 14px;
    font-weight: 500;
}

.rf-message.success {
    color: #28a745;
}

.rf-message.error {
    color: #dc3545;
}

.sp-review-login {
    margin-top: 24px;
    padding: 24px;
    text-align: center;
    background: #fafafa;
    border-radius: 10px;
    font-size: 14px;
    color: #888;
}

.sp-review-login a {
    color: #e94560;
    font-weight: 600;
}

.sp-review-login a:hover {
    text-decoration: underline;
}

/* =============================================
   Cart & Checkout
   ============================================= */

/* ---------- Shared ---------- */
.sa-cart-page,
.sa-checkout-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.sa-cart-head h1,
.sa-checkout-head h1 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.5px;
}

.sa-cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.sa-cart-head__count {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    background: #f2f2f7;
    padding: 6px 14px;
    border-radius: 20px;
}

.sa-checkout-head {
    text-align: center;
    margin-bottom: 32px;
}

.sa-checkout-head h1 {
    font-size: 30px;
    margin-bottom: 6px;
}

.sa-checkout-head p {
    color: #888;
    font-size: 15px;
}

.sa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}

.sa-btn--primary {
    background: #e94560;
    color: #fff;
    box-shadow: 0 4px 14px rgba(233, 69, 96, 0.28);
}

.sa-btn--primary:hover {
    background: #1a1a2e;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(26, 26, 46, 0.25);
}

.sa-btn--ghost {
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #1a1a2e;
    padding: 10px 18px;
}

.sa-btn--ghost:hover {
    background: #1a1a2e;
    color: #fff;
}

.sa-totals-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 14px;
    color: #555;
}

.sa-totals-row + .sa-totals-row {
    border-top: 1px dashed #eee;
}

.sa-totals-row--subtotal,
.sa-totals-row--shipping {
    font-weight: 500;
}

.sa-totals-row--total {
    padding: 16px 0;
    font-size: 18px;
    font-weight: 800;
    color: #1a1a2e;
}

.sa-totals-row--total .woocommerce-Price-amount {
    color: #e94560;
    font-size: 22px;
}

.sa-totals-row .woocommerce-Price-amount {
    font-weight: 700;
}

.sa-totals-row .woocommerce-Price-amount.amount del {
    color: #aaa;
}

/* ---------- Cart Layout ---------- */
.sa-cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 28px;
    align-items: start;
}

.sa-cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sa-cart-item {
    display: flex;
    gap: 18px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 18px;
    transition: box-shadow 0.25s, border-color 0.25s;
}

.sa-cart-item:hover {
    border-color: #dcdce4;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.sa-cart-item__thumb {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 12px;
    overflow: hidden;
    background: #f7f7fa;
    border: 1px solid #f0f0f3;
}

.sa-cart-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sa-cart-item__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.sa-cart-item__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.sa-cart-item__name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sa-cart-item__name a {
    color: inherit;
}

.sa-cart-item__name a:hover {
    color: #e94560;
}

.sa-cart-item__remove {
    color: #bbb;
    font-size: 16px;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.sa-cart-item__remove:hover {
    background: #fef2f2;
    color: #e94560;
}

.sa-cart-item__meta {
    margin-top: 4px;
    font-size: 13px;
    color: #888;
}

.sa-cart-item__meta dl {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0;
}

.sa-cart-item__meta dl p {
    margin: 0;
}

.sa-cart-item__meta dt {
    display: inline-block;
}

.sa-cart-item__meta dd {
    display: inline;
    margin-left: 6px;
    font-weight: 500;
    color: #555;
}

.sa-cart-item__bottom {
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sa-cart-item__price {
    font-size: 17px;
    font-weight: 800;
    color: #e94560;
}

.sa-cart-item__price .woocommerce-Price-amount del {
    font-size: 13px;
    color: #aaa;
    font-weight: 400;
}

.sa-cart-item .quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e2e2ea;
    border-radius: 9px;
    overflow: hidden;
    background: #fff;
}

.sa-cart-item .quantity .qty {
    width: 42px;
    height: 38px;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    outline: none;
    background: transparent;
}

.sa-cart-item .quantity .qty::-webkit-inner-spin-button,
.sa-cart-item .quantity .qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.sa-cart-item .quantity button {
    width: 36px;
    height: 38px;
    border: none;
    background: #f7f7fa;
    color: #1a1a2e;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.sa-cart-item .quantity button:hover {
    background: #e94560;
    color: #fff;
}

.sa-cart-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 0 0;
}

.sa-cart-actions .coupon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sa-cart-actions .coupon .input-text {
    padding: 10px 14px;
    border: 1px solid #e2e2ea;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    min-width: 180px;
    transition: border-color 0.2s;
}

.sa-cart-actions .coupon .input-text:focus {
    border-color: #1a1a2e;
}

/* ---------- Cart Side / Totals ---------- */
.sa-cart-side {
    position: sticky;
    top: 90px;
}

.sa-cart-totals {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
}

.sa-cart-totals__title {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
    padding-bottom: 14px;
    border-bottom: 2px solid #1a1a2e;
}

.sa-cart-totals .shipping ul {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
}

.sa-cart-totals .shipping li {
    margin-bottom: 4px;
}

.sa-cart-totals .shipping input[type="radio"] {
    margin-right: 6px;
}

.sa-cart-totals .shipping-calculator-form {
    margin-top: 8px;
    padding: 10px;
    background: #fafafe;
    border-radius: 10px;
}

.sa-cart-totals .shipping-calculator-form input,
.sa-cart-totals .shipping-calculator-form select {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 8px;
    border: 1px solid #e2e2ea;
    border-radius: 8px;
    font-size: 13px;
}

.sa-proceed-checkout {
    margin-top: 18px;
    border-top: 1px dashed #eee;
    padding-top: 18px;
}

.sa-checkout-btn {
    display: flex;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border-radius: 12px;
}

/* ---------- Checkout Layout ---------- */
.sa-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 28px;
    align-items: start;
}

.sa-checkout-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sa-checkout-side {
    position: sticky;
    top: 90px;
}

.sa-checkout-card,
.sa-order-summary {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
}

.sa-checkout-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 2px solid #1a1a2e;
}

.sa-checkout-card__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: #e94560;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.sa-checkout-card__head h2 {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
}

.sa-checkout-card__head p {
    font-size: 13px;
    color: #999;
    margin: 2px 0 0;
}

/* Checkout form fields */
.sa-checkout-fields .form-row {
    margin-bottom: 18px;
}

.sa-checkout-fields .form-row label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.sa-checkout-fields .form-row label .required {
    color: #e94560;
    border: none;
}

.sa-checkout-fields .form-row .input-text,
.sa-checkout-fields .form-row select,
.sa-checkout-fields .form-row textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #e2e2ea;
    border-radius: 12px;
    font-size: 15px;
    color: #1a1a2e;
    background: #fafafe;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    font-family: inherit;
}

.sa-checkout-fields .form-row .input-text:focus,
.sa-checkout-fields .form-row select:focus,
.sa-checkout-fields .form-row textarea:focus {
    border-color: #1a1a2e;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.08);
}

.sa-checkout-fields .form-row select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.sa-checkout-fields .form-row textarea {
    resize: vertical;
    min-height: 92px;
}

/* Hide hidden helper fields */
.sa-checkout-fields #billing_phone_field,
.sa-checkout-fields #billing_country_field,
.sa-checkout-fields .form-row.hidden {
    display: none !important;
}

/* ---------- Order Summary ---------- */
.sa-order-summary__title {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
    padding-bottom: 14px;
    border-bottom: 2px solid #1a1a2e;
}

.sa-review-items {
    display: flex;
    flex-direction: column;
}

.sa-review-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
}

.sa-review-item + .sa-review-item {
    border-top: 1px solid #f5f5f8;
}

.sa-review-item__thumb {
    position: relative;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    background: #f7f7fa;
    border: 1px solid #f0f0f3;
}

.sa-review-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sa-review-item__qty {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    background: #e94560;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sa-review-item__info {
    flex: 1;
    min-width: 0;
}

.sa-review-item__name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 3px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sa-review-item__info .variation,
.sa-review-item__info dl {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.sa-review-item__total {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
}

.sa-review-totals {
    margin-top: 10px;
    border-top: 2px solid #1a1a2e;
    padding-top: 6px;
}

/* ---------- Payment ---------- */
.sa-checkout-payment {
    margin-top: 8px;
}

.sa-checkout-payment__title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px;
}

.sa-payment-methods {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sa-payment-methods li {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 14px 16px;
    background: #fafafe;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
}

.sa-payment-methods li:hover {
    border-color: #d5d5e0;
}

.sa-payment-methods li input[type="radio"] {
    margin-right: 8px;
    accent-color: #e94560;
}

.sa-payment-methods li label {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    cursor: pointer;
}

.sa-payment-methods li label img {
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
}

.sa-payment-methods li .payment_box {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #e2e2ea;
    font-size: 13px;
    color: #666;
}

.sa-payment-methods li .payment_box label,
.sa-payment-methods li .payment_box .form-row label {
    font-size: 13px;
}

.sa-payment-methods li .payment_box input {
    padding: 10px;
}

.sa-payment-methods .payment_method_cod {
    position: relative;
}

.sa-payment-methods .payment_method_cod::after {
    content: '';
}

/* Place order */
.sa-place-order {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px dashed #eee;
}

.sa-place-order .woocommerce-terms-and-conditions-wrapper {
    font-size: 13px;
    color: #888;
    margin-bottom: 14px;
}

.sa-place-order .woocommerce-terms-and-conditions-wrapper input {
    accent-color: #e94560;
}

.sa-place-order__btn {
    display: flex;
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border-radius: 12px;
}

/* ---------- Checkout Coupon (in order summary) ---------- */
.sa-checkout-coupon {
    margin: 0 0 20px;
    background: #fafafe;
    border: 1px solid #ededf4;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sa-checkout-coupon.sa-checkout-coupon--open {
    border-color: #e94560;
    box-shadow: 0 4px 18px rgba(233, 69, 96, 0.08);
}

.sa-checkout-coupon__toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: background 0.2s;
}

.sa-checkout-coupon__toggle:hover {
    background: #f2f2f8;
}

.sa-checkout-coupon__icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 11px;
    background: linear-gradient(135deg, #e94560, #ff6b81);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(233, 69, 96, 0.25);
}

.sa-checkout-coupon__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    min-width: 0;
}

.sa-checkout-coupon__text strong {
    font-size: 14px;
    color: #1a1a2e;
}

.sa-checkout-coupon__text small {
    font-size: 12px;
    color: #999;
}

.sa-checkout-coupon__arrow {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef0f6;
    color: #666;
    font-size: 12px;
    line-height: 1;
    transition: transform 0.25s, background 0.2s, color 0.2s;
}

.sa-checkout-coupon__arrow i {
    line-height: 1;
    display: block;
}

.sa-checkout-coupon__toggle:hover .sa-checkout-coupon__arrow {
    background: #e94560;
    color: #fff;
}

.sa-checkout-coupon.sa-checkout-coupon--open .sa-checkout-coupon__arrow,
.sa-checkout-coupon__toggle[aria-expanded="true"] .sa-checkout-coupon__arrow {
    transform: rotate(180deg);
}

.sa-checkout-coupon__form {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 0 14px 14px;
}

.sa-checkout-coupon__field {
    position: relative;
    flex: 1;
    min-width: 0;
}

.sa-checkout-coupon__field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    color: #b9b9cc;
    font-size: 13px;
    line-height: 1;
    pointer-events: none;
}

.sa-checkout-coupon__field-icon i {
    line-height: 1;
    display: block;
}

.sa-checkout-coupon__form .input-text {
    width: 100%;
    padding: 10px 14px 10px 37px !important;
    border: 1px solid #e2e2ea;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #1a1a2e;
    outline: none;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sa-checkout-coupon__form .input-text::placeholder {
    color: #b3b3c4;
    text-transform: none;
    font-weight: 500;
    letter-spacing: 0;
}

.sa-checkout-coupon__form .input-text:focus {
    border-color: #e94560;
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.12);
}

.sa-checkout-coupon__form .sa-btn {
    flex-shrink: 0;
    padding: 12px 20px;
    white-space: nowrap;
    font-size: 14px;
    gap: 8px;
    border-radius: 11px;
    box-shadow: 0 4px 14px rgba(233, 69, 96, 0.28);
}

.sa-checkout-coupon__form .sa-btn:hover {
    box-shadow: 0 6px 18px rgba(26, 26, 46, 0.25);
}

.sa-checkout-coupon__form .sa-btn i {
    font-size: 12px;
    transition: transform 0.2s;
}

.sa-checkout-coupon__form .sa-btn:hover i {
    transform: translateX(3px);
}

.sa-checkout-coupon__form .sa-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}

.sa-checkout-coupon__notice {
    display: none;
    padding: 10px 14px;
    font-size: 13px;
    border-top: 1px solid #f0f0f6;
}

.sa-checkout-coupon__notice .woocommerce-message,
.sa-checkout-coupon__notice .woocommerce-error,
.sa-checkout-coupon__notice .woocommerce-info {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    color: #1a1a2e;
    list-style: none;
    line-height: 1.4;
}

.sa-checkout-coupon__notice .woocommerce-error {
    color: #e94560;
}

.sa-checkout-coupon__notice .woocommerce-message {
    color: #2e9e6b;
}

@media (max-width: 480px) {
    .sa-checkout-coupon__form {
        flex-wrap: wrap;
    }
    .sa-checkout-coupon__form .sa-btn {
        width: 100%;
    }
}

/* Cart item remove loading */
.sa-cart-item__remove.sa-removing {
    pointer-events: none;
    opacity: 0.6;
}

/* ========== Thank You Page ========== */
.sa-thankyou {
    max-width: 760px;
    margin: 0 auto;
}

.sa-thankyou__hero {
    text-align: center;
    padding: 36px 20px;
    margin-bottom: 28px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
}

.sa-thankyou__hero--failed {
    border-color: #fecaca;
}

.sa-thankyou__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #e94560;
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.3);
}

.sa-thankyou__hero--failed .sa-thankyou__icon {
    background: #dc3545;
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

.sa-thankyou__hero h1 {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.sa-thankyou__hero p {
    color: #888;
    font-size: 15px;
    margin: 0;
}

.sa-thankyou__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.sa-thankyou__card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
}

.sa-thankyou__card-title {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #1a1a2e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sa-thankyou__card-title i {
    color: #e94560;
}

.sa-thankyou__overview-list,
.sa-thankyou__delivery-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sa-thankyou__overview-list li,
.sa-thankyou__delivery-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
}

.sa-thankyou__label {
    color: #999;
    font-size: 13px;
}

.sa-thankyou__total {
    color: #e94560;
    font-size: 20px;
    font-weight: 800;
}

.sa-thankyou__items {
    margin-bottom: 20px;
}

.sa-thankyou__items-list {
    display: flex;
    flex-direction: column;
}

.sa-thankyou__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
}

.sa-thankyou__item + .sa-thankyou__item {
    border-top: 1px solid #f5f5f8;
}

.sa-thankyou__item-thumb {
    position: relative;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    background: #f7f7fa;
    border: 1px solid #f0f0f3;
}

.sa-thankyou__item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sa-thankyou__item-info {
    flex: 1;
    min-width: 0;
}

.sa-thankyou__item-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 3px;
    line-height: 1.35;
}

.sa-thankyou__item-info h4 a {
    color: inherit;
}

.sa-thankyou__item-info h4 a:hover {
    color: #e94560;
}

.sa-thankyou__item-info .variation,
.sa-thankyou__item-info dl {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.sa-thankyou__item-total {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
}

.sa-thankyou__totals {
    margin-top: 12px;
    border-top: 2px solid #1a1a2e;
    padding-top: 6px;
}

.sa-thankyou__actions {
    text-align: center;
    margin-top: 28px;
}

.sa-thankyou__actions .sa-btn {
    padding: 15px 40px;
    font-size: 16px;
}

.sa-thankyou .woocommerce-notice--success {
    display: none;
}

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

/* ---------- Shipping options in totals rows ---------- */
.sa-totals-row--shipping {
    align-items: flex-start;
}

.sa-shipping-value {
    flex: 1;
    text-align: right;
    padding-left: 14px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.sa-shipping ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.sa-shipping ul li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sa-shipping ul input[type="radio"] {
    accent-color: #e94560;
    margin: 0;
}

.sa-shipping ul label {
    cursor: pointer;
}

.sa-shipping .woocommerce-shipping-destination,
.sa-shipping .woocommerce-shipping-contents {
    margin: 6px 0 0;
    font-size: 12px;
    color: #999;
}

.sa-shipping .woocommerce-shipping-calculator {
    margin-top: 6px;
    font-size: 12px;
}

.sa-shipping .woocommerce-shipping-calculator button {
    border: none;
    background: none;
    color: #e94560;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.sa-shipping .woocommerce-shipping-calculator form {
    text-align: left;
    margin-top: 8px;
    padding: 10px;
    background: #fafafe;
    border-radius: 10px;
}

.sa-shipping .woocommerce-shipping-calculator form input,
.sa-shipping .woocommerce-shipping-calculator form select {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 8px;
    border: 1px solid #e2e2ea;
    border-radius: 8px;
    font-size: 13px;
    background: #fff;
}

.sa-shipping .woocommerce-shipping-calculator form button {
    display: block;
    width: 100%;
    padding: 9px;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.sa-shipping .woocommerce-shipping-calculator form button:hover {
    background: #e94560;
}

/* ---------- Checkout / Cart notices ---------- */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-radius: 12px;
    padding: 14px 18px !important;
    margin-bottom: 20px;
    font-size: 14px;
    border: none;
    list-style: none;
}

.woocommerce-message {
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.woocommerce-info {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.woocommerce-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.woocommerce-message a.button,
.woocommerce-info a.button,
.woocommerce-error li a {
    color: inherit;
    text-decoration: underline;
    background: transparent;
    border: none;
    padding: 0;
}

.woocommerce form.checkout_coupon,
.woocommerce-checkout .checkout_coupon {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 20px;
}

.woocommerce form.checkout_coupon .form-row,
.woocommerce-checkout .checkout_coupon .form-row {
    display: inline-block;
    margin: 0 6px 0 0;
}

.woocommerce form.checkout_coupon .input-text,
.woocommerce-checkout .checkout_coupon .input-text {
    padding: 10px 14px;
    border: 1px solid #e2e2ea;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
}

.woocommerce form.checkout_coupon button,
.woocommerce-checkout .checkout_coupon button {
    padding: 10px 20px;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.woocommerce form.checkout_coupon button:hover,
.woocommerce-checkout .checkout_coupon button:hover {
    background: #e94560;
}

/* Empty cart */
.woocommerce-cart .cart-empty {
    text-align: center;
    font-size: 18px;
    color: #888;
    margin: 40px 0 10px;
}

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

.woocommerce-cart .return-to-shop .button {
    display: inline-block;
    padding: 12px 32px;
    background: #1a1a2e;
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
}

/* Checkout login / guest notice */
.woocommerce-checkout .woocommerce-form-login {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 20px;
}

/* ---------- Cart & Checkout Responsive ---------- */
@media (max-width: 1024px) {
    .sa-cart-layout,
    .sa-checkout-layout {
        grid-template-columns: 1fr 340px;
        gap: 22px;
    }
}

@media (max-width: 860px) {
    .sa-cart-layout,
    .sa-checkout-layout {
        grid-template-columns: 1fr;
    }

    .sa-cart-side,
    .sa-checkout-side {
        position: static;
        order: -1;
    }
}

@media (max-width: 520px) {
    .sa-cart-page,
    .sa-checkout-page {
        padding: 24px 14px 40px;
    }

    .sa-cart-item {
        flex-direction: column;
        align-items: stretch;
    }

    .sa-cart-item__thumb {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .sa-cart-item__thumb img {
        object-fit: cover;
    }

    .sa-cart-head,
    .sa-cart-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .sa-cart-actions .coupon {
        flex-wrap: wrap;
    }

    .sa-cart-actions .coupon .input-text {
        flex: 1;
        min-width: 0;
    }

    .sa-checkout-card,
    .sa-order-summary {
        padding: 18px;
    }
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .sp-layout {
        grid-template-columns: 1fr 320px;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        max-height: 300px;
    }

    .hero-slider .slide-content h2 {
        font-size: 20px;
    }

    .sp-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .sp-left {
        padding: 20px;
        border-radius: 12px;
    }

    .sp-right {
        position: static;
        order: -1;
        margin-bottom: 20px;
    }

    .sp-sidebar {
        border-radius: 12px;
        padding: 22px;
    }

    .sp-main-slide {
        aspect-ratio: auto;
        height: 320px;
    }

    .sp-title {
        font-size: 20px;
    }

    .sp-price {
        font-size: 24px;
    }

    .sp-reviews-summary {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sp-review-score {
        border-right: none;
        padding-right: 0;
        padding-bottom: 16px;
        border-bottom: 1px solid #eee;
    }

    .site-footer .boxed-section {
        grid-template-columns: 1fr 1fr;
    }

    .side-cart {
        width: 320px;
        right: -340px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .top-bar .social-icons {
        display: none;
    }
}

@media (max-width: 480px) {
    .sp-sidebar {
        padding: 16px;
    }

    .sp-left {
        padding: 16px;
        border-radius: 10px;
    }
}

/* ========== Share Buttons ========== */
.product-share-buttons {
    position: absolute;
    right: 8px;
    top: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.product-card {
    transition: 0.25s all;
}
.product-card:hover .product-share-buttons {
    opacity: 1;
}

.product-card:hover {
    border-color: #b7b7b7;
}
.product-card:hover .product-info {
    padding: 10px;
    background: #f1f1f1;
}
.share-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    text-decoration: none;
}

.share-btn svg {
    width: 14px;
    height: 14px;
}

.share-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: #fff;
}

/* Single share button */
.share-btn-toggle {
    background: rgba(26, 26, 46, 0.85);
    border: none;
    padding: 0;
    line-height: 0;
    cursor: pointer;
}

.share-btn-toggle:hover {
    background: #1a1a2e;
}

.share-btn-toggle svg {
    display: block;
}

.share-btn-facebook {
    background: #1877f2;
}

.share-btn-facebook:hover {
    background: #166fe5;
}

.share-btn-linkedin {
    background: #0a66c2;
}

.share-btn-linkedin:hover {
    background: #095ca8;
}

/* Elementor Widget Grid Columns */
.products-grid--2 { grid-template-columns: repeat(2, 1fr); }
.products-grid--3 { grid-template-columns: repeat(3, 1fr); }
.products-grid--4 { grid-template-columns: repeat(4, 1fr); }
.products-grid--5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1024px) {
    .categories-grid--3,
    .categories-grid--4,
    .categories-grid--5,
    .categories-grid--6 { grid-template-columns: repeat(3, 1fr); }

    .products-grid--3,
    .products-grid--4,
    .products-grid--5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .categories-grid--2,
    .categories-grid--3,
    .categories-grid--4,
    .categories-grid--5,
    .categories-grid--6 { grid-template-columns: repeat(2, 1fr); }

    .products-grid--2,
    .products-grid--3,
    .products-grid--4,
    .products-grid--5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .categories-grid--2,
    .categories-grid--3,
    .categories-grid--4,
    .categories-grid--5,
    .categories-grid--6 { grid-template-columns: repeat(2, 1fr); }

    .products-grid--2,
    .products-grid--3,
    .products-grid--4,
    .products-grid--5 { grid-template-columns: 1fr; }
}

/* ========== Cart: Auto-update steppers ========== */
.sa-cart-item .quantity {
    display: flex;
    align-items: center;
}

.sa-qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e2e2ea;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.sa-qty-stepper .qty-minus,
.sa-qty-stepper .qty-plus {
    width: 32px;
    height: 38px;
    border: none;
    background: transparent;
    color: #1a1a2e;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.sa-qty-stepper .qty-minus:hover,
.sa-qty-stepper .qty-plus:hover {
    background: #1a1a2e;
    color: #fff;
}

.sa-qty-stepper input.qty {
    width: 44px;
    height: 38px;
    border: none;
    border-left: 1px solid #e2e2ea;
    border-right: 1px solid #e2e2ea;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    -moz-appearance: textfield;
    appearance: textfield;
    padding: 0;
}

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

/* ========== Cart: Full-width coupon row ========== */
.sa-cart-actions .coupon {
    flex: 1 1 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f7f8fb;
    border: 1px dashed #d7d8e0;
    border-radius: 12px;
    padding: 12px 14px;
}

.sa-cart-actions .coupon .sa-coupon__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #e94560;
    color: #fff;
    font-size: 15px;
    flex-shrink: 0;
}

.sa-cart-actions .coupon .input-text {
    flex: 1;
    min-width: 0;
    border: 1px solid #e2e2ea;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.sa-cart-actions .coupon .input-text:focus {
    border-color: #1a1a2e;
}

.sa-cart-actions .coupon .sa-btn {
    padding: 11px 22px;
    flex-shrink: 0;
}

form.sa-cart-form.sa-cart-updating {
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.2s;
}

/* ========== Cart: Shipping calculator (district only) ========== */
.sa-shipping .shipping-calculator-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #e94560;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    margin-top: 8px;
}

.sa-shipping .shipping-calculator-button:hover {
    color: #1a1a2e;
}

.sa-shipping .shipping-calculator-form {
    margin-top: 12px;
    padding: 14px;
    background: #f7f8fb;
    border: 1px dashed #d7d8e0;
    border-radius: 12px;
}

.sa-shipping .shipping-calculator-form p {
    margin: 0 0 10px;
}

.sa-shipping .shipping-calculator-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.sa-shipping .shipping-calculator-form select,
.sa-shipping .shipping-calculator-form input.input-text {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e2ea;
    border-radius: 10px;
    font-size: 14px;
    background: #fff;
    outline: none;
}

.sa-shipping .shipping-calculator-form .sa-calc-shipping-submit {
    margin-bottom: 0;
}

.sa-shipping .shipping-calculator-form .button {
    width: 100%;
    padding: 11px 18px;
    border: none;
    border-radius: 10px;
    background: #1a1a2e;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.sa-shipping .shipping-calculator-form .button:hover {
    background: #e94560;
}

/* ========== Shop Archive ========== */
.sa-shop {
    padding-top: 26px;
    padding-bottom: 60px;
}

.sa-shop-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 55%, #e94560 130%);
    border-radius: 18px;
    padding: 34px 32px;
    margin-bottom: 22px;
    color: #fff;
}

.sa-shop-hero::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(233, 69, 96, 0.35);
    filter: blur(10px);
}

.sa-shop-hero__inner {
    position: relative;
    z-index: 1;
}

.sa-shop-hero__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff9fad;
    margin-bottom: 8px;
}

.sa-shop-hero__title {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    color: #fff;
}

.sa-shop-hero__desc {
    margin: 8px 0 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
}

/* Category chips */
.sa-shop-cats {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 2px 14px;
    margin-bottom: 4px;
    scrollbar-width: thin;
}

.sa-shop-cats::-webkit-scrollbar {
    height: 5px;
}

.sa-shop-cats::-webkit-scrollbar-thumb {
    background: #d7d8e0;
    border-radius: 10px;
}

.sa-shop-cat-chip {
    flex-shrink: 0;
    padding: 7px 16px;
    border-radius: 20px;
    background: #f1f2f6;
    border: 1px solid transparent;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
}

.sa-shop-cat-chip:hover {
    background: #fff;
    border-color: #e94560;
    color: #e94560;
}

.sa-shop-cat-chip.active {
    background: #e94560;
    color: #fff;
}

/* Toolbar */
.sa-shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 6px 0 18px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
}

.sa-shop-toolbar .woocommerce-ordering {
    margin: 0 0 0 auto;
    float: none;
    flex-shrink: 0;
}

.sa-shop-toolbar .sa-shop-cats {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
    padding: 0;
}

.sa-shop-toolbar .woocommerce-ordering select {
    padding: 8px 34px 8px 14px;
    border: 1px solid #e2e2ea;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    background: #f7f8fb url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%231a1a2e' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") no-repeat right 14px center;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
}

/* Pagination */
.woocommerce-pagination {
    margin-top: 30px;
    text-align: center;
}

.woocommerce-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-pagination ul.page-numbers li {
    border: none;
    margin: 0;
    display: inline-block;
}

.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border-radius: 10px;
    border: 1px solid #e2e2ea;
    background: #fff;
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.woocommerce-pagination .page-numbers a:hover {
    border-color: #e94560;
    color: #e94560;
}

.woocommerce-pagination .page-numbers span.current {
    background: #e94560;
    border-color: #e94560;
    color: #fff;
}

.woocommerce-pagination .page-numbers .dots {
    border: none;
    background: transparent;
    min-width: 20px;
}

@media (max-width: 480px) {
    .sa-shop-hero {
        padding: 24px 20px;
    }
    .sa-shop-hero__title {
        font-size: 24px;
    }
    .sa-shop-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .sa-cart-actions .coupon {
        flex-wrap: wrap;
    }
    .sa-cart-actions .coupon .input-text {
        flex: 1 1 100%;
    }
    .sa-cart-actions .coupon .sa-btn {
        flex: 1;
    }
}

.product-info .product-price ins {
    text-decoration: none;
}
.product-info .product-price del{
    letter-spacing: 0;
    color: gray;
    font-weight: normal;
}
.product-info .product-price {
    gap: 2px;
    flex-direction: row-reverse;
    text-align: left;
    display: inline-flex;
    font-weight: 500;
}

/* ========== Order Tracking ========== */
.sa-track-form {
    max-width: 560px;
    margin: 24px auto 0;
}

.sa-track-card.sa-checkout-card {
    padding: 30px;
}

.sa-track-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.sa-track-fields .form-row {
    margin-bottom: 0;
}

.sa-track-fields .form-row label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.sa-track-fields .form-row .input-text {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #e2e2ea;
    border-radius: 12px;
    font-size: 15px;
    color: #1a1a2e;
    background: #fafafe;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    font-family: inherit;
    box-sizing: border-box;
}

.sa-track-fields .form-row .input-text:focus {
    border-color: #1a1a2e;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.08);
}

.sa-track-submit {
    margin: 22px 0 0 !important;
}

.sa-track-button {
    width: 100%;
    padding: 14px 20px;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
}

.sa-track-button:hover {
    background: #e94560;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(233, 69, 96, 0.3);
}

/* Results */
.sa-track-result {
    max-width: 680px;
    margin: 24px auto 0;
}

.sa-track-again {
    margin: 28px 0 0;
    text-align: center;
}

.sa-track-again-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    background: #f5f5f5;
    color: #1a1a2e;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.sa-track-again-btn:hover {
    background: #1a1a2e;
    color: #fff;
    border-color: #1a1a2e;
}

.sa-track-status {
    background: #f6f8fb;
    border: 1px solid #e6eaf0;
    border-left: 4px solid #e94560;
    border-radius: 12px;
    padding: 18px 22px;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 28px;
}

.sa-track-status mark {
    background: none;
    color: inherit;
}

.sa-track-status .order-number {
    font-weight: 800;
    color: #1a1a2e;
}

.sa-track-status .order-date {
    color: #666;
}

.sa-track-status .order-status {
    font-weight: 700;
    color: #e94560;
    text-transform: capitalize;
}

.sa-track-result h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 18px;
}

.sa-track-notes {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.sa-track-notes:before {
    content: '';
    position: absolute;
    left: 11px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #e6eaf0;
}

.sa-track-notes .note {
    position: relative;
    padding: 0 0 22px 40px;
    margin: 0;
}

.sa-track-notes .note:before {
    content: '';
    position: absolute;
    left: 6px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #e94560;
}

.sa-track-notes .note:last-child {
    padding-bottom: 0;
}

.sa-track-notes .meta {
    font-size: 12px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.sa-track-notes .description {
    background: #fafafe;
    border: 1px solid #eef0f5;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.sa-track-notes .description p {
    margin: 0;
}

@media (max-width: 480px) {
    .sa-track-fields {
        grid-template-columns: 1fr;
    }
}

/* ========== Order Details (Tracking / My Account) ========== */
.sa-order-details,
.sa-customer-details {
    max-width: 720px;
    margin: 0 auto;
}

.sa-order-card,
.sa-customer-details {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
}

.sa-order-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #1a1a2e;
}

.sa-order-card__head h2 {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
}

.sa-order-card__head p {
    font-size: 13px;
    color: #999;
    margin: 2px 0 0;
}

.sa-order-table-wrap {
    overflow-x: auto;
}

.sa-order-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.sa-order-table thead th {
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #999;
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
}

.sa-order-table tbody td {
    padding: 14px 12px;
    border-bottom: 1px solid #f3f3f6;
    vertical-align: middle;
}

.sa-order-table tfoot th,
.sa-order-table tfoot td {
    padding: 10px 12px;
    border-top: 1px solid #f3f3f6;
    text-align: left;
}

.sa-order-table tfoot tr:first-child th,
.sa-order-table tfoot tr:first-child td {
    border-top: 2px solid #1a1a2e;
}

.sa-order-table tfoot th {
    color: #666;
    font-weight: 600;
}

.sa-order-table tfoot tr:last-child th,
.sa-order-table tfoot tr:last-child td {
    font-weight: 800;
    color: #1a1a2e;
    font-size: 16px;
}

.sa-order-table .product-total {
    text-align: right;
    font-weight: 600;
    color: #1a1a2e;
    white-space: nowrap;
}

.sa-od-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sa-od-thumb {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    background: #fafafa;
}

.sa-od-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sa-od-info a {
    color: #1a1a2e;
    font-weight: 600;
}

.sa-od-info a:hover {
    color: #e94560;
}

.sa-od-qty {
    color: #999;
    font-weight: 500;
    margin-left: 6px;
}

.sa-od-info .wc-item-meta {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    font-size: 12px;
    color: #888;
}

.sa-od-info .wc-item-meta li {
    margin: 2px 0;
}

.sa-order-action {
    display: inline-block;
    padding: 9px 16px;
    background: #1a1a2e;
    color: #fff !important;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.sa-order-action:hover {
    background: #e94560;
    color: #fff !important;
}

/* Addresses */
.sa-customer-details {
    margin-top: 20px;
}

.sa-addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.sa-address-card {
    background: #fafafe;
    border: 1px solid #eef0f5;
    border-radius: 12px;
    padding: 20px;
}

.sa-address-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.sa-address-card__head .sa-checkout-card__icon {
    width: 38px;
    height: 38px;
    font-size: 15px;
}

.sa-address-card h2 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.sa-address-card address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.sa-address-card address p {
    margin: 4px 0 0;
}

.sa-address-card .woocommerce-customer-details--phone i,
.sa-address-card .woocommerce-customer-details--email i {
    color: #e94560;
    margin-right: 6px;
}

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