/*
Theme Name: SHEON2 Child Theme
Theme URI: https://sheon.site
Description: SHEON2 - Bold Sporty Green & Cream Theme
Author: SHEON
Template: hello-elementor
Version: 1.0.0
Text Domain: sheon2-child
*/

/* ============================================
   SHEON2 - GREEN & CREAM BOLD SPORTY THEME
   ============================================ */

:root {
    --sheon-green: #2d6a4f;
    --sheon-green-dark: #1b4332;
    --sheon-green-light: #52b788;
    --sheon-cream: #f5f0e8;
    --sheon-cream-dark: #e8dfd0;
    --sheon-black: #111111;
    --sheon-white: #ffffff;
    --sheon-gray: #6b7280;
    --sheon-gold: #d4a853;
}

/* ===== BASE ===== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--sheon-cream);
    color: var(--sheon-black);
    margin: 0;
    padding: 0;
}

a { color: var(--sheon-green); text-decoration: none; }
a:hover { color: var(--sheon-green-dark); }

/* ===== ANNOUNCEMENT BAR ===== */
.sheon-announcement {
    background: var(--sheon-green-dark);
    color: var(--sheon-cream);
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===== HEADER ===== */
.sheon-header {
    background: var(--sheon-white);
    border-bottom: 3px solid var(--sheon-green);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.sheon-logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sheon-black);
    text-decoration: none;
}

.sheon-logo span { color: var(--sheon-green); }

.sheon-nav {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sheon-nav a {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sheon-black);
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.sheon-nav a:hover {
    color: var(--sheon-green);
    border-bottom-color: var(--sheon-green);
}

.sheon-header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sheon-cart-icon {
    position: relative;
    text-decoration: none;
    color: var(--sheon-black);
    font-size: 22px;
}

.sheon-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--sheon-green);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile menu button */
.sheon-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    color: var(--sheon-black);
    padding: 8px;
}

/* ===== HERO SECTION ===== */
.sheon-hero {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.sheon-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--sheon-green-dark) 0%, var(--sheon-green) 60%, var(--sheon-green-light) 100%);
}

.sheon-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.3) 20px,
        rgba(255,255,255,0.3) 21px
    );
}

.sheon-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 700px;
}

.sheon-hero-tag {
    display: inline-block;
    background: var(--sheon-gold);
    color: var(--sheon-black);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 24px;
}

.sheon-hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    color: var(--sheon-white);
    line-height: 1;
    text-transform: uppercase;
    margin: 0 0 24px;
    letter-spacing: -1px;
}

.sheon-hero-title span { color: var(--sheon-gold); }

.sheon-hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.sheon-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sheon-btn-primary {
    background: var(--sheon-white);
    color: var(--sheon-green-dark);
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.sheon-btn-primary:hover {
    background: var(--sheon-gold);
    color: var(--sheon-black);
}

.sheon-btn-outline {
    background: transparent;
    color: var(--sheon-white);
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.2s;
}

.sheon-btn-outline:hover {
    border-color: var(--sheon-white);
    background: rgba(255,255,255,0.1);
    color: var(--sheon-white);
}

/* ===== FEATURES BAR ===== */
.sheon-features {
    background: var(--sheon-green-dark);
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.sheon-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--sheon-cream);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sheon-feature-item span:first-child { font-size: 20px; }

/* ===== SECTION HEADER ===== */
.sheon-section-header {
    text-align: center;
    padding: 70px 40px 40px;
}

.sheon-section-tag {
    display: inline-block;
    background: var(--sheon-cream-dark);
    color: var(--sheon-green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 16px;
}

.sheon-section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--sheon-black);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0 0 16px;
    line-height: 1.1;
}

.sheon-section-title span { color: var(--sheon-green); }

.sheon-section-sub {
    font-size: 16px;
    color: var(--sheon-gray);
    max-width: 500px;
    margin: 0 auto;
}

/* ===== CATEGORIES GRID ===== */
.sheon-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin: 0 0 3px;
}

.sheon-category-card {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.sheon-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sheon-category-card:hover img { transform: scale(1.06); }

.sheon-category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
}

.sheon-category-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sheon-gold);
    margin-bottom: 8px;
}

.sheon-category-title {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 16px;
}

.sheon-category-btn {
    display: inline-block;
    background: var(--sheon-white);
    color: var(--sheon-black);
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 2px;
    width: fit-content;
    transition: all 0.2s;
}

.sheon-category-btn:hover {
    background: var(--sheon-gold);
    color: var(--sheon-black);
}

/* ===== FEATURED PRODUCTS ===== */
.sheon-products-section {
    padding: 0 40px 70px;
    background: var(--sheon-cream);
}

