/* ============================================================
   SHOP — WooCommerce Custom Styles
   Matches the site's #E91E63 pink + #12122b dark palette
   ============================================================ */

:root {
    --shop-pink:   #E91E63;
    --shop-dark:   #12122b;
    --shop-shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shop-radius: 14px;
}

/* ── Shared ─────────────────────────────────────────────────── */
.shop-page, .sp-page { max-width: 100%; overflow-x: hidden; }


/* ============================================================
   SHOP ARCHIVE — /shop/
   ============================================================ */

/* Hero with particle animation */
.shop-hero {
    background: #fff;
    padding: 56px 40px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.shop-hero .particles-canvas {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
}
.shop-hero-inner { position: relative; z-index: 1; }

.shop-eyebrow {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--shop-pink);
    background: rgba(233,30,99,0.07);
    border: 1px solid rgba(233,30,99,0.18);
    padding: 5px 16px; border-radius: 20px;
    margin-bottom: 14px;
}
.shop-hero-title {
    font-size: clamp(28px,5vw,46px) !important;
    font-weight: 800 !important; color: #0f0f1a !important;
    margin: 0 0 12px !important; line-height: 1.1 !important;
}
.shop-hero-sub {
    font-size: 15px; color: #666;
    max-width: 520px; margin: 0 auto 20px !important; line-height: 1.65;
}
.shop-stat {
    display: inline-flex; align-items: center; gap: 7px;
    background: #f5f6f8; border-radius: 24px;
    padding: 8px 20px; font-size: 14px; color: #444; font-weight: 600;
}
.shop-stat strong { font-size: 20px; color: var(--shop-pink); font-weight: 800; }

/* Category filter strip */
.shop-filter-bar {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 8px; padding: 18px 32px;
    border-bottom: 1px solid #eef0f4;
    background: #f8f9fc;
}
.shop-pill {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 7px 18px; border-radius: 20px;
    border: 1.5px solid #e2e5eb;
    background: #fff; color: #444;
    font-size: 13px; font-weight: 600;
    text-decoration: none;
    transition: background .18s, color .18s, border-color .18s;
    white-space: nowrap;
}
.shop-pill:hover  { border-color: var(--shop-pink); color: var(--shop-pink); }
.shop-pill.active { background: var(--shop-dark); border-color: var(--shop-dark); color: #fff; }
.shop-pill-count  {
    background: rgba(0,0,0,0.07); color: #888;
    font-size: 10.5px; font-weight: 700; padding: 1px 6px; border-radius: 10px;
}
.shop-pill.active .shop-pill-count { background: rgba(255,255,255,0.2); color: #fff; }

/* WooCommerce notices */
.shop-notices { max-width: 1280px; margin: 16px auto 0; padding: 0 32px; }
.woocommerce-message, .woocommerce-error, .woocommerce-info {
    border-top: 3px solid var(--shop-pink);
    background: #fff8f8;
    padding: 14px 18px; border-radius: 0 0 10px 10px;
    font-size: 14px; list-style: none; margin: 0;
}

/* ── Shop toolbar: result count + ordering ───── */
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 32px;
    background: #fff;
    border-bottom: 1px solid #eef0f4;
}

/* Result count text — override global p { text-transform:capitalize } */
.shop-toolbar .woocommerce-result-count {
    font-size: 13px;
    color: #888;
    font-weight: 500;
    margin: 0;
    font-style: normal;
    text-transform: none;
}

/* Sort form */
.shop-toolbar .woocommerce-ordering { margin: 0; }

/* Sort select */
.shop-toolbar .woocommerce-ordering select.orderby,
.shop-toolbar .woocommerce-ordering select {
    appearance: none;
    -webkit-appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 10px center / 16px;
    border: 1.5px solid #e0e3ea;
    border-radius: 10px;
    padding: 8px 36px 8px 14px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    color: var(--shop-dark);
    cursor: pointer;
    outline: none;
    transition: border-color .2s;
    min-width: 180px;
}
.shop-toolbar .woocommerce-ordering select:hover,
.shop-toolbar .woocommerce-ordering select:focus {
    border-color: var(--shop-pink);
}

/* Product grid */
.shop-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
    gap: 24px; padding: 32px 32px 16px;
}