.sheon-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sheon-product-card {
    background: var(--sheon-white);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.sheon-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.sheon-product-img {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: var(--sheon-cream);
}

.sheon-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.sheon-product-card:hover .sheon-product-img img { transform: scale(1.06); }

.sheon-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--sheon-green);
    color: white;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
}

.sheon-product-info {
    padding: 16px;
}

.sheon-product-cats {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sheon-green);
    margin-bottom: 6px;
}

.sheon-product-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--sheon-black);
    margin-bottom: 4px;
    line-height: 1.3;
}

.sheon-product-stars {
    color: var(--sheon-gold);
    font-size: 13px;
    margin-bottom: 10px;
}

.sheon-product-price {
    font-size: 18px;
    font-weight: 900;
    color: var(--sheon-black);
    margin-bottom: 12px;
}

.sheon-product-price del {
    font-size: 13px;
    color: var(--sheon-gray);
    font-weight: 400;
    margin-right: 6px;
}

.sheon-product-atc {
    display: block;
    width: 100%;
    background: var(--sheon-green-dark);
    color: white;
    border: none;
    padding: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
}

.sheon-product-atc:hover { background: var(--sheon-green); color: white; }

/* ===== PROMO BANNER ===== */
.sheon-promo-banner {
    background: var(--sheon-green);
    padding: 80px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.sheon-promo-content {}

.sheon-promo-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sheon-gold);
    margin-bottom: 12px;
}

.sheon-promo-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 16px;
}

.sheon-promo-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

/* ===== WHY US ===== */
.sheon-why-section {
    background: var(--sheon-cream-dark);
    padding: 70px 40px;
}

.sheon-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.sheon-why-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 4px;
    border-top: 4px solid var(--sheon-green);
}

.sheon-why-icon { font-size: 2.5rem; margin-bottom: 16px; }

.sheon-why-title {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sheon-black);
    margin-bottom: 10px;
}

.sheon-why-text { font-size: 13px; color: var(--sheon-gray); line-height: 1.7; }

/* ===== NEWSLETTER ===== */
.sheon-newsletter {
    background: var(--sheon-green-dark);
    padding: 70px 40px;
    text-align: center;
}

.sheon-newsletter h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sheon-newsletter p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 32px; }

.sheon-newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    gap: 0;
}

.sheon-newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    font-size: 14px;
    border: none;
    outline: none;
    border-radius: 2px 0 0 2px;
}

.sheon-newsletter-form button {
    background: var(--sheon-gold);
    color: var(--sheon-black);
    border: none;
    padding: 16px 28px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0 2px 2px 0;
    transition: background 0.2s;
}

.sheon-newsletter-form button:hover { background: white; }

/* ===== FOOTER ===== */
.sheon-footer {
    background: var(--sheon-black);
    color: rgba(255,255,255,0.7);
    padding: 60px 80px 30px;
}

.sheon-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.sheon-footer-brand .sheon-logo { color: white; font-size: 1.5rem; }
.sheon-footer-brand .sheon-logo span { color: var(--sheon-green-light); }

.sheon-footer-desc {
    font-size: 13px;
    line-height: 1.8;
    margin-top: 16px;
    color: rgba(255,255,255,0.5);
}

.sheon-footer-col h4 {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
}

.sheon-footer-col ul { list-style: none; margin: 0; padding: 0; }
.sheon-footer-col ul li { margin-bottom: 10px; }
.sheon-footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.sheon-footer-col ul li a:hover { color: var(--sheon-green-light); }

.sheon-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* ===== WOOCOMMERCE SHOP PAGE ===== */
.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    background: white !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12) !important;
}

.woocommerce ul.products li.product a img {
    width: 100% !important;
    height: 260px !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.4s !important;
}

.woocommerce ul.products li.product:hover a img { transform: scale(1.06) !important; }

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #111 !important;
    padding: 14px 14px 4px !important;
    margin: 0 !important;
}

.woocommerce ul.products li.product .price {
    font-size: 17px !important;
    font-weight: 900 !important;
    color: #111 !important;
    padding: 0 14px 10px !important;
    display: block !important;
}

.woocommerce ul.products li.product .button {
    display: block !important;
    width: calc(100% - 28px) !important;
    margin: 0 14px 14px !important;
    padding: 12px !important;
    background: #1b4332 !important;
    color: white !important;
    border: none !important;
    border-radius: 2px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    text-align: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
}

.woocommerce ul.products li.product .button:hover {
    background: #2d6a4f !important;
    color: white !important;
}

/* ===== PRODUCT PAGE ===== */
.sheon-product-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px 60px;
    font-family: inherit;
}

.sheon-breadcrumb { font-size: 12px; color: #888; margin-bottom: 30px; letter-spacing: 0.5px; }
.sheon-breadcrumb a { color: #888; text-decoration: none; }
.sheon-breadcrumb a:hover { color: var(--sheon-green); }

.sheon-product-wrap {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.sheon-thumbs { display: flex; flex-direction: column; gap: 8px; }

.sheon-thumb {
    width: 80px; height: 80px;
    border-radius: 4px; overflow: hidden;
    cursor: pointer; border: 2px solid transparent;
    transition: border-color 0.2s;
}

.sheon-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sheon-thumb.active { border-color: var(--sheon-green); }
.sheon-thumb:hover { border-color: var(--sheon-green-light); }

.sheon-main-image {
    border-radius: 4px; overflow: hidden;
    background: var(--sheon-cream);
    aspect-ratio: 1;
}

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

.sheon-summary { padding: 0 10px; }

.sheon-brand {
    display: inline-block;
    background: var(--sheon-green-dark);
    color: white;
    font-size: 10px; font-weight: 800;
    letter-spacing: 3px; padding: 5px 14px;
    border-radius: 2px; margin-bottom: 10px;
    text-transform: uppercase;
}

.sheon-short-desc { font-size: 13px; color: #888; margin-bottom: 8px; line-height: 1.5; }

.sheon-title {
    font-size: 2.2rem; font-weight: 900;
    color: var(--sheon-black); margin-bottom: 16px;
    line-height: 1.1; text-transform: uppercase;
    letter-spacing: -0.5px;
}

.sheon-price {
    font-size: 2rem; font-weight: 900;
    color: var(--sheon-black); margin-bottom: 24px;
}

.sheon-price del { color: #999; font-size: 1.2rem; margin-right: 8px; font-weight: 400; }
.sheon-price ins { text-decoration: none; color: var(--sheon-green); }

.sheon-variation-row { margin-bottom: 20px; }

.sheon-variation-label {
    font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--sheon-black); margin-bottom: 10px;
    display: flex; align-items: center; gap: 8px;
}

.sheon-variation-label .selected-val { font-weight: 400; color: #666; text-transform: none; letter-spacing: 0; }

.sheon-swatches { display: flex; flex-wrap: wrap; gap: 10px; }

.sheon-swatch {
    width: 64px; height: 64px;
    border-radius: 4px; overflow: hidden;
    cursor: pointer; border: 2px solid transparent;
    transition: all 0.2s;
}

.sheon-swatch img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sheon-swatch.active { border-color: var(--sheon-green); box-shadow: 0 0 0 2px var(--sheon-green); }
.sheon-swatch:hover { border-color: var(--sheon-green-light); }

.sheon-sizes { display: flex; flex-wrap: wrap; gap: 8px; }

.sheon-size {
    min-width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #e0e0e0; border-radius: 4px;
    font-size: 13px; font-weight: 700;
    cursor: pointer; transition: all 0.2s;
    padding: 0 12px; background: white; color: #111;
}

.sheon-size:hover { border-color: var(--sheon-green); color: var(--sheon-green); }
.sheon-size.active { background: var(--sheon-green-dark); color: white; border-color: var(--sheon-green-dark); }

.sheon-wc-form { display: none !important; }

.sheon-add-to-cart {
    width: 100%; background: var(--sheon-green-dark);
    color: white; border: none; padding: 18px;
    font-size: 13px; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase;
    border-radius: 2px; cursor: pointer;
    transition: background 0.2s; margin-top: 24px;
    font-family: inherit;
}

.sheon-add-to-cart:hover { background: var(--sheon-green); }
.sheon-add-to-cart:disabled { background: #ccc; cursor: not-allowed; }

.sheon-guarantee {
    margin-top: 16px; padding: 16px;
    background: var(--sheon-cream);
    border-left: 3px solid var(--sheon-green);
    border-radius: 0 4px 4px 0;
    font-size: 13px; color: #555; line-height: 1.9;
}

.sheon-tabs { margin-top: 60px; border-top: 2px solid var(--sheon-cream-dark); padding-top: 40px; grid-column: 1 / -1; }

/* ===== CART PAGE ===== */
.sheon-cart-page {
    max-width: 900px; margin: 0 auto;
    padding: 40px 40px 60px;
    font-family: inherit;
}

.sheon-cart-title {
    font-size: 2.5rem; font-weight: 900;
    color: var(--sheon-black); margin-bottom: 30px;
    text-transform: uppercase; letter-spacing: -1px;
}

.sheon-cart-items {
    border: 1px solid var(--sheon-cream-dark);
    border-radius: 4px; overflow: hidden; margin-bottom: 24px;
}

.sheon-cart-item {
    display: grid; grid-template-columns: 100px 1fr auto;
    gap: 20px; align-items: center;
    padding: 20px; border-bottom: 1px solid var(--sheon-cream-dark);
    background: white;
}

.sheon-cart-item:last-child { border-bottom: none; }

.sheon-cart-img { width: 100px; height: 100px; border-radius: 4px; overflow: hidden; }
.sheon-cart-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.sheon-cart-name { font-size: 15px; font-weight: 700; color: #111; text-decoration: none; display: block; margin-bottom: 4px; }
.sheon-cart-name:hover { color: var(--sheon-green); }
.sheon-cart-meta { font-size: 12px; color: #888; margin-bottom: 8px; }
.sheon-cart-price { font-size: 17px; font-weight: 900; color: #111; margin-bottom: 10px; }

.sheon-cart-qty { display: flex; align-items: center; gap: 8px; }

.sheon-qty-btn {
    width: 34px; height: 34px;
    border: 2px solid var(--sheon-cream-dark);
    background: white; border-radius: 2px;
    cursor: pointer; font-size: 16px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}

.sheon-qty-btn:hover { background: var(--sheon-green-dark); color: white; border-color: var(--sheon-green-dark); }
.sheon-qty-input { width: 44px; height: 34px; border: 2px solid var(--sheon-cream-dark); border-radius: 2px; text-align: center; font-size: 14px; font-weight: 700; }

.sheon-cart-remove {
    width: 34px; height: 34px;
    border: 2px solid #ffcccc; background: #fff5f5;
    border-radius: 2px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #e53e3e; text-decoration: none; transition: all 0.2s; font-size: 16px;
}

.sheon-cart-remove:hover { background: #e53e3e; color: white; border-color: #e53e3e; }

.sheon-coupon { display: flex; gap: 10px; margin-bottom: 24px; }
.sheon-coupon input { flex: 1; padding: 12px 16px; border: 2px solid var(--sheon-cream-dark); border-radius: 2px; font-size: 14px; outline: none; }
.sheon-coupon input:focus { border-color: var(--sheon-green); }
.sheon-coupon button { padding: 12px 24px; background: var(--sheon-green-dark); color: white; border: none; border-radius: 2px; font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.sheon-coupon button:hover { background: var(--sheon-green); }

.sheon-cart-totals { background: var(--sheon-cream); border-radius: 4px; padding: 24px; margin-bottom: 24px; border: 1px solid var(--sheon-cream-dark); }

.sheon-total-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--sheon-cream-dark); font-size: 14px; color: #444; }
.sheon-total-row:last-child { border-bottom: none; font-size: 19px; font-weight: 900; color: #111; padding-top: 16px; }

.sheon-checkout-btn {
    display: block; width: 100%;
    background: var(--sheon-green-dark); color: white;
    padding: 18px; font-size: 13px; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase;
    text-align: center; text-decoration: none;
    border-radius: 2px; transition: background 0.2s;
    border: none; cursor: pointer;
}

.sheon-checkout-btn:hover { background: var(--sheon-green); color: white; }

.sheon-empty-cart { text-align: center; padding: 60px 20px; }
.sheon-empty-cart h3 { font-size: 1.8rem; font-weight: 900; text-transform: uppercase; margin-bottom: 12px; }
.sheon-empty-cart a { display: inline-block; margin-top: 20px; background: var(--sheon-green-dark); color: white; padding: 14px 32px; border-radius: 2px; text-decoration: none; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; font-size: 13px; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .sheon-header { padding: 0 16px; }
    .sheon-nav { display: none; }
    .sheon-menu-btn { display: block; }
    .sheon-hero-content { padding: 0 24px; }
    .sheon-features { gap: 20px; padding: 16px 20px; }
    .sheon-categories { grid-template-columns: 1fr; }
    .sheon-category-card { height: 300px; }
    .sheon-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .sheon-products-section { padding: 0 16px 40px; }
    .sheon-section-header { padding: 40px 16px 24px; }
    .sheon-promo-banner { padding: 40px 24px; flex-direction: column; }
    .sheon-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sheon-why-section { padding: 40px 16px; }
    .sheon-newsletter { padding: 40px 16px; }
    .sheon-newsletter-form { flex-direction: column; }
    .sheon-newsletter-form input { border-radius: 2px; }
    .sheon-newsletter-form button { border-radius: 2px; }
    .sheon-footer { padding: 40px 20px 20px; }
    .sheon-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .sheon-product-wrap { grid-template-columns: 1fr; gap: 0; }
    .sheon-thumbs { display: none; }
    .sheon-summary { padding: 16px; }
    .sheon-title { font-size: 1.6rem; }
    .sheon-cart-page { padding: 16px; }
    .sheon-cart-title { font-size: 1.8rem; }
    .sheon-cart-item { grid-template-columns: 80px 1fr auto; gap: 12px; padding: 12px; }
    .sheon-cart-img { width: 80px; height: 80px; }
    .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .woocommerce ul.products li.product a img { height: 180px !important; }
}