/* Product card */
.shop-card {
    background: #fff; border-radius: var(--shop-radius); overflow: hidden;
    box-shadow: var(--shop-shadow);
    transition: transform .22s ease, box-shadow .22s ease;
    display: flex; flex-direction: column;
}
.shop-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); }

.shop-card-img-wrap {
    display: block; aspect-ratio: 1/1; overflow: hidden;
    background: #f3f3f3; position: relative; text-decoration: none;
}
.shop-card-img-wrap img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .4s ease;
}
.shop-card:hover .shop-card-img-wrap img { transform: scale(1.06); }

.shop-sale-badge, .shop-out-badge {
    position: absolute; top: 10px; left: 10px;
    font-size: 10px; font-weight: 800; letter-spacing: .4px;
    text-transform: uppercase; padding: 3px 9px; border-radius: 8px;
}
.shop-sale-badge { background: var(--shop-pink); color: #fff; }
.shop-out-badge  { background: #555; color: #fff; top: 10px; left: auto; right: 10px; }

.shop-card-body {
    padding: 16px 16px 18px; flex: 1; display: flex; flex-direction: column; gap: 6px;
}
.shop-card-cat {
    font-size: 10px; font-weight: 700; letter-spacing: .6px;
    text-transform: uppercase; color: var(--shop-pink);
}
.shop-card-title {
    font-size: 15px !important; font-weight: 700 !important;
    margin: 0 !important; line-height: 1.4 !important;
    text-transform: none !important; flex: 1;
}
.shop-card-title a { color: var(--shop-dark); text-decoration: none; }
.shop-card-title a:hover { color: var(--shop-pink); }
.shop-card-price { font-size: 17px; font-weight: 800; color: var(--shop-dark); }
.shop-card-price del { font-size: 13px; font-weight: 400; opacity: .5; margin-right: 4px; }
.shop-card-price ins { text-decoration: none; color: var(--shop-pink); }

.shop-card-footer { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.shop-btn-cart, .shop-btn-view {
    flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 9px 14px; border-radius: 10px;
    background: var(--shop-dark); color: #fff;
    font-size: 13px; font-weight: 700; text-decoration: none;
    border: none; cursor: pointer; font-family: inherit;
    transition: background .18s, transform .15s;
}
.shop-btn-cart:hover, .shop-btn-view:hover {
    background: var(--shop-pink); transform: translateY(-1px); color: #fff;
}
.shop-btn-more {
    width: 38px; height: 38px; border-radius: 10px;
    border: 1.5px solid #e5e7eb; background: #fafafa;
    display: flex; align-items: center; justify-content: center;
    color: #666; text-decoration: none; flex-shrink: 0;
    transition: border-color .15s, color .15s;
}
.shop-btn-more:hover { border-color: var(--shop-pink); color: var(--shop-pink); }
.shop-btn-oos {
    flex: 1; text-align: center; padding: 9px; border-radius: 10px;
    background: #f3f4f6; color: #999; font-size: 13px; font-weight: 600;
}

/* Pagination */
.shop-pagination {
    display: flex; justify-content: center; gap: 6px;
    padding: 16px 32px 64px; flex-wrap: wrap;
}
.shop-pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 10px;
    border-radius: 10px; border: 1.5px solid #e0e0e0;
    background: #fff; color: #333;
    font-size: 14px; font-weight: 600; text-decoration: none;
    transition: background .15s, color .15s, border-color .15s;
}
.shop-pagination a.page-numbers:hover { border-color: var(--shop-pink); color: var(--shop-pink); }
.shop-pagination .current { background: var(--shop-dark); border-color: var(--shop-dark); color: #fff !important; }
.shop-pagination .dots { border-color: transparent; background: transparent; pointer-events: none; }

.shop-empty { text-align: center; padding: 80px 20px; color: #888; }
.shop-empty p { font-size: 16px; margin-top: 12px; }


/* ============================================================
   SINGLE PRODUCT
   ============================================================ */

.sp-page { background: #f8f9fc; }

.sp-breadcrumb {
    max-width: 1100px; margin: 0 auto;
    padding: 18px 32px 0;
    font-size: 13px; color: #999;
    display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.sp-breadcrumb a { color: #555; text-decoration: none; }
.sp-breadcrumb a:hover { color: var(--shop-pink); }
.sp-bc-current { color: #333; font-weight: 600; }

/* Two-column grid */
.sp-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    padding: 32px 32px 48px; align-items: start;
}

/* Product images */
.sp-images { position: sticky; top: 80px; }
.sp-main-img {
    border-radius: 16px; overflow: hidden; background: #fff;
    box-shadow: var(--shop-shadow); position: relative;
    aspect-ratio: 1/1;
}
.sp-main-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: opacity .18s;
}
.sp-sale-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--shop-pink); color: #fff;
    font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 8px;
    text-transform: uppercase; letter-spacing: .5px;
}
.sp-thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.sp-thumb {
    width: 64px; height: 64px; border-radius: 8px; overflow: hidden;
    border: 2px solid transparent; cursor: pointer; padding: 0; background: #fff;
    transition: border-color .15s;
}
.sp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sp-thumb-active { border-color: var(--shop-pink); }
.sp-thumb:hover   { border-color: var(--shop-dark); }

/* Product details */
.sp-details { display: flex; flex-direction: column; gap: 16px; }
.sp-cats { font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--shop-pink); }
.sp-cats a { color: var(--shop-pink); text-decoration: none; }
.sp-title {
    font-size: clamp(22px,3.5vw,32px) !important; font-weight: 800 !important;
    color: var(--shop-dark) !important; margin: 0 !important; line-height: 1.2 !important;
}
.sp-rating { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #888; }
.sp-rating .star-rating { color: #FBBC04; }
.sp-price { font-size: 28px; font-weight: 800; color: var(--shop-dark); }
.sp-price del { font-size: 18px; font-weight: 400; opacity: .5; margin-right: 6px; }
.sp-price ins { text-decoration: none; color: var(--shop-pink); }
.sp-short-desc { font-size: 14px; color: #555; line-height: 1.7; }

.sp-stock { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; padding: 5px 14px; border-radius: 8px; }
.sp-instock  { background: #f0fdf4; color: #16a34a; }
.sp-outstock { background: #fff1f2; color: #e11d48; }

/* WooCommerce add-to-cart form styling */
.sp-details .quantity { display: flex; align-items: center; gap: 0; margin-right: 10px; }
.sp-details .qty {
    width: 60px; height: 46px; border: 1.5px solid #e0e3ea; border-radius: 10px;
    text-align: center; font-size: 16px; font-weight: 700; font-family: inherit;
    outline: none; -moz-appearance: textfield;
}
.sp-details .qty::-webkit-outer-spin-button,
.sp-details .qty::-webkit-inner-spin-button { -webkit-appearance: none; }
.sp-details .cart { display: flex; align-items: center; gap: 10px; }
.sp-details .single_add_to_cart_button {
    flex: 1; padding: 13px 28px; border: none; border-radius: 12px;
    background: var(--shop-dark); color: #fff;
    font-size: 15px; font-weight: 700; font-family: inherit; cursor: pointer;
    transition: background .2s, transform .15s;
}
.sp-details .single_add_to_cart_button:hover { background: var(--shop-pink); transform: translateY(-1px); }

/* Meta block */
.sp-meta-block { border-top: 1px solid #f0f0f0; padding-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.sp-meta-row { display: flex; gap: 10px; font-size: 13px; }
.sp-meta-row span { color: #999; min-width: 80px; }
.sp-meta-row strong, .sp-meta-row a { color: var(--shop-dark); font-weight: 600; text-decoration: none; }

/* Description section */
.sp-desc-section { max-width: 1100px; margin: 0 auto; padding: 0 32px 48px; }
.sp-desc-title { font-size: 20px !important; font-weight: 700 !important; color: var(--shop-dark) !important; margin: 0 0 16px !important; padding-bottom: 12px; border-bottom: 2px solid rgba(233,30,99,0.12); }
.sp-desc-body { font-size: 15px; color: #444; line-height: 1.75; }

/* Related products */
.sp-related { max-width: 1100px; margin: 0 auto; padding: 0 32px 80px; }
.sp-related h2 { font-size: 20px !important; font-weight: 700 !important; color: var(--shop-dark) !important; margin: 0 0 20px !important; }
.sp-related ul.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 20px; list-style: none; padding: 0; margin: 0; }
.sp-related ul.products li { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--shop-shadow); }
.sp-related ul.products li a img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.sp-related ul.products li .woocommerce-loop-product__title { font-size: 14px !important; font-weight: 700 !important; padding: 12px 14px 4px !important; color: var(--shop-dark) !important; }
.sp-related ul.products li .price { padding: 0 14px 12px; font-size: 15px; font-weight: 700; color: var(--shop-dark); }
.sp-related ul.products li .price ins { text-decoration: none; color: var(--shop-pink); }
.sp-related .button { display: block; margin: 0 14px 14px; padding: 9px; text-align: center; background: var(--shop-dark); color: #fff; border-radius: 8px; font-size: 13px; font-weight: 700; text-decoration: none; transition: background .15s; }
.sp-related .button:hover { background: var(--shop-pink); color: #fff; }


/* ============================================================
   CART & CHECKOUT — Minimal WooCommerce styles
   ============================================================ */

.woo-page { background: #f8f9fc; min-height: 60vh; }
.woo-container {
    max-width: 1100px; margin: 0 auto; padding: 40px 32px 80px;
}

/* Cart table */
.woocommerce-cart-form { background: #fff; border-radius: 14px; padding: 24px; box-shadow: var(--shop-shadow); }
.woocommerce table.shop_table { width: 100%; border-collapse: collapse; font-size: 14px; }
.woocommerce table.shop_table th { padding: 10px 12px; border-bottom: 2px solid #f0f0f0; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: #999; }
.woocommerce table.shop_table td { padding: 16px 12px; border-bottom: 1px solid #f5f5f5; vertical-align: middle; }
.woocommerce table.shop_table .product-thumbnail img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; }
.woocommerce table.shop_table .product-name a { color: var(--shop-dark); font-weight: 600; text-decoration: none; }
.woocommerce table.shop_table .product-name a:hover { color: var(--shop-pink); }
.woocommerce .quantity .qty { width: 60px; padding: 6px; text-align: center; border: 1.5px solid #e0e3ea; border-radius: 8px; font-size: 15px; }
.woocommerce #respond input#submit,
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    background: var(--shop-dark) !important; color: #fff !important;
    border-radius: 10px !important; padding: 11px 22px !important;
    font-size: 14px !important; font-weight: 700 !important; font-family: inherit !important;
    border: none !important; cursor: pointer !important;
    transition: background .18s, transform .15s !important;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover {
    background: var(--shop-pink) !important; transform: translateY(-1px) !important;
}
.woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background: var(--shop-pink) !important;
}

/* Cart totals */
.cart_totals { background: #fff; border-radius: 14px; padding: 24px; box-shadow: var(--shop-shadow); margin-top: 20px; }
.cart_totals h2 { font-size: 17px !important; font-weight: 700 !important; margin: 0 0 16px !important; color: var(--shop-dark) !important; }
.cart_totals table { width: 100%; }
.cart_totals th { font-size: 13px; font-weight: 600; color: #777; padding: 8px 0; }
.cart_totals td { font-size: 15px; font-weight: 700; color: var(--shop-dark); padding: 8px 0; text-align: right; }
.cart_totals .order-total td { font-size: 20px; color: var(--shop-pink); }

/* Checkout form */
.woocommerce-checkout #payment { background: #fff; border-radius: 14px; padding: 24px; }
.woocommerce form .form-row label { font-size: 13px; font-weight: 600; color: #555; margin-bottom: 4px; display: block; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
    width: 100%; padding: 11px 14px; border: 1.5px solid #e0e3ea; border-radius: 8px;
    font-size: 14px; font-family: inherit; outline: none; box-sizing: border-box;
    transition: border-color .2s;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus { border-color: var(--shop-pink); }


/* OOS badge on main product image */
.sp-oos-badge {
    position: absolute; top: 14px; right: 14px;
    background: #374151; color: #fff;
    font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 8px;
    text-transform: uppercase; letter-spacing: .5px;
}

/* Tags in meta block */
.sp-tags a {
    display: inline-block; margin: 2px 4px 2px 0;
    font-size: 12px; font-weight: 600; color: var(--shop-dark);
    background: #f3f4f6; border-radius: 6px; padding: 3px 10px;
    text-decoration: none; transition: background .15s, color .15s;
}
.sp-tags a:hover { background: var(--shop-pink); color: #fff; }

/* Share bar */
.sp-share {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: #888; padding-top: 4px;
}
.sp-share-btn {
    width: 34px; height: 34px; border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    text-decoration: none; transition: background .18s, color .18s;
    border: 1.5px solid #e5e7eb; background: #fafafa; color: #555;
}
.sp-share-fb:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.sp-share-tw:hover { background: #000; border-color: #000; color: #fff; }
.sp-share-wa:hover { background: #25d366; border-color: #25d366; color: #fff; }


/* ============================================================
   PRODUCT TABS  (Description / Additional Info / Reviews)
   ============================================================ */

.sp-tabs-wrap {
    max-width: 1100px; margin: 0 auto; padding: 0 32px 56px;
}

/* Tab nav */
.woocommerce-tabs .wc-tabs {
    list-style: none; padding: 0; margin: 0 0 0;
    display: flex; gap: 0; border-bottom: 2px solid #f0f0f0;
    flex-wrap: wrap;
}
.woocommerce-tabs .wc-tabs li {
    margin-bottom: -2px;
}
.woocommerce-tabs .wc-tabs li a {
    display: block; padding: 13px 24px;
    font-size: 14px; font-weight: 700; color: #888;
    text-decoration: none; border-bottom: 2px solid transparent;
    transition: color .15s, border-color .15s;
}
.woocommerce-tabs .wc-tabs li a:hover { color: var(--shop-dark); }
.woocommerce-tabs .wc-tabs li.active a {
    color: var(--shop-pink);
    border-bottom-color: var(--shop-pink);
}

/* Tab panels */
.woocommerce-Tabs-panel {
    padding: 28px 0 0;
    display: none;
}
.woocommerce-Tabs-panel.active { display: block; }

/* Description tab */
.woocommerce-Tabs-panel--description { font-size: 15px; color: #444; line-height: 1.8; }
.woocommerce-Tabs-panel--description h2,
.woocommerce-Tabs-panel--description h3 { color: var(--shop-dark) !important; margin: 20px 0 10px !important; }
.woocommerce-Tabs-panel--description p { margin-bottom: 14px; }
.woocommerce-Tabs-panel--description ul,
.woocommerce-Tabs-panel--description ol { padding-left: 20px; margin-bottom: 14px; }

/* Additional Information tab — attributes table */
.woocommerce-Tabs-panel--additional_information h2 {
    font-size: 17px !important; font-weight: 700 !important;
    color: var(--shop-dark) !important; margin: 0 0 16px !important;
}
.shop_attributes {
    width: 100%; border-collapse: collapse; font-size: 14px;
}
.shop_attributes th,
.shop_attributes td {
    padding: 10px 14px; text-align: left;
    border-bottom: 1px solid #f3f4f6;
}
.shop_attributes th {
    color: #888; font-weight: 600; width: 35%; background: #f8f9fc;
}
.shop_attributes td { color: var(--shop-dark); font-weight: 500; }
.shop_attributes tr:last-child th,
.shop_attributes tr:last-child td { border-bottom: none; }

/* Reviews tab */
#reviews { font-size: 14px; }
#reviews #comments h2 {
    font-size: 18px !important; font-weight: 700 !important;
    color: var(--shop-dark) !important; margin: 0 0 20px !important;
}
#reviews .woocommerce-Reviews-title { display: none; }

/* Review list */
#reviews .commentlist {
    list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 20px;
}
#reviews .comment_container {
    display: flex; gap: 14px; padding: 18px; background: #fff;
    border-radius: 12px; box-shadow: var(--shop-shadow);
}
#reviews .comment_container img.avatar {
    width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
#reviews .comment-text { flex: 1; }
#reviews .woocommerce-review__author { font-weight: 700; font-size: 14px; color: var(--shop-dark); }
#reviews .woocommerce-review__dash,
#reviews .woocommerce-review__published-date { font-size: 12px; color: #aaa; }
#reviews .star-rating { margin: 4px 0; }
#reviews .description p { font-size: 14px; color: #555; line-height: 1.65; margin: 8px 0 0; }

/* Review form */
#review_form_wrapper { margin-top: 20px; }
#review_form_wrapper h3 {
    font-size: 17px !important; font-weight: 700 !important;
    color: var(--shop-dark) !important; margin: 0 0 16px !important;
}
#review_form .comment-form-rating { margin-bottom: 14px; }
#review_form .comment-form-rating label { font-size: 13px; font-weight: 600; color: #555; display: block; margin-bottom: 6px; }
#review_form .stars a { color: #FBBC04; font-size: 22px; text-decoration: none; }
#review_form .comment-form-author,
#review_form .comment-form-email,
#review_form .comment-form-comment { margin-bottom: 14px; }
#review_form label { font-size: 13px; font-weight: 600; color: #555; display: block; margin-bottom: 4px; }
#review_form input[type="text"],
#review_form input[type="email"],
#review_form textarea {
    width: 100%; padding: 10px 14px; border: 1.5px solid #e0e3ea; border-radius: 8px;
    font-size: 14px; font-family: inherit; outline: none; box-sizing: border-box;
    transition: border-color .2s;
}
#review_form input:focus,
#review_form textarea:focus { border-color: var(--shop-pink); }
#review_form textarea { height: 110px; resize: vertical; }
#review_form .form-submit input {
    background: var(--shop-dark); color: #fff;
    border: none; border-radius: 10px; padding: 11px 28px;
    font-size: 14px; font-weight: 700; font-family: inherit; cursor: pointer;
    transition: background .18s;
}
#review_form .form-submit input:hover { background: var(--shop-pink); }

/* Star rating (WooCommerce) */
.star-rating { color: #FBBC04; font-size: 14px; }
.sp-rating .star-rating { font-size: 14px; }
.sp-rating-count { font-size: 13px; color: #888; text-decoration: none; }
.sp-rating-count:hover { color: var(--shop-pink); }


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
    .sp-grid { grid-template-columns: 1fr; gap: 28px; }
    .sp-images { position: static; }
}
@media (max-width: 768px) {
    .shop-hero { padding: 36px 20px 40px; }
    .shop-filter-bar { padding: 14px 16px; }
    .shop-grid { padding: 20px 16px 16px; gap: 16px; }
    .shop-pagination { padding: 12px 16px 48px; }
    .sp-breadcrumb, .sp-grid, .sp-tabs-wrap, .sp-related { padding-left: 16px; padding-right: 16px; }
    .woo-container { padding: 24px 16px 64px; }
    .woocommerce-tabs .wc-tabs li a { padding: 10px 14px; font-size: 13px; }
    .sp-share { flex-wrap: wrap; }
}
