/* ============================================================
   Casual — Default Page Styles (shop, cart, checkout)
   Loaded before theme CSS so theme overrides take precedence.
   ============================================================ */

/* Shop page layout compatibility */
.shop-area { padding-top: 60px; padding-bottom: 60px; }
.shop-contents-wrapper { display: flex; gap: 24px; }
.shop-sidebar { min-width: 260px; }
.product-grid-wrapper { flex: 1; }

/* Cart & Checkout */
.cart-area { padding-top: 60px; padding-bottom: 60px; }
.checkout-area { padding-top: 60px; padding-bottom: 60px; }

/* Product single */
.single-product-details-area { padding-top: 60px; padding-bottom: 60px; }

/* Price range slider — Bootstrap 5 compatible */
.price-range-slider .noUi-connect { background: #F83A26; }
.price-range-slider .noUi-handle { border-color: #F83A26; }

/* Filter sidebar */
.widget-box { background: #fff; border-radius: 8px; padding: 20px; margin-bottom: 20px; border: 1px solid #e0d8d0; }
.widget-box .widget-title { font-size: 15px; font-weight: 700; color: #222222; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid #F83A26; }

/* Add to cart button */
.add-to-cart-btn { background: #F83A26; color: #fff; border: none; padding: 6px 24px; border-radius: 6px; font-weight: 600; cursor: pointer; transition: background .2s; }
.add-to-cart-btn:hover { background: #d42e1c; }

/* Rating stars */
.rating-star .las.la-star,
.rating-star .las.la-star-half-alt { color: #f59e0b; }
.rating-star .lar.la-star { color: #d1d5db; }

/* =============================================================
   CASUAL THEME — Widget CSS  (cs-* prefix)
   ============================================================= */

/* ── Shared helpers ── */
.cs-section-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:36px; flex-wrap:wrap; gap:12px; }
.cs-section-title { font-family:'Rubik',sans-serif; font-size:22px; font-weight:700; color:#1a1a1a; letter-spacing:.04em; text-transform:uppercase; margin:0; }
.cs-section-view-all { font-size:13px; font-weight:600; color:#F83A26; text-decoration:none; display:inline-flex; align-items:center; gap:4px; transition:gap .2s; }
.cs-section-view-all:hover { gap:8px; }
.cs-no-data { color:#aaa; font-size:14px; text-align:center; padding:40px 0; }

/* ── Hero Section ── */
/* ── Hero Section ── */
.cs-hero { background:#fdf6f0; overflow:hidden; }
.cs-hero-inner { display:flex; min-height:600px; align-items:center; }
/* Left panel */
.cs-hero-left { flex:0 0 48%; display:flex; flex-direction:column; justify-content:center; padding:60px 48px 60px 0; gap:24px; position:relative; }
.cs-hero-eyebrow { font-size:14px; font-weight:500; color:#555; letter-spacing:.01em; }
.cs-hero-title { font-size:clamp(44px,5.8vw,80px); font-weight:800; color:#1a1a1a; line-height:1.03; margin:0; }
/* Circle CTA */
.cs-hero-cta { display:inline-flex; align-items:center; gap:14px; text-decoration:none; align-self:flex-start; }
.cs-hero-cta-circle { width:52px; height:52px; border-radius:50%; background:#F83A26; display:flex; align-items:center; justify-content:center; color:#fff; font-size:20px; flex-shrink:0; transition:background .2s,transform .2s; }
.cs-hero-cta:hover .cs-hero-cta-circle { background:#d42e1c; transform:scale(1.08); }
.cs-hero-cta-text { font-size:15px; font-weight:700; color:#1a1a1a; }
/* Mini product cards */
.cs-hero-mini-products { display:flex; gap:16px; }
.cs-hero-mini-card { background:#fff; border-radius:14px; overflow:hidden; box-shadow:0 2px 16px rgba(0,0,0,.07); width:160px; flex-shrink:0; display:flex; flex-direction:column; }
.cs-hero-mini-img-wrap { display:block; aspect-ratio:4/3; overflow:hidden; }
.cs-hero-mini-img { width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.cs-hero-mini-card:hover .cs-hero-mini-img { transform:scale(1.05); }
.cs-hero-mini-ph { width:100%; height:100%; background:#f0ebe5; display:flex; align-items:center; justify-content:center; color:#ccc; font-size:28px; }
.cs-hero-mini-info { padding:10px 10px 12px 12px; display:flex; align-items:center; justify-content:space-between; gap:8px; }
.cs-hero-mini-text { display:flex; flex-direction:column; gap:3px; min-width:0; }
.cs-hero-mini-name { font-size:12px; font-weight:600; color:#1a1a1a; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.cs-hero-mini-price { font-size:13px; color:#F83A26; font-weight:700; }
.cs-hero-mini-eye { flex-shrink:0; width:32px; height:32px; border-radius:8px; background:#F83A26; color:#fff; display:flex; align-items:center; justify-content:center; font-size:15px; text-decoration:none; transition:background .2s; }
.cs-hero-mini-eye:hover { background:#d42e1c; }
/* Decorative shapes — all relative to <section> */
.cs-hero-deco { position:absolute; pointer-events:none; z-index:0; }
.cs-hero-deco-square { width:16px; height:16px; border:2.5px solid #F83A26; top:6%; left:50%; transform:rotate(12deg); }
.cs-hero-deco-triangle { width:0; height:0; border-left:11px solid transparent; border-right:11px solid transparent; border-bottom:20px solid #F83A26; top:10%; right:18%; }
.cs-hero-deco-dot { width:24px; height:24px; border-radius:50%; background:#F83A26; top:62%; left:58%; }
/* Right panel */
.cs-hero-right { flex:1; position:relative; overflow:visible; min-height:600px; }
/* Filled peach circle + inner ring */
.cs-hero-bg-circle {
    position:absolute;
    right:-100px;
    top:50%;
    transform:translateY(-50%);
    width:580px;
    height:580px;
    border-radius:50%;
    background:rgba(220,148,96,.16);
    pointer-events:none;
    z-index:0;
}
.cs-hero-bg-circle::after {
    content:'';
    position:absolute;
    inset:50px;
    border-radius:50%;
    border:2px solid rgba(200,130,80,.20);
    background:transparent;
}
.cs-hero-model-img { position:absolute; bottom:0; left:50%; transform:translateX(-50%); height:100%; width:auto; max-width:none; object-fit:contain; object-position:bottom center; display:block; z-index:1; }
.cs-hero-model-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; color:#ccc; font-size:80px; }
/* Vertical social links — far right edge */
.cs-hero-social { position:absolute; right:-32px; top:50%; transform:translateY(-50%) rotate(90deg); display:flex; gap:24px; z-index:2; transform-origin:center; }
.cs-hero-social-link { font-size:11px; font-weight:500; color:#aaa; letter-spacing:.14em; text-transform:uppercase; text-decoration:none; white-space:nowrap; transition:color .2s; }
.cs-hero-social-link:hover { color:#F83A26; }

/* ── Category Grid ── */
.cs-catgrid-section { background:#fff; }
.cs-catgrid-row { display:grid; grid-template-columns:repeat(auto-fill,minmax(160px,1fr)); gap:16px; }
.cs-catgrid-card { display:flex; flex-direction:column; align-items:center; background:#fff; border:1px solid #e8e8e8; border-radius:16px; text-decoration:none; transition:box-shadow .2s,transform .2s; padding:24px 16px 20px; text-align:center; }
.cs-catgrid-card:hover { box-shadow:0 6px 24px rgba(0,0,0,.08); transform:translateY(-3px); border-color:#d0d0d0; }
.cs-catgrid-img-wrap { width:100px; height:100px; border-radius:50%; overflow:hidden; margin-bottom:14px; flex-shrink:0; background:#f5f5f5; display:flex; align-items:center; justify-content:center; }
.cs-catgrid-img { width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.cs-catgrid-card:hover .cs-catgrid-img { transform:scale(1.06); }
.cs-catgrid-img-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; color:#ccc; font-size:32px; }
.cs-catgrid-info { display:flex; flex-direction:column; align-items:center; gap:6px; }
.cs-catgrid-name { font-size:14px; font-weight:700; color:#1a1a1a; line-height:1.3; }
.cs-catgrid-count { font-size:12px; color:#888; font-weight:400; }

/* ── Popular Collection ── */
.cs-popular-section { background:#fff; }
.cs-popular-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.cs-popular-card { background:#fff; border-radius:16px; overflow:hidden; display:flex; flex-direction:column; box-shadow:0 2px 12px rgba(0,0,0,.06); transition:box-shadow .2s,transform .2s; }
.cs-popular-card:hover { box-shadow:0 8px 32px rgba(0,0,0,.12); transform:translateY(-4px); }
.cs-popular-img-wrap { display:block; position:relative; background:#f8f4f0; aspect-ratio:3/4; overflow:hidden; }
.cs-popular-img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.cs-popular-card:hover .cs-popular-img { transform:scale(1.05); }
.cs-popular-img-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; color:#ccc; font-size:40px; }
.cs-popular-badge { position:absolute; top:12px; left:12px; background:#F83A26; color:#fff; font-size:11px; font-weight:700; border-radius:20px; padding:3px 10px; }
/* hover overlay for actions */
.cs-popular-img-wrap::after { content:''; position:absolute; inset:0; background:rgba(248,58,38,.08); opacity:0; transition:opacity .2s; }
.cs-popular-card:hover .cs-popular-img-wrap::after { opacity:1; }
.cs-popular-actions { position:absolute; bottom:12px; left:50%; transform:translateX(-50%) translateY(10px); opacity:0; transition:opacity .2s,transform .2s; display:flex; gap:8px; white-space:nowrap; z-index:1; }
.cs-popular-card:hover .cs-popular-actions { opacity:1; transform:translateX(-50%) translateY(0); }
.cs-popular-cart-btn { display:inline-flex; align-items:center; gap:6px; background:#F83A26; color:#fff; font-size:11px; font-weight:700; padding:8px 14px; border-radius:20px; text-decoration:none; }
.cs-popular-cart-btn:hover { background:#d42e1c; color:#fff; }
.cs-popular-body { padding:14px 16px 16px; display:flex; flex-direction:column; gap:6px; }
.cs-popular-name { font-size:14px; font-weight:600; color:#1a1a1a; text-decoration:none; transition:color .2s; display:block; }
.cs-popular-name:hover { color:#F83A26; }
.cs-popular-price-row { display:flex; align-items:center; gap:8px; }
.cs-popular-price { font-size:16px; font-weight:800; color:#F83A26; }
.cs-popular-old-price { font-size:13px; color:#bbb; text-decoration:line-through; }

/* ── Our Store ── */
.cs-store-section { background:#fff; }
.cs-store-layout { display:flex; gap:28px; align-items:flex-start; }
.cs-store-sidebar { width:190px; flex-shrink:0; }
.cs-store-catlist { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:2px; }
.cs-store-catlist li { margin:0; }
.cs-store-cat-btn { width:100%; text-align:left; background:none; border:none; padding:10px 16px; font-size:13px; font-weight:500; color:#666; cursor:pointer; border-radius:8px; transition:background .15s,color .15s; border-left:3px solid transparent; }
.cs-store-cat-btn:hover,.cs-store-cat-btn.active { background:#fff0ee; color:#F83A26; font-weight:700; border-left-color:#F83A26; }
.cs-store-grid { flex:1; display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.cs-store-item { background:#fff; border-radius:14px; overflow:hidden; display:flex; flex-direction:column; box-shadow:0 1px 8px rgba(0,0,0,.06); transition:box-shadow .2s,transform .2s; }
.cs-store-item:hover { box-shadow:0 6px 24px rgba(0,0,0,.10); transform:translateY(-3px); }
.cs-store-img-wrap { display:block; position:relative; background:#f8f4f0; aspect-ratio:4/5; overflow:hidden; }
.cs-store-img { width:100%; height:100%; object-fit:cover; transition:transform .35s; }
.cs-store-item:hover .cs-store-img { transform:scale(1.05); }
.cs-store-img-ph { width:100%; height:100%; display:flex; align-items:center; justify-content:center; color:#ccc; font-size:36px; }
.cs-store-badge { position:absolute; top:10px; left:10px; background:#F83A26; color:#fff; font-size:10px; font-weight:700; border-radius:20px; padding:3px 9px; }
/* add-to-cart slide-up on hover */
.cs-store-hover-bar { position:absolute; bottom:0; left:0; right:0; background:#F83A26; display:flex; align-items:center; justify-content:center; padding:9px; opacity:0; transform:translateY(100%); transition:opacity .2s,transform .2s; }
.cs-store-item:hover .cs-store-hover-bar { opacity:1; transform:translateY(0); }
.cs-store-add-btn { color:#fff; font-size:12px; font-weight:700; text-decoration:none; display:flex; align-items:center; gap:6px; }
.cs-store-info { padding:12px 14px 14px; display:flex; flex-direction:column; gap:5px; }
.cs-store-name { font-size:13px; font-weight:600; color:#1a1a1a; text-decoration:none; display:block; line-height:1.4; }
.cs-store-name:hover { color:#F83A26; }
.cs-store-price-row { display:flex; align-items:center; gap:6px; }
.cs-store-price { font-size:15px; font-weight:800; color:#F83A26; }
.cs-store-old-price { font-size:12px; color:#bbb; text-decoration:line-through; }

/* ── Flash Sale Banner ── */
/* ── Flash Sale Banner ── */
.cs-flash-banner-section { background:#fff; }
.cs-flash-banner-card {
    background: #fff3ed;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 286px;
    position: relative;
}
/* Wave blob decorations */
.cs-flash-wave {
    position: absolute;
    border-radius: 50% 60% 40% 70% / 60% 40% 70% 50%;
    background: rgba(0,0,0,0.04);
    pointer-events: none;
    z-index: 0;
}
.cs-flash-wave-1 { width: 480px; height: 320px; bottom: -120px; left: 180px; transform: rotate(-15deg); }
.cs-flash-wave-2 { width: 360px; height: 240px; top: -90px; left: 360px; transform: rotate(20deg); border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%; }
/* Left column */
.cs-flash-banner-left {
    flex: 0 0 36%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 40px 40px 40px 48px;
    position: relative;
    z-index: 1;
}
.cs-flash-banner-title { font-size: clamp(32px,4vw,56px); font-weight: 800; color: #1a1a1a; margin: 0; line-height: 1.05; }
.cs-flash-banner-sub { font-size: 14px; color: #888; margin: 0; }
/* Circle-arrow store link */
.cs-flash-store-link { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; width: fit-content; }
.cs-flash-store-icon { width: 40px; height: 40px; background: #1a1a1a; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; flex-shrink: 0; transition: background .2s; }
.cs-flash-store-link:hover .cs-flash-store-icon { background: #F83A26; }
.cs-flash-store-text { color: #F83A26; font-size: 14px; font-weight: 700; }
/* Countdown */
.cs-flash-countdown { display: flex; align-items: center; gap: 6px; }
.cs-flash-count-item { display: flex; flex-direction: column; align-items: center; }
.cs-count-num { font-size: 22px; font-weight: 800; color: #1a1a1a; line-height: 1; }
.cs-count-label { font-size: 10px; color: #aaa; text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }
.cs-count-sep { font-size: 20px; font-weight: 700; color: #1a1a1a; line-height: 1; padding-bottom: 10px; }
.cs-flash-finished-msg { font-size: 14px; color: #888; margin: 0; }
/* Center: image */
.cs-flash-banner-center {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: stretch;
    position: relative;
    z-index: 1;
}
.cs-flash-banner-img { max-height: 260px; width: auto; object-fit: contain; display: block; }
.cs-flash-banner-img-ph { display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 64px; width: 100%; height: 100%; }
/* Right: discount badge */
.cs-flash-banner-right {
    flex: 0 0 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 32px;
    position: relative;
    z-index: 1;
}
.cs-flash-discount-badge {
    width: 110px;
    height: 110px;
    background: #F83A26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(240,54,38,.4);
}
.cs-flash-discount-badge span { font-size: 18px; font-weight: 800; color: #fff; text-align: center; line-height: 1.2; }

/* ── Flash Store ── */
.cs-flash-store-section { background:#fdf6f0; }
.cs-flash-store-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:28px; }
.cs-flash-store-arrows { display:flex; gap:8px; }
.cs-flash-arr { width:38px; height:38px; border-radius:50%; border:2px solid #e0d8d0; background:#fff; display:flex; align-items:center; justify-content:center; cursor:pointer; color:#333; font-size:16px; transition:background .2s,border-color .2s,color .2s; }
.cs-flash-arr:hover { background:#F83A26; border-color:#F83A26; color:#fff; }
.cs-flash-slider-wrap { display:flex; gap:20px; overflow-x:auto; scroll-snap-type:x mandatory; -ms-overflow-style:none; scrollbar-width:none; padding-bottom:4px; }
.cs-flash-slider-wrap::-webkit-scrollbar { display:none; }
.cs-flash-item { min-width:210px; max-width:210px; scroll-snap-align:start; background:#fff; border-radius:14px; overflow:hidden; display:flex; flex-direction:column; transition:box-shadow .2s; flex-shrink:0; }
.cs-flash-item:hover { box-shadow:0 4px 20px rgba(0,0,0,.09); }
.cs-flash-img-wrap { display:block; position:relative; aspect-ratio:4/5; overflow:hidden; }
.cs-flash-img { width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.cs-flash-item:hover .cs-flash-img { transform:scale(1.04); }
.cs-flash-img-ph { width:100%; height:100%; background:#f0ebe5; display:flex; align-items:center; justify-content:center; color:#ccc; font-size:36px; }
.cs-flash-sale-tag { position:absolute; top:10px; left:10px; background:#F83A26; color:#fff; font-size:10px; font-weight:700; border-radius:4px; padding:3px 8px; }
.cs-flash-info { padding:14px; display:flex; flex-direction:column; gap:6px; flex:1; }
.cs-flash-name { font-size:13px; font-weight:600; color:#1a1a1a; text-decoration:none; display:block; }
.cs-flash-name:hover { color:#F83A26; }
.cs-flash-price-row { display:flex; align-items:center; gap:6px; }
.cs-flash-price { font-size:14px; font-weight:700; color:#F83A26; }
.cs-flash-old-price { font-size:12px; color:#aaa; text-decoration:line-through; }
.cs-flash-cart-btn { display:inline-flex; align-items:center; gap:6px; background:#1a1a1a; color:#fff; font-size:12px; font-weight:600; padding:8px 14px; border-radius:6px; text-decoration:none; transition:background .2s; margin-top:auto; justify-content:center; }
.cs-flash-cart-btn:hover { background:#F83A26; color:#fff; }

/* ── Blog Updates ── */
.cs-blog-section { background:#fff; }
.cs-blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.cs-blog-card { background:#fdf6f0; border-radius:14px; overflow:hidden; display:flex; flex-direction:column; transition:box-shadow .2s; }
.cs-blog-card:hover { box-shadow:0 4px 20px rgba(0,0,0,.08); }
.cs-blog-img-wrap { display:block; position:relative; aspect-ratio:16/10; overflow:hidden; }
.cs-blog-img { width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.cs-blog-card:hover .cs-blog-img { transform:scale(1.04); }
.cs-blog-img-ph { width:100%; height:100%; background:#f0ebe5; display:flex; align-items:center; justify-content:center; color:#ccc; font-size:40px; }
.cs-blog-cat-tag { position:absolute; top:12px; left:12px; background:#F83A26; color:#fff; font-size:11px; font-weight:700; border-radius:4px; padding:3px 10px; }
.cs-blog-body { padding:18px; display:flex; flex-direction:column; gap:8px; flex:1; }
.cs-blog-date { font-size:12px; color:#999; display:inline-flex; align-items:center; gap:4px; }
.cs-blog-title { font-size:15px; font-weight:700; color:#1a1a1a; text-decoration:none; display:block; line-height:1.4; }
.cs-blog-title:hover { color:#F83A26; }
.cs-blog-excerpt { font-size:13px; color:#777; line-height:1.6; margin:0; }
.cs-blog-read-more { display:inline-flex; align-items:center; gap:4px; color:#F83A26; font-size:13px; font-weight:600; text-decoration:none; margin-top:auto; transition:gap .2s; }
.cs-blog-read-more:hover { gap:8px; }

/* ── Brand Logos ── */
.cs-brands-section { background:#fff; }
.cs-brands-carousel { position:relative; overflow:hidden; }
.cs-brands-slides-wrap { position:relative; min-height:100px; }
.cs-brands-slide { display:none; }
.cs-brands-slide.active { display:block; }
.cs-brands-row { display:flex; align-items:center; justify-content:center; gap:32px; flex-wrap:wrap; padding:16px 0 48px; }
.cs-brand-logo-item { display:flex; align-items:center; justify-content:center; padding:16px 24px; background:#fff; border-radius:10px; transition:box-shadow .2s; text-decoration:none; }
.cs-brand-logo-item:hover { box-shadow:0 4px 16px rgba(0,0,0,.08); }
.cs-brand-logo-img { max-height:48px; max-width:120px; width:auto; object-fit:contain; filter:grayscale(1); opacity:.6; transition:filter .2s,opacity .2s; }
.cs-brand-logo-item:hover .cs-brand-logo-img { filter:grayscale(0); opacity:1; }
.cs-brand-logo-text { font-size:13px; font-weight:600; color:#888; }
.cs-brands-arr { position:absolute; top:50%; transform:translateY(-50%); width:36px; height:36px; border-radius:50%; border:2px solid #e0d8d0; background:#fff; display:flex; align-items:center; justify-content:center; cursor:pointer; color:#333; font-size:14px; z-index:2; transition:background .2s,border-color .2s,color .2s; }
.cs-brands-arr:hover { background:#F83A26; border-color:#F83A26; color:#fff; }
.cs-brands-prev { left:0; }
.cs-brands-next { right:0; }
.cs-brands-dots { display:flex; align-items:center; justify-content:center; gap:8px; padding-bottom:8px; }
.cs-brands-dot { width:8px; height:8px; border-radius:50%; border:none; background:#d0c8c0; cursor:pointer; padding:0; transition:background .2s,width .2s; }
.cs-brands-dot.active { background:#F83A26; width:22px; border-radius:4px; }

/* ── Footer ── */
.cs-footer { background:#fdf6f0; border-top:1px solid #ede5dc; padding-top:60px; }
.cs-footer-main { display:grid; grid-template-columns:1.6fr 1fr 1fr 1.4fr; gap:40px; padding-bottom:50px; border-bottom:1px solid #ede5dc; }
.cs-footer-logo { max-height:48px; width:auto; display:block; margin-bottom:16px; }
.cs-footer-logo-text { font-family:'Rubik',sans-serif; font-size:24px; font-weight:800; color:#1a1a1a; display:block; margin-bottom:16px; }
.cs-footer-logo-link { text-decoration:none; }
.cs-footer-about { font-size:13px; color:#777; line-height:1.7; margin:0 0 20px; }
.cs-footer-social { display:flex; gap:10px; flex-wrap:wrap; }
.cs-footer-social-icon { width:36px; height:36px; border-radius:50%; background:#fff; color:#333; display:flex; align-items:center; justify-content:center; font-size:15px; text-decoration:none; border:1px solid #e0d8d0; transition:background .2s,color .2s,border-color .2s; }
.cs-footer-social-icon:hover { background:#F83A26; color:#fff; border-color:#F83A26; }
.cs-footer-col-title { font-family:'Rubik',sans-serif; font-size:14px; font-weight:700; color:#1a1a1a; text-transform:uppercase; letter-spacing:.08em; margin:0 0 20px; }
.cs-footer-links { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.cs-footer-links li { margin:0; }
.cs-footer-links a { font-size:13px; color:#777; text-decoration:none; transition:color .2s; display:inline-flex; align-items:center; gap:6px; }
.cs-footer-links a:hover { color:#F83A26; }
.cs-footer-newsletter-text { font-size:13px; color:#777; line-height:1.6; margin:0 0 16px; }
.cs-footer-newsletter-form { display:flex; flex-direction:column; gap:10px; }
.cs-footer-email-input { width:100%; padding:11px 14px; border:1px solid #e0d8d0; border-radius:8px; font-size:13px; color:#333; background:#fff; outline:none; transition:border-color .2s; }
.cs-footer-email-input:focus { border-color:#F83A26; }
.cs-footer-subscribe-btn { background:#F83A26; color:#fff; border:none; padding:12px 20px; border-radius:8px; font-size:13px; font-weight:700; cursor:pointer; transition:background .2s; }
.cs-footer-subscribe-btn:hover { background:#d42e1c; }
.cs-footer-bottom { display:flex; align-items:center; justify-content:center; padding:20px 0; }
.cs-footer-copyright { font-size:13px; color:#aaa; text-align:center; }
.cs-footer-copyright a { color:#F83A26; text-decoration:none; }

/* ── Responsive ── */
@media (max-width:1024px) {
    .cs-footer-main { grid-template-columns:1fr 1fr; }
    .cs-store-grid { grid-template-columns:repeat(2,1fr); }
    .cs-blog-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px) {
    .cs-hero-inner { flex-direction:column; }
    .cs-hero-left { padding:40px 24px; }
    .cs-hero-right { min-height:280px; }
    .cs-hero-mini-products { flex-wrap:wrap; }
    .cs-footer-main { grid-template-columns:1fr; }
    .cs-store-layout { flex-direction:column; }
    .cs-store-sidebar { width:100%; }
    .cs-store-catlist { flex-direction:row; flex-wrap:wrap; }
    .cs-store-grid { grid-template-columns:repeat(2,1fr); }
    .cs-blog-grid { grid-template-columns:1fr; }
    .cs-catgrid-row { grid-template-columns:repeat(2,1fr); }
    .cs-popular-grid { grid-template-columns:repeat(2,1fr); }
    .cs-flash-banner-card { flex-direction:column; min-height:auto; }
    .cs-flash-banner-left { flex:none; width:100%; padding:32px 24px 16px; text-align:center; align-items:center; }
    .cs-flash-banner-center { min-height:200px; width:100%; }
    .cs-flash-banner-right { flex:none; width:100%; padding:0 0 24px; }
    .cs-flash-discount-badge { width:88px; height:88px; }
    .cs-flash-discount-badge span { font-size:15px; }
}

/* Casual New Product Card Design */
.casual-new-product-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background-color: #fff;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.casual-new-product-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.casual-new-product-card-thumb {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 200px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.casual-new-product-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.casual-new-product-card:hover .casual-new-product-card-thumb img {
    transform: scale(1.06);
}
.casual-new-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #F83A26;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    z-index: 2;
}
.casual-new-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
    color: #888;
    font-size: 16px;
}
.casual-new-wishlist:hover {
    background: #F83A26;
    border-color: #F83A26;
    color: #fff;
}
.casual-new-product-card-contents {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.casual-new-product-category {
    color: #F83A26;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.casual-new-product-title {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
    line-height: 1.4;
    flex: 1;
}
.casual-new-product-title a {
    color: inherit;
    text-decoration: none;
}
.casual-new-product-title a:hover {
    color: #F83A26;
}
.casual-new-stars {
    margin-bottom: 10px;
    font-size: 12px;
    color: #f59e0b;
}
.casual-new-product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.casual-new-price-sale {
    color: #F83A26;
    font-size: 16px;
    font-weight: 700;
}
.casual-new-price-regular {
    color: #888;
    font-size: 13px;
    text-decoration: line-through;
}
.casual-new-add-to-cart {
    background-color: #F83A26 !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 9px 16px !important;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600 !important;
    font-size: 13px !important;
    border: none !important;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}
.casual-new-add-to-cart:hover {
    background-color: #d42e1c !important;
    color: #fff !important;
    transform: translateY(-1px);
}

/* =============================================================
   CASUAL THEME — Shop / Category Page  (cs-shop-* prefix)
   ============================================================= */

/* Page Banner */
.cs-page-banner {
    background: #fdf6f0;
    padding: 48px 0 36px;
    border-bottom: 1px solid #f0e8e0;
    margin-bottom: 0;
}
.cs-page-banner-title {
    font-family: 'Rubik', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.cs-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #888;
}
.cs-breadcrumb a { color: #F83A26; text-decoration: none; }
.cs-breadcrumb a:hover { text-decoration: underline; }
.cs-breadcrumb-sep { font-size: 11px; color: #bbb; }
.cs-breadcrumb-current { color: #444; }

/* Shop wrap */
.cs-shop-wrap { padding-top: 48px; padding-bottom: 60px; }

/* Sidebar card */
.cs-sidebar-card {
    background: #fff;
    border: 1px solid #e0d8d0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}
.cs-sidebar-title {
    font-family: 'Rubik', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #1a1a1a;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F83A26;
}

/* Search form */
.cs-search-form {
    display: flex;
    border: 1px solid #e0d8d0;
    border-radius: 8px;
    overflow: hidden;
}
.cs-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 9px 12px;
    font-size: 13px;
    background: #fafafa;
    color: #333;
}
.cs-search-btn {
    background: #F83A26;
    border: none;
    color: #fff;
    padding: 0 14px;
    cursor: pointer;
    font-size: 15px;
    transition: background .2s;
}
.cs-search-btn:hover { background: #d42e1c; }

/* Filter items */
.cs-filter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #ede5dc;
    cursor: pointer;
    font-size: 13px;
    color: #444;
    margin: 0;
    gap: 8px;
}
.cs-filter-item:last-of-type { border-bottom: none; }
.cs-filter-cursor { cursor: pointer; flex: 1; }
.cs-filter-count {
    font-size: 11px;
    color: #aaa;
    white-space: nowrap;
}
.cs-cat-checkbox, .cs-rating-filter {
    accent-color: #F83A26;
    width: 15px;
    height: 15px;
    cursor: pointer;
    flex-shrink: 0;
}

/* Stars */
.cs-stars-active { color: #f59e0b; font-size: 14px; }
.cs-stars-empty  { color: #d1d5db; font-size: 14px; }

/* Price inputs */
.cs-price-inputs { display: flex; gap: 8px; }
.cs-price-input {
    flex: 1;
    border: 1px solid #e0d8d0;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 13px;
    outline: none;
    color: #333;
    background: #fafafa;
    width: 100%;
}
.cs-price-input:focus { border-color: #F83A26; }

/* Apply filter button */
.cs-apply-btn {
    display: block;
    background: #F83A26;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
    text-align: center;
}
.cs-apply-btn:hover { background: #d42e1c; }

/* Clear link */
.cs-clear-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #F83A26;
    text-decoration: none;
    margin-top: 10px;
}
.cs-clear-link:hover { color: #d42e1c; text-decoration: underline; }

/* Shop topbar */
.cs-shop-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #e0d8d0;
    border-radius: 10px;
    margin-bottom: 20px;
}
.cs-topbar-count { font-size: 13px; color: #666; }
.cs-topbar-count strong { color: #1a1a1a; }
.cs-sort-select {
    border: 1px solid #e0d8d0;
    border-radius: 7px;
    padding: 7px 12px;
    font-size: 13px;
    color: #444;
    background: #fafafa;
    outline: none;
    cursor: pointer;
}
.cs-sort-select:focus { border-color: #F83A26; }

/* Pagination */
.cs-pagination {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    margin-top: 32px;
}
.cs-page-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #e0d8d0;
    border-radius: 7px;
    background: #fff;
    color: #444;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
}
.cs-page-btn:hover { background: #fdf6f0; border-color: #F83A26; color: #F83A26; }
.cs-page-btn.active { background: #F83A26; border-color: #F83A26; color: #fff; }
.cs-page-ellipsis { color: #aaa; font-size: 14px; padding: 0 4px; }

@media (max-width: 991.98px) {
    .cs-page-banner { padding: 32px 0 24px; }
    .cs-page-banner-title { font-size: 22px; }
    .cs-shop-wrap { padding-top: 32px; padding-bottom: 40px; }
}
@media (max-width: 575.98px) {
    .cs-shop-topbar { flex-direction: column; align-items: flex-start; }
}

/* =============================================================
   PRODUCT DETAILS — cs-pd-* styles
   ============================================================= */

.cs-pd-wrap { padding: 48px 0 64px; }

/* Gallery */
.cs-pd-gallery { display: flex; flex-direction: column; gap: 12px; }
.cs-pd-main-img { border: 1px solid #e0d8d0; border-radius: 12px; overflow: hidden; background: #fdf6f0; }
.cs-pd-main-img img { width: 100%; height: auto; display: block; }
.cs-pd-thumb-list { display: flex; gap: 8px; flex-wrap: wrap; }
.cs-pd-thumb { width: 72px; height: 72px; border: 2px solid #e0d8d0; border-radius: 8px; overflow: hidden; cursor: pointer; transition: border-color .2s; flex-shrink: 0; }
.cs-pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cs-pd-thumb.active,
.cs-pd-thumb:hover { border-color: #F83A26; }

/* Info area */
.cs-pd-badge-inline { display: inline-block; background: #F83A26; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; margin-bottom: 12px; }
.cs-pd-title { font-size: 26px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; line-height: 1.3; }
.cs-pd-meta-row { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; flex-wrap: wrap; }
.cs-pd-instock { color: #16a34a; font-size: 13px; font-weight: 600; }
.cs-pd-outstock { color: #dc2626; font-size: 13px; font-weight: 600; }
.cs-pd-price-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.cs-pd-price { font-size: 28px; font-weight: 700; color: #F83A26; }
.cs-pd-was { font-size: 18px; color: #aaa; text-decoration: line-through; }
.cs-pd-summary { color: #555; font-size: 15px; line-height: 1.7; margin-bottom: 20px; }

/* Options */
.cs-pd-options { margin-bottom: 20px; }
.cs-pd-option-group { margin-bottom: 14px; }
.cs-pd-option-label { font-size: 13px; font-weight: 600; color: #555; display: block; margin-bottom: 6px; }
.cs-pd-option-val { display: inline-block; border: 1px solid #e0d8d0; border-radius: 6px; padding: 2px 8px; font-size: 13px; color: #333; min-width: 60px; background: #fff; }
.cs-pd-option-list { list-style: none; padding: 0; margin: 6px 0 0; display: flex; gap: 8px; flex-wrap: wrap; }
.cs-pd-option-item { border: 1px solid #e0d8d0; border-radius: 6px; padding: 4px 12px; font-size: 13px; font-weight: 500; cursor: pointer; transition: border-color .2s, background .2s, color .2s; }
.cs-pd-option-item:hover,
.cs-pd-option-item.active { border-color: #F83A26; background: #F83A26; color: #fff; }
.cs-pd-color-list { display: flex; gap: 8px; flex-wrap: wrap; }
.cs-pd-color-swatch { width: 28px; height: 28px; border-radius: 50%; border: 2px solid #e0d8d0; cursor: pointer; transition: border-color .2s, transform .15s; }
.cs-pd-color-swatch:hover,
.cs-pd-color-swatch.active { border-color: #F83A26; transform: scale(1.15); }

/* Custom specs table */
.cs-pd-specs { margin-bottom: 16px; }
.cs-pd-specs-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.cs-pd-specs-table th,
.cs-pd-specs-table td { padding: 7px 12px; border: 1px solid #e0d8d0; text-align: left; }
.cs-pd-specs-table th { background: #fdf6f0; font-weight: 600; color: #333; }

/* Qty row */
.cs-pd-qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.cs-pd-qty { display: flex; align-items: center; border: 1px solid #e0d8d0; border-radius: 8px; overflow: hidden; }
.cs-qty-btn { width: 36px; height: 40px; background: #fdf6f0; border: none; font-size: 14px; cursor: pointer; color: #333; transition: background .2s; }
.cs-qty-btn:hover { background: #e0d8d0; }
.cs-qty-input { width: 52px; height: 40px; border: none; border-left: 1px solid #e0d8d0; border-right: 1px solid #e0d8d0; text-align: center; font-size: 15px; font-weight: 600; color: #1a1a1a; }
.cs-pd-item-left { font-size: 12px; font-weight: 600; }

/* Action buttons */
.cs-pd-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; align-items: center; }
.cs-pd-atc-btn { display: inline-flex; align-items: center; gap: 8px; background: #F83A26; color: #fff; border: none; padding: 11px 28px; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none; transition: background .2s; }
.cs-pd-atc-btn:hover { background: #d42e1c; color: #fff; }
.cs-pd-buy-btn { display: inline-flex; align-items: center; gap: 8px; background: #1a1a1a; color: #fff; border: none; padding: 11px 28px; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none; transition: background .2s; }
.cs-pd-buy-btn:hover { background: #333; color: #fff; }
.cs-pd-wish-btn,
.cs-pd-compare-btn { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid #e0d8d0; border-radius: 8px; color: #555; text-decoration: none; font-size: 18px; transition: border-color .2s, color .2s; }
.cs-pd-wish-btn:hover,
.cs-pd-compare-btn:hover { border-color: #F83A26; color: #F83A26; }
.cs-pd-out-of-stock-msg { font-size: 14px; font-weight: 600; margin-bottom: 16px; }

/* Campaign */
.cs-pd-campaign { background: #fff5f5; border: 1px solid #fca5a5; border-radius: 8px; padding: 12px 16px; margin-bottom: 14px; }
.cs-pd-campaign-name { font-size: 14px; font-weight: 700; color: #dc2626; margin: 0 0 6px; }
.cs-pd-campaign-over { font-size: 13px; color: #888; margin: 0; }
.cs-pd-timer { font-size: 13px; color: #dc2626; }

/* Trust pills */
.cs-pd-trust { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 18px; }
.cs-pd-trust span { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: #555; }
.cs-pd-trust span i { color: #F83A26; font-size: 15px; }

/* Meta (category, sku, tags) */
.cs-pd-stock-meta { margin-bottom: 18px; }
.cs-pd-stock-list { list-style: none; padding: 0; margin: 0; font-size: 13px; display: flex; flex-direction: column; gap: 4px; }
.cs-pd-stock-list li { color: #555; }
.cs-pd-stock-list li span { font-weight: 600; color: #333; margin-right: 4px; }
.cs-pd-stock-list li a { color: #F83A26; text-decoration: none; }
.cs-pd-stock-list li a:hover { text-decoration: underline; }

/* Delivery options */
.cs-pd-delivery { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.cs-pd-delivery-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 14px; border: 1px solid #e0d8d0; border-radius: 8px; background: #fdf6f0; }
.cs-pd-delivery-item i { font-size: 20px; color: #F83A26; margin-top: 2px; }
.cs-pd-delivery-item strong { display: block; font-size: 13px; font-weight: 700; color: #1a1a1a; }
.cs-pd-delivery-item span { font-size: 12px; color: #777; }

/* Social share */
.cs-pd-share { margin-bottom: 18px; }

/* Payment logos */
.cs-pd-payment { margin-bottom: 8px; }
.cs-pd-payment-label { font-size: 12px; font-weight: 600; color: #888; display: block; margin-bottom: 8px; }
.cs-pd-payment-list { list-style: none; padding: 0; margin: 0; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.cs-pd-payment-list li img { height: 24px; width: auto; filter: grayscale(1); opacity: .7; transition: filter .2s, opacity .2s; }
.cs-pd-payment-list li img:hover { filter: none; opacity: 1; }

/* Tabs */
.cs-pd-tabs-wrap { margin-top: 52px; }
.cs-tab-nav { display: flex; gap: 0; border-bottom: 2px solid #e0d8d0; margin-bottom: 28px; flex-wrap: wrap; }
.cs-tab-btn { background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -2px; padding: 10px 24px; font-size: 14px; font-weight: 600; color: #777; cursor: pointer; transition: color .2s, border-color .2s; }
.cs-tab-btn.active,
.cs-tab-btn:hover { color: #F83A26; border-bottom-color: #F83A26; }
.cs-tab-panel { display: none; }
.cs-tab-panel.active { display: block; }
.cs-pd-description { font-size: 15px; color: #444; line-height: 1.8; }
.cs-pd-ship-return { font-size: 15px; color: #444; line-height: 1.8; }

/* Reviews */
.cs-review-summary { display: flex; gap: 32px; align-items: flex-start; margin-bottom: 28px; flex-wrap: wrap; }
.cs-review-avg { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 90px; }
.cs-review-avg-num { font-size: 42px; font-weight: 700; color: #1a1a1a; line-height: 1; }
.cs-review-avg-count { font-size: 12px; color: #888; }
.cs-review-bars { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 6px; }
.cs-review-bar-row { display: flex; align-items: center; gap: 10px; }
.cs-review-bar-label { font-size: 12px; color: #555; width: 30px; text-align: right; flex-shrink: 0; }
.cs-review-bar-track { flex: 1; height: 8px; background: #e0d8d0; border-radius: 4px; overflow: hidden; }
.cs-review-bar-fill { height: 100%; background: #F83A26; border-radius: 4px; transition: width .4s; }
.cs-review-bar-cnt { font-size: 12px; color: #888; width: 20px; flex-shrink: 0; }
.cs-review-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px; }
.cs-review-card { display: flex; gap: 14px; padding-bottom: 20px; border-bottom: 1px solid #e0d8d0; }
.cs-review-card:last-child { border-bottom: none; }
.cs-review-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: #e0d8d0; }
.cs-review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.cs-review-body { flex: 1; }
.cs-review-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.cs-review-author { font-size: 14px; font-weight: 700; color: #1a1a1a; }
.cs-review-date { font-size: 12px; color: #aaa; }
.cs-review-stars { margin-bottom: 6px; }
.cs-review-text { font-size: 14px; color: #555; line-height: 1.6; margin: 0; }
.cs-review-more-wrap { text-align: center; margin-bottom: 32px; }
.cs-review-more-btn { display: inline-block; border: 1px solid #F83A26; color: #F83A26; padding: 8px 24px; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; transition: background .2s, color .2s; }
.cs-review-more-btn:hover { background: #F83A26; color: #fff; }
.cs-review-form { border-top: 1px solid #e0d8d0; padding-top: 28px; }
.cs-review-form-title { font-size: 18px; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; }
.cs-review-stars-input { margin-bottom: 14px; }
.cs-review-textarea { width: 100%; border: 1px solid #e0d8d0; border-radius: 8px; padding: 12px; font-size: 14px; color: #333; resize: vertical; min-height: 100px; margin-bottom: 14px; }
.cs-review-textarea:focus { outline: none; border-color: #F83A26; }
.cs-review-login-prompt { text-align: center; padding: 24px; background: #fdf6f0; border-radius: 10px; font-size: 14px; color: #555; }
.cs-review-login-link { color: #F83A26; font-weight: 600; text-decoration: none; }

/* Related products */
.cs-pd-related { margin-top: 56px; }
.cs-pd-related-title { font-size: 20px; font-weight: 700; color: #1a1a1a; margin-bottom: 24px; text-transform: uppercase; letter-spacing: .04em; }

/* Responsive */
@media (max-width: 991.98px) {
    .cs-pd-wrap { padding: 32px 0 48px; }
    .cs-pd-title { font-size: 20px; }
    .cs-pd-price { font-size: 22px; }
}
@media (max-width: 575.98px) {
    .cs-pd-actions { flex-wrap: wrap; }
    .cs-pd-atc-btn,
    .cs-pd-buy-btn { width: 100%; justify-content: center; }
    .cs-review-summary { flex-direction: column; gap: 16px; }
}

/* =============================================================
   CART / WISHLIST — cs-cart-* styles
   ============================================================= */

.cs-cart-steps-wrap { padding-top: 28px; }
.cs-cart-steps { display: flex; align-items: center; justify-content: center; gap: 0; max-width: 400px; margin: 0 auto; }
.cs-cart-step { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cs-cart-step-num { width: 32px; height: 32px; border-radius: 50%; background: #e0d8d0; color: #888; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s; }
.cs-cart-step-label { font-size: 11px; font-weight: 600; color: #888; white-space: nowrap; }
.cs-cart-step.active .cs-cart-step-num { background: #F83A26; color: #fff; }
.cs-cart-step.active .cs-cart-step-label { color: #F83A26; }
.cs-cart-step-line { flex: 1; height: 2px; background: #e0d8d0; min-width: 48px; }
.cs-cart-wrap { padding-top: 32px; padding-bottom: 64px; }

/* Table */
.cs-cart-table-wrap { background: #fff; border: 1px solid #e0d8d0; border-radius: 12px; overflow: hidden; }
.cs-cart-table { width: 100%; border-collapse: collapse; }
.cs-cart-table thead tr { background: #fdf6f0; border-bottom: 2px solid #e0d8d0; }
.cs-cart-table th { padding: 12px 16px; font-size: 12px; font-weight: 700; color: #555; text-transform: uppercase; letter-spacing: .05em; text-align: left; }
.cs-cart-table td { padding: 16px; border-bottom: 1px solid #f0ebe5; vertical-align: middle; }
.cs-cart-table tbody tr:last-child td { border-bottom: none; }
.cs-cart-product { display: flex; align-items: center; gap: 12px; }
.cs-cart-product-img { width: 64px; height: 64px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: #fdf6f0; }
.cs-cart-product-img img { width: 100%; height: 100%; object-fit: cover; }
.cs-cart-product-name { font-size: 14px; font-weight: 600; color: #1a1a1a; text-decoration: none; display: block; line-height: 1.3; }
.cs-cart-product-name:hover { color: #F83A26; }
.cs-cart-product-variants { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.cs-cart-product-variants span { font-size: 11px; color: #888; background: #f5f0eb; padding: 1px 6px; border-radius: 4px; }
.cs-cart-price { font-size: 15px; font-weight: 600; color: #F83A26; }
.cs-cart-qty { display: flex; align-items: center; border: 1px solid #e0d8d0; border-radius: 7px; overflow: hidden; width: fit-content; }
.cs-cart-qty-input { width: 44px; height: 36px; border: none; border-left: 1px solid #e0d8d0; border-right: 1px solid #e0d8d0; text-align: center; font-size: 14px; font-weight: 600; color: #1a1a1a; }
.cs-cart-actions-cell { display: flex; gap: 8px; align-items: center; }
.cs-cart-action-btn { background: none; border: 1px solid #e0d8d0; border-radius: 7px; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; color: #555; font-size: 16px; cursor: pointer; transition: border-color .2s, color .2s; }
.cs-cart-action-btn:hover { border-color: #F83A26; color: #F83A26; }
.cs-cart-remove-btn { background: none; border: 1px solid #e0d8d0; border-radius: 7px; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; color: #aaa; font-size: 14px; cursor: pointer; transition: border-color .2s, color .2s; }
.cs-cart-remove-btn:hover { border-color: #dc2626; color: #dc2626; }

/* Bottom actions */
.cs-cart-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.cs-cart-continue-btn { display: inline-flex; align-items: center; gap: 6px; border: 1px solid #e0d8d0; border-radius: 8px; padding: 9px 18px; font-size: 13px; font-weight: 600; color: #555; text-decoration: none; transition: border-color .2s, color .2s; }
.cs-cart-continue-btn:hover { border-color: #F83A26; color: #F83A26; }
.cs-cart-clear-btn { display: inline-flex; align-items: center; gap: 6px; border: 1px solid #fca5a5; border-radius: 8px; padding: 9px 18px; font-size: 13px; font-weight: 600; color: #dc2626; text-decoration: none; background: none; cursor: pointer; transition: background .2s; }
.cs-cart-clear-btn:hover { background: #fef2f2; }

/* Coupon */
.cs-coupon-card { background: #fff; border: 1px solid #e0d8d0; border-radius: 12px; padding: 18px; margin-bottom: 16px; }
.cs-coupon-label { font-size: 13px; font-weight: 700; color: #333; display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.cs-coupon-label i { color: #F83A26; font-size: 16px; }
.cs-coupon-row { display: flex; gap: 8px; }
.cs-coupon-input { flex: 1; border: 1px solid #e0d8d0; border-radius: 8px; padding: 9px 12px; font-size: 13px; color: #333; }
.cs-coupon-input:focus { outline: none; border-color: #F83A26; }
.cs-coupon-msg { margin-top: 8px; font-size: 12px; }
.cs-coupon-ok { color: #16a34a; }
.cs-coupon-err { color: #dc2626; }

/* Order summary */
.cs-order-summary { background: #fff; border: 1px solid #e0d8d0; border-radius: 12px; padding: 22px; }
.cs-summary-title { font-size: 16px; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid #e0d8d0; }
.cs-summary-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 14px; color: #555; border-bottom: 1px solid #f5f0eb; }
.cs-summary-row:last-child { border-bottom: none; }
.cs-summary-total { font-weight: 700; color: #1a1a1a; font-size: 15px; }
.cs-summary-price { font-weight: 600; color: #F83A26; }
.cs-summary-total .cs-summary-price { font-size: 17px; }
.cs-checkout-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: #F83A26; color: #fff; border-radius: 10px; padding: 13px 24px; font-size: 15px; font-weight: 700; text-decoration: none; margin-top: 18px; transition: background .2s; }
.cs-checkout-btn:hover { background: #d42e1c; color: #fff; }
.cs-summary-secure { font-size: 11px; color: #aaa; text-align: center; margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 4px; }
.cs-summary-secure i { color: #F83A26; }
.cs-summary-icons { display: flex; justify-content: center; gap: 16px; margin-top: 8px; font-size: 20px; color: #ccc; }

/* Empty cart */
.cs-cart-empty { text-align: center; padding: 80px 20px; }
.cs-cart-empty-icon { font-size: 72px; color: #F83A26; opacity: .5; display: block; margin-bottom: 16px; }
.cs-cart-empty-title { font-size: 24px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.cs-cart-empty-sub { font-size: 14px; color: #888; margin-bottom: 28px; }

@media (max-width: 767.98px) {
    .cs-cart-table th:nth-child(3),
    .cs-cart-table td:nth-child(3) { display: none; }
    .cs-cart-table th:nth-child(4),
    .cs-cart-table td:nth-child(4) { display: none; }
}

/* =============================================================
   CHECKOUT — cs-checkout-* styles
   ============================================================= */

.cs-checkout-steps-wrap { padding-top: 24px; }
.cs-step-done { background: #F83A26 !important; }
.cs-cart-step .cs-cart-step-num i { font-size: 14px; }

.cs-checkout-wrap { padding-top: 28px; padding-bottom: 64px; }

/* Box containers */
.cs-checkout-box { background: #fff; border: 1px solid #e0d8d0; border-radius: 12px; padding: 22px; margin-bottom: 20px; }
.cs-checkout-box-title { font-size: 15px; font-weight: 700; color: #1a1a1a; display: flex; align-items: center; gap: 8px; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid #e0d8d0; }
.cs-checkout-box-title i { color: #F83A26; font-size: 18px; }

/* Form inputs */
.cs-checkout-label { font-size: 13px; font-weight: 600; color: #444; display: block; margin-bottom: 5px; }
.cs-checkout-input { width: 100%; border: 1px solid #e0d8d0; border-radius: 8px; padding: 10px 13px; font-size: 14px; color: #333; background: #fff; transition: border-color .2s; }
.cs-checkout-input:focus { outline: none; border-color: #F83A26; }
.cs-checkout-input[readonly] { background: #fdf6f0; color: #888; }
.cs-checkout-select { width: 100%; border: 1px solid #e0d8d0; border-radius: 8px; padding: 10px 13px; font-size: 14px; color: #333; background: #fff; appearance: none; }
.cs-checkout-select:focus { outline: none; border-color: #F83A26; }
.cs-checkout-textarea { width: 100%; border: 1px solid #e0d8d0; border-radius: 8px; padding: 10px 13px; font-size: 14px; color: #333; resize: vertical; }
.cs-checkout-textarea:focus { outline: none; border-color: #F83A26; }
.cs-required { color: #dc2626; }
.cs-checkout-optional { color: #aaa; font-weight: 400; font-size: 12px; }

/* Guest login */
.cs-checkout-remember { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #555; cursor: pointer; }
.cs-checkout-forgot { font-size: 13px; color: #F83A26; text-decoration: none; }
.cs-checkout-signup-note { font-size: 13px; color: #555; }
.cs-checkout-link { color: #F83A26; font-weight: 600; text-decoration: none; }

/* Create account toggle */
.cs-checkout-create-link { font-size: 13px; font-weight: 600; color: #F83A26; text-decoration: none; cursor: pointer; }
.cs-checkout-create-form { background: #fdf6f0; border-radius: 8px; padding: 16px; }

/* COD */
.cs-checkout-cod-row { border: 1px solid #e0d8d0; border-radius: 8px; padding: 12px 14px; }
.cs-checkout-cod-label { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: #333; cursor: pointer; }
.cs-checkout-cod-label i { font-size: 20px; color: #16a34a; }
.cs-checkout-accent { accent-color: #F83A26; width: 16px; height: 16px; cursor: pointer; }

/* Payment gateways */
.cs-gw-wrapper ul { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.cs-gw-wrapper ul li { border: 2px solid #e0d8d0; border-radius: 8px; overflow: hidden; cursor: pointer; height: 48px; min-width: 90px; display: flex; align-items: center; justify-content: center; padding: 4px 8px; transition: border-color .2s; position: relative; }
.cs-gw-wrapper ul li img { height: 28px; width: auto; object-fit: contain; }
.cs-gw-wrapper ul li.selected { border-color: #F83A26; }
.cs-gw-wrapper ul li.selected::after { content: '\f00c'; font-family: 'Line Awesome Free'; font-weight: 900; position: absolute; top: 0; right: 0; width: 16px; height: 16px; background: #F83A26; color: #fff; font-size: 9px; display: flex; align-items: center; justify-content: center; border-radius: 0 0 0 6px; }
.cs-checkout-manual-desc { font-size: 13px; color: #555; padding: 8px; background: #fdf6f0; border-radius: 6px; }

/* Shipping */
.cs-checkout-ship-heading { font-size: 13px; font-weight: 700; color: #333; padding: 8px 0 4px; border-top: 1px solid #f0ebe5; margin-top: 4px; }
.cs-checkout-ship-label { display: flex; align-items: center; gap: 6px; font-size: 13px; cursor: pointer; }

/* Mini cart in summary */
.cs-mini-cart-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid #f0ebe5; }
.cs-mini-cart-row:last-of-type { border-bottom: none; }
.cs-mini-cart-img { width: 48px; height: 48px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: #fdf6f0; }
.cs-mini-cart-img img { width: 100%; height: 100%; object-fit: cover; }
.cs-mini-cart-meta { flex: 1; }
.cs-mini-cart-name { font-size: 13px; font-weight: 600; color: #1a1a1a; line-height: 1.3; }
.cs-mini-cart-variants { font-size: 11px; color: #888; margin-top: 2px; }
.cs-mini-cart-price { font-size: 13px; font-weight: 700; color: #F83A26; white-space: nowrap; }

/* Terms */
.cs-checkout-terms { border-top: 1px solid #e0d8d0; padding-top: 12px; }
.cs-checkout-terms-label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #555; cursor: pointer; }

/* Place order button */
.cs-checkout-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: #F83A26; color: #fff; border: none; border-radius: 10px; padding: 13px 24px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background .2s; }
.cs-checkout-btn:hover { background: #d42e1c; }
.cs-checkout-btn:disabled,
.cs-checkout-btn.checkout_disable:not(.proceed_checkout_btn) { background: #ccc; cursor: not-allowed; }

/* Live dropdown (state/city) */
.live-dropdown { position: absolute; background: #fff; border: 1px solid #e0d8d0; border-radius: 8px; width: 100%; z-index: 9999; max-height: 200px; overflow-y: auto; display: none; box-shadow: 0 4px 12px rgba(0,0,0,.1); }
.live-dropdown div { padding: 9px 12px; cursor: pointer; font-size: 13px; color: #333; }
.live-dropdown div:hover { background: #fdf6f0; color: #F83A26; }

@media (max-width: 575.98px) {
    .cs-checkout-box { padding: 16px; }
    .cs-checkout-wrap { padding-top: 20px; padding-bottom: 40px; }
}

/* =============================================================
   AUTH (LOGIN / REGISTER) — cs-auth-* styles
   ============================================================= */

.cs-auth-wrap { padding: 48px 0 64px; }

/* ── Login: two-column panel ── */
.cs-auth-panel { border: 1px solid #e0d8d0; border-radius: 16px; overflow: hidden; }
.cs-auth-left { padding: 40px 36px; }
.cs-auth-right { background: #F83A26; padding: 40px 36px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.cs-auth-title { font-size: 22px; font-weight: 800; color: #1a1a1a; margin-bottom: 6px; }
.cs-auth-right .cs-auth-title { color: #fff; }
.cs-auth-sub { font-size: 13px; color: #777; margin-bottom: 24px; }
.cs-auth-right .cs-auth-sub { color: rgba(255,255,255,.8); }

/* Promo side */
.cs-auth-promo { text-align: center; }
.cs-auth-logo-link { display: inline-block; margin-bottom: 20px; }
.cs-auth-logo-img { height: 40px; width: auto; filter: brightness(10); }
.cs-auth-promo-title { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.cs-auth-promo-sub { font-size: 13px; color: rgba(255,255,255,.8); margin-bottom: 20px; }
.cs-auth-perks { list-style: none; padding: 0; margin: 0 0 24px; text-align: left; }
.cs-auth-perks li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.9); padding: 5px 0; }
.cs-auth-perks li i { font-size: 16px; color: #fff; flex-shrink: 0; }
.cs-auth-register-btn { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: #F83A26; border-radius: 8px; padding: 11px 24px; font-size: 14px; font-weight: 700; text-decoration: none; transition: background .2s, transform .15s; }
.cs-auth-register-btn:hover { background: #fdf6f0; transform: translateY(-1px); }

/* Form fields */
.cs-auth-field { margin-bottom: 16px; }
.cs-auth-label { font-size: 13px; font-weight: 600; color: #444; display: block; margin-bottom: 5px; }
.cs-auth-input-wrap { position: relative; }
.cs-auth-input-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #aaa; font-size: 16px; pointer-events: none; }
.cs-auth-input { width: 100%; border: 1px solid #e0d8d0; border-radius: 8px; padding: 10px 40px 10px 38px; font-size: 14px; color: #333; background: #fff; transition: border-color .2s; }
.cs-auth-input:not(.cs-auth-input-wrap .cs-auth-input) { padding: 10px 13px; }
.cs-auth-input:focus { outline: none; border-color: #F83A26; }
.cs-auth-eye { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: none; border: none; color: #aaa; font-size: 16px; cursor: pointer; padding: 0; line-height: 1; }
.cs-auth-select { width: 100%; border: 1px solid #e0d8d0; border-radius: 8px; padding: 10px 13px; font-size: 14px; color: #333; background: #fff; appearance: none; }
.cs-auth-select:focus { outline: none; border-color: #F83A26; }

/* Remember / forgot */
.cs-auth-remember-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.cs-auth-remember { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #555; cursor: pointer; }
.cs-auth-forgot { font-size: 13px; color: #F83A26; text-decoration: none; }
.cs-auth-forgot:hover { text-decoration: underline; }

/* Submit button */
.cs-auth-submit-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: #F83A26; color: #fff; border: none; border-radius: 8px; padding: 12px 24px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background .2s; }
.cs-auth-submit-btn:hover { background: #d42e1c; }
.cs-auth-submit-btn:disabled { background: #ccc; cursor: not-allowed; }

/* OTP button */
.cs-auth-otp-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; border: 1px solid #e0d8d0; border-radius: 8px; padding: 11px 24px; font-size: 14px; font-weight: 600; color: #555; text-decoration: none; transition: border-color .2s, color .2s; }
.cs-auth-otp-btn:hover { border-color: #F83A26; color: #F83A26; }

/* Switch note */
.cs-auth-switch-note { font-size: 13px; color: #777; text-align: center; }
.cs-auth-switch-link { color: #F83A26; font-weight: 600; text-decoration: none; }
.cs-auth-switch-link:hover { text-decoration: underline; }

/* Generate password */
.cs-auth-generate-pwd { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: #F83A26; font-weight: 600; text-decoration: none; cursor: pointer; }
.cs-auth-generate-pwd:hover { text-decoration: underline; }

/* ── Register: card layout ── */
.cs-auth-card { background: #fff; border: 1px solid #e0d8d0; border-radius: 16px; padding: 36px; }
.cs-auth-card-head { text-align: center; margin-bottom: 28px; }

/* State/city live dropdown */
.cs-auth-dropdown-wrap { position: relative; }
.cs-auth-dropdown { list-style: none; padding: 0; margin: 0; position: absolute; top: 100%; left: 0; width: 100%; background: #fff; border: 1px solid #e0d8d0; border-radius: 8px; z-index: 999; max-height: 180px; overflow-y: auto; display: none; box-shadow: 0 4px 12px rgba(0,0,0,.1); }
.cs-auth-dropdown-item { padding: 9px 13px; font-size: 13px; color: #333; cursor: pointer; }
.cs-auth-dropdown-item:hover { background: #fdf6f0; color: #F83A26; }

/* Shared required indicator */
.cs-required { color: #dc2626; }

@media (max-width: 767.98px) {
    .cs-auth-left { padding: 28px 20px; }
    .cs-auth-right { padding: 32px 20px; }
    .cs-auth-card { padding: 24px 16px; }
    .cs-auth-promo { text-align: left; }
}

/* ============================================================
   User Dashboard — cs-dash-*
   ============================================================ */

/* Layout */
.cs-dash-section { padding: 48px 0 64px; background: #fdf6f0; min-height: 60vh; }
.cs-dash-wrap { display: flex; gap: 28px; align-items: flex-start; }

/* Sidebar */
.cs-dash-sidebar { width: 240px; flex-shrink: 0; background: #fff; border-radius: 12px; border: 1px solid #e0d8d0; overflow: hidden; }
.cs-dash-user { padding: 20px 18px; border-bottom: 1px solid #e0d8d0; display: flex; align-items: center; gap: 12px; }
.cs-dash-avatar { width: 44px; height: 44px; border-radius: 50%; background: #F83A26; color: #fff; font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cs-dash-user-info { min-width: 0; }
.cs-dash-name { font-size: 14px; font-weight: 700; color: #222; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cs-dash-email { font-size: 12px; color: #888; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.cs-dash-nav { list-style: none; padding: 10px 0; margin: 0; }
.cs-dash-nav li a { display: flex; align-items: center; gap: 10px; padding: 10px 18px; font-size: 13.5px; font-weight: 600; color: #444; text-decoration: none; transition: background .18s, color .18s; }
.cs-dash-nav li a i { font-size: 17px; width: 20px; }
.cs-dash-nav li a:hover { background: #fdf6f0; color: #F83A26; }
.cs-dash-nav li.active a { background: #fff0ee; color: #F83A26; border-left: 3px solid #F83A26; }
.cs-dash-nav li.cs-dash-logout a { color: #dc2626; }
.cs-dash-nav li.cs-dash-logout a:hover { background: #fff0ee; }

/* Content */
.cs-dash-content { flex: 1; min-width: 0; }

/* Mobile toggle */
.cs-dash-mobile-toggle { display: none; width: 100%; margin-bottom: 14px; padding: 10px 16px; background: #fff; border: 1.5px solid #e0d8d0; border-radius: 8px; font-size: 14px; font-weight: 600; color: #444; cursor: pointer; text-align: left; gap: 8px; }

/* Box (card) */
.cs-dash-box { background: #fff; border-radius: 12px; border: 1px solid #e0d8d0; overflow: hidden; }
.cs-dash-box-head { padding: 14px 20px; border-bottom: 1px solid #e0d8d0; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: #222; display: flex; align-items: center; gap: 8px; }
.cs-dash-box-head i { color: #F83A26; font-size: 16px; }
.cs-dash-box-body { padding: 20px; }

/* Section head */
.cs-dash-section-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.cs-dash-section-title { font-size: 18px; font-weight: 800; color: #222; display: flex; align-items: center; gap: 8px; }
.cs-dash-section-title i { color: #F83A26; }

/* Stat cards */
.cs-stat-card { background: #fff; border: 1px solid #e0d8d0; border-radius: 12px; padding: 20px; display: flex; align-items: center; gap: 16px; position: relative; transition: box-shadow .2s; }
.cs-stat-card:hover { box-shadow: 0 4px 16px rgba(248,58,38,.08); }
.cs-stat-icon { width: 48px; height: 48px; border-radius: 10px; background: #fff0ee; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cs-stat-icon i { font-size: 22px; color: #F83A26; }
.cs-stat-value { font-size: 22px; font-weight: 900; color: #222; line-height: 1.1; }
.cs-stat-label { font-size: 12px; color: #888; margin-top: 2px; }
.cs-stat-link { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: #ccc; font-size: 14px; text-decoration: none; transition: color .18s; }
.cs-stat-link:hover { color: #F83A26; }

/* Table */
.cs-dash-table-wrap { overflow-x: auto; }
.cs-dash-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.cs-dash-table thead tr { border-bottom: 2px solid #f0ebe5; }
.cs-dash-table th { padding: 12px 16px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: #888; white-space: nowrap; }
.cs-dash-table td { padding: 14px 16px; border-bottom: 1px solid #f5f0eb; color: #333; }
.cs-dash-table tbody tr:last-child td { border-bottom: none; }
.cs-dash-table tbody tr:hover td { background: #fffaf8; }
.cs-dash-td-bold { font-weight: 700; color: #222; }
.cs-dash-td-muted { color: #888; }
.cs-dash-td-price { font-weight: 700; color: #F83A26; }

/* Badges */
.cs-dash-badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: capitalize; }
.cs-dash-badge-success { background: rgba(76,175,80,.1); color: #388e3c; }
.cs-dash-badge-warning { background: rgba(255,193,7,.1); color: #b8860b; }
.cs-dash-badge-danger  { background: rgba(248,58,38,.1); color: #F83A26; }
.cs-dash-badge-info    { background: rgba(41,182,246,.1); color: #0288d1; }
.cs-dash-badge-muted   { background: rgba(0,0,0,.05); color: #888; }

/* Action buttons */
.cs-dash-action-btn { display: inline-flex; align-items: center; gap: 5px; padding: 5px 12px; border-radius: 6px; font-size: 12px; font-weight: 600; text-decoration: none; border: 1.5px solid #e0d8d0; color: #444; background: #fff; cursor: pointer; transition: all .18s; white-space: nowrap; }
.cs-dash-action-btn:hover { border-color: #F83A26; color: #F83A26; background: #fff0ee; }
.cs-dash-action-primary { background: #F83A26; color: #fff; border-color: #F83A26; }
.cs-dash-action-primary:hover { background: #d42e1c; border-color: #d42e1c; color: #fff; }
.cs-dash-action-danger { color: #F83A26; border-color: #F83A26; background: rgba(248,58,38,.05); }
.cs-dash-action-danger:hover { background: #F83A26; color: #fff; }

/* Order details */
.cs-dash-status-bar { padding: 20px; }
.cs-dash-meta-label { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.cs-dash-meta-value { font-size: 14px; font-weight: 700; color: #222; }
.cs-dash-meta-sub { font-size: 12px; color: #888; }
.cs-dash-total-value { font-size: 20px; font-weight: 900; color: #F83A26; }
.cs-dash-txn-id { margin-top: 12px; padding-top: 12px; border-top: 1px solid #e0d8d0; font-size: 12px; color: #888; }
.cs-dash-txn-id strong { color: #222; }

.cs-dash-order-item { padding: 16px 20px; border-bottom: 1px solid #f5f0eb; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cs-dash-order-item:last-of-type { border-bottom: none; }
.cs-dash-order-item-info { flex: 1; min-width: 0; }
.cs-dash-order-item-name { font-weight: 700; color: #222; }
.cs-dash-order-item-meta { font-size: 12px; color: #888; margin-top: 2px; }
.cs-dash-order-item-price { font-weight: 800; color: #F83A26; font-size: 15px; flex-shrink: 0; }

.cs-dash-summary-rows { padding: 14px 20px; border-top: 1px solid #e0d8d0; }
.cs-dash-summary-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; font-size: 13px; color: #555; border-bottom: 1px dashed #f0ebe5; }
.cs-dash-summary-row:last-child { border-bottom: none; }
.cs-dash-summary-total { padding-top: 10px; font-weight: 700; color: #222; font-size: 14px; }

.cs-dash-billing-box { padding: 20px; }
.cs-dash-billing-grid { font-size: 13px; color: #555; margin-top: 10px; }
.cs-dash-billing-key { font-weight: 700; color: #222; }

/* Empty state */
.cs-dash-empty { text-align: center; padding: 56px 20px; background: #fff; border-radius: 12px; border: 1px solid #e0d8d0; }
.cs-dash-empty-icon { font-size: 52px; color: #e0d8d0; display: block; margin-bottom: 14px; }
.cs-dash-empty-text { color: #888; margin-bottom: 20px; font-size: 14px; }
.cs-dash-empty-btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 22px; background: #F83A26; color: #fff; border-radius: 8px; font-size: 13px; font-weight: 700; text-decoration: none; transition: background .18s; }
.cs-dash-empty-btn:hover { background: #d42e1c; color: #fff; }

/* Manage account tabs */
.cs-account-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.cs-account-tab-btn { padding: 8px 18px; border-radius: 8px; border: 1.5px solid #e0d8d0; background: #fff; color: #444; font-size: 13px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; transition: all .18s; }
.cs-account-tab-btn:hover { border-color: #F83A26; color: #F83A26; }
.cs-account-tab-btn.active { background: #F83A26; color: #fff; border-color: #F83A26; }

/* Form inputs */
.cs-dash-label { display: block; font-size: 12.5px; font-weight: 600; color: #444; margin-bottom: 5px; }
.cs-dash-input { width: 100%; padding: 9px 13px; border: 1.5px solid #e0d8d0; border-radius: 8px; font-size: 13.5px; color: #333; background: #fff; outline: none; transition: border-color .18s; }
.cs-dash-input:focus { border-color: #F83A26; box-shadow: 0 0 0 3px rgba(248,58,38,.08); }
.cs-dash-select { cursor: pointer; }
.cs-dash-textarea { resize: vertical; }
.cs-dash-submit-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; background: #F83A26; color: #fff; border: none; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; transition: background .18s; }
.cs-dash-submit-btn:hover { background: #d42e1c; }
.cs-dash-file-input { font-size: 13px; color: #888; }

/* Avatar upload */
.cs-dash-avatar-upload { display: flex; align-items: center; gap: 16px; padding: 14px 16px; background: #fdf6f0; border: 1px solid #e0d8d0; border-radius: 10px; }
.cs-dash-avatar-label { font-size: 14px; font-weight: 700; color: #222; margin-bottom: 4px; }
.cs-dash-avatar-hint { font-size: 12px; color: #888; }

/* Ticket thread */
.cs-ticket-thread { display: flex; flex-direction: column; gap: 16px; }
.cs-ticket-msg { display: flex; gap: 12px; }
.cs-ticket-msg-user { flex-direction: row-reverse; }
.cs-ticket-avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; color: #fff; }
.cs-ticket-avatar-admin { background: #888; }
.cs-ticket-avatar-user  { background: #F83A26; }
.cs-ticket-bubble { flex: 1; min-width: 0; padding: 14px 18px; border-radius: 10px; }
.cs-ticket-bubble-admin { background: #fff; border: 1.5px solid #e0d8d0; }
.cs-ticket-bubble-user  { background: #fff0ee; border: 1.5px solid rgba(248,58,38,.25); }
.cs-ticket-meta { font-size: 12px; color: #888; margin-bottom: 8px; }
.cs-ticket-text { font-size: 13.5px; color: #333; line-height: 1.6; }
.cs-ticket-attachment { margin-top: 8px; }
.cs-ticket-attachment a { font-size: 12px; color: #F83A26; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.cs-ticket-attachment a:hover { text-decoration: underline; }
.cs-dash-reply-box { padding: 0; }
.cs-ticket-reply-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 12px; }

/* Package orders */
.cs-dash-pkg-card { padding: 20px; }
.cs-dash-pkg-head { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.cs-dash-pkg-name { font-weight: 800; font-size: 16px; color: #222; margin-bottom: 6px; }
.cs-dash-pkg-meta { font-size: 12px; color: #888; display: flex; flex-wrap: wrap; gap: 12px; }
.cs-dash-pkg-meta strong { color: #222; }
.cs-dash-pkg-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; padding-top: 14px; border-top: 1px solid #e0d8d0; }

@media (max-width: 991.98px) {
    .cs-dash-sidebar { width: 220px; }
}

@media (max-width: 767.98px) {
    .cs-dash-mobile-toggle { display: flex; }
    .cs-dash-wrap { flex-direction: column; }
    .cs-dash-sidebar { width: 100%; display: none; }
    .cs-dash-sidebar.open { display: block; }
    .cs-dash-section-head { flex-direction: column; align-items: flex-start; }
    .cs-ticket-reply-footer { flex-direction: column; }
}

/* ============================================================
   Result / Status Pages — cs-result-*
   ============================================================ */
.cs-result-page { padding: 64px 0; background: #fdf6f0; min-height: 50vh; }
.cs-result-card { background: #fff; border: 1px solid #e0d8d0; border-radius: 16px; padding: 48px 32px; text-align: center; }
.cs-result-icon { font-size: 56px; margin-bottom: 16px; }
.cs-result-card-cancel .cs-result-icon { color: #F83A26; }
.cs-result-card-success .cs-result-icon { color: #22c55e; }
.cs-result-title { font-size: 22px; font-weight: 800; color: #222; margin-bottom: 12px; }
.cs-result-sub { font-size: 14px; color: #555; margin-bottom: 8px; }
.cs-result-desc { font-size: 13px; color: #888; margin-bottom: 20px; }
.cs-result-btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 28px; background: #F83A26; color: #fff; border-radius: 8px; font-size: 14px; font-weight: 700; text-decoration: none; transition: background .18s; margin-top: 16px; }
.cs-result-btn:hover { background: #d42e1c; color: #fff; }

/* Payment success wrapper */
.cs-payment-success-page { background: #fdf6f0; }
.cs-payment-success-page .ps-card { border-color: #e0d8d0; border-radius: 12px; }
.cs-payment-success-page .ps-card-head { background: #fff0ee; border-color: #e0d8d0; }
.cs-payment-success-page .ps-card-head-icon { background: rgba(248,58,38,.12); }
.cs-payment-success-page .ps-thank { color: #222; }
.cs-payment-success-page .ps-table thead th { background: #fff0ee; color: #888; }

/* ============================================================
   Campaign Page — cs-campaign-*
   ============================================================ */
.cs-campaign-section { padding: 48px 0 64px; background: #fdf6f0; }
.cs-campaign-timer { position: absolute; bottom: 0; left: 0; right: 0; display: flex; justify-content: center; gap: 4px; padding: 8px 6px; background: rgba(0,0,0,.55); border-radius: 0 0 8px 8px; }
.cs-timer-box { display: flex; flex-direction: column; align-items: center; min-width: 36px; }
.cs-timer-val { font-size: 16px; font-weight: 800; color: #fff; line-height: 1; }
.cs-timer-label { font-size: 9px; color: rgba(255,255,255,.75); text-transform: uppercase; margin-top: 2px; }

/* ============================================================
   Track Order — cs-track-*
   ============================================================ */
.cs-track-section { padding: 64px 0; background: #fdf6f0; }
.cs-track-desc { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 20px; }
.cs-track-result { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: 8px; font-size: 14px; font-weight: 600; }
.cs-track-result i { font-size: 18px; flex-shrink: 0; }
.cs-track-result-success { background: rgba(34,197,94,.1); color: #15803d; border: 1px solid rgba(34,197,94,.25); }
.cs-track-result-error   { background: rgba(248,58,38,.08); color: #F83A26; border: 1px solid rgba(248,58,38,.2); }

/* ============================================================
   Compare Page — cs-compare-*
   ============================================================ */
.cs-compare-section { padding: 48px 0 64px; background: #fdf6f0; }
.cs-compare-card { background: #fff; border: 1px solid #e0d8d0; border-radius: 12px; overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.cs-compare-thumb { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.cs-compare-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cs-compare-thumb a { display: block; height: 100%; }
.cs-compare-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.cs-compare-name { font-size: 14px; font-weight: 700; color: #222; margin-bottom: 8px; }
.cs-compare-name a { color: inherit; text-decoration: none; }
.cs-compare-name a:hover { color: #F83A26; }
.cs-compare-price-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.cs-compare-price { font-weight: 800; color: #F83A26; font-size: 16px; }
.cs-compare-old-price { font-size: 12px; color: #aaa; text-decoration: line-through; }
.cs-compare-sku { font-size: 12px; color: #888; margin-bottom: 10px; }
.cs-compare-list { list-style: none; padding: 0; margin: 0 0 12px; flex: 1; }
.cs-compare-list li { display: flex; gap: 8px; padding: 7px 0; border-bottom: 1px dashed #f0ebe5; font-size: 12.5px; }
.cs-compare-list li:last-child { border-bottom: none; }
.cs-compare-key { font-weight: 700; color: #444; flex-shrink: 0; min-width: 80px; }
.cs-compare-val { color: #555; }
.cs-compare-desc .cs-compare-val { font-size: 12px; color: #888; }
.cs-compare-remove { display: inline-flex; align-items: center; gap: 5px; padding: 6px 14px; border: 1.5px solid #F83A26; color: #F83A26; background: rgba(248,58,38,.05); border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all .18s; margin-top: auto; }
.cs-compare-remove:hover { background: #F83A26; color: #fff; }

/* ============================================================
   Restricted Page — cs-restricted-*
   ============================================================ */
.cs-restricted-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: #fdf6f0; padding: 40px 20px; }
.cs-restricted-card { background: #fff; border: 1px solid #e0d8d0; border-radius: 16px; padding: 48px 40px; text-align: center; max-width: 480px; width: 100%; }
.cs-restricted-logo { max-width: 180px; margin: 0 auto 24px; }
.cs-restricted-logo img { max-width: 100%; }
.cs-restricted-icon { font-size: 52px; color: #F83A26; margin-bottom: 16px; }
.cs-restricted-title { font-size: 20px; font-weight: 800; color: #222; margin-bottom: 10px; }
.cs-restricted-msg { font-size: 14px; color: #666; margin-bottom: 24px; }

/* ============================================================
   Ajax Login Form — cs-ajax-login-*
   ============================================================ */
.cs-ajax-login-wrap { max-width: 480px; }
.cs-ajax-login-notice { font-size: 14px; color: #555; margin-bottom: 20px; padding: 12px 16px; background: #fdf6f0; border-left: 3px solid #F83A26; border-radius: 4px; }
.cs-ajax-login-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.cs-ajax-login-remember { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #555; cursor: pointer; }
.cs-ajax-login-forgot { font-size: 13px; color: #F83A26; text-decoration: none; }
.cs-ajax-login-forgot:hover { text-decoration: underline; }

/* Package features list */
.cs-pkg-features { list-style: none; padding: 0; margin: 0; }
.cs-pkg-features li { display: flex; align-items: flex-start; gap: 8px; padding: 6px 0; font-size: 13.5px; color: #444; border-bottom: 1px dashed #f0ebe5; }
.cs-pkg-features li:last-child { border-bottom: none; }
.cs-pkg-features li i { color: #22c55e; font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.cs-pkg-logged-in { padding: 10px 14px; background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.2); border-radius: 8px; font-size: 13.5px; color: #15803d; display: flex; align-items: center; gap: 8px; }
.cs-pkg-logged-in i { font-size: 16px; }

@media (max-width: 767.98px) {
    .cs-result-card { padding: 32px 20px; }
    .cs-restricted-card { padding: 32px 20px; }
    .cs-compare-section .row { flex-direction: column; }
}

/* ============================================================
   Blog Pages — cs-blog-*
   ============================================================ */
.cs-blog-section { padding: 48px 0 64px; background: #fdf6f0; }

/* Card (listing) */
.cs-blog-card { background: #fff; border: 1px solid #e0d8d0; border-radius: 12px; overflow: hidden; height: 100%; display: flex; flex-direction: column; transition: box-shadow .18s; }
.cs-blog-card:hover { box-shadow: 0 6px 24px rgba(248,58,38,.09); }
.cs-blog-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #f5ede8; }
.cs-blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .28s; }
.cs-blog-card:hover .cs-blog-thumb img { transform: scale(1.04); }
.cs-blog-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.cs-blog-thumb-placeholder i { font-size: 40px; color: #e0d8d0; }
.cs-blog-cat { position: absolute; top: 12px; left: 12px; display: inline-block; padding: 4px 10px; background: #F83A26; color: #fff; border-radius: 20px; font-size: 11px; font-weight: 700; text-decoration: none; letter-spacing: .3px; transition: background .18s; }
.cs-blog-cat:hover { background: #d42e1c; color: #fff; }
.cs-blog-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.cs-blog-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 10px; }
.cs-blog-meta span, .cs-blog-meta a { font-size: 12px; color: #888; display: flex; align-items: center; gap: 4px; text-decoration: none; }
.cs-blog-meta a:hover { color: #F83A26; }
.cs-blog-meta i { font-size: 14px; }
.cs-blog-title { font-size: 16px; font-weight: 700; color: #222; margin-bottom: 8px; line-height: 1.45; }
.cs-blog-title a { color: inherit; text-decoration: none; }
.cs-blog-title a:hover { color: #F83A26; }
.cs-blog-excerpt { font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 14px; flex: 1; }
.cs-blog-read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: #F83A26; text-decoration: none; margin-top: auto; transition: gap .18s; }
.cs-blog-read-more:hover { gap: 10px; color: #d42e1c; }
.cs-blog-pagination { display: flex; justify-content: center; }

/* Article (single) */
.cs-blog-article { background: #fff; border: 1px solid #e0d8d0; border-radius: 12px; overflow: hidden; }
.cs-blog-article-img { width: 100%; max-height: 420px; overflow: hidden; }
.cs-blog-article-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cs-blog-article-body { padding: 28px 32px; }
.cs-blog-article-title { font-size: 26px; font-weight: 800; color: #222; margin: 10px 0 16px; line-height: 1.35; }
.cs-blog-article-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #f0ebe5; }
.cs-blog-article-meta span, .cs-blog-article-meta a { font-size: 13px; color: #888; display: flex; align-items: center; gap: 5px; text-decoration: none; }
.cs-blog-article-meta a:hover { color: #F83A26; }
.cs-blog-article-meta i { font-size: 15px; }
.cs-blog-article-content { font-size: 15px; color: #444; line-height: 1.75; }
.cs-blog-article-content p { margin-bottom: 16px; }
.cs-blog-article-content h2, .cs-blog-article-content h3 { color: #222; margin: 24px 0 12px; font-weight: 700; }
.cs-blog-article-content img { max-width: 100%; border-radius: 8px; margin: 16px 0; }
.cs-blog-article-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-top: 28px; padding-top: 20px; border-top: 1px solid #f0ebe5; }
.cs-blog-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cs-blog-share { display: flex; align-items: center; gap: 8px; }
.cs-blog-load-more { display: inline-flex; align-items: center; gap: 6px; padding: 10px 26px; background: transparent; border: 1.5px solid #F83A26; color: #F83A26; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; transition: all .18s; }
.cs-blog-load-more:hover { background: #F83A26; color: #fff; }

/* Comments */
.cs-comment { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid #f0ebe5; }
.cs-comment:last-child { border-bottom: none; }
.cs-comment-avatar { flex-shrink: 0; }
.cs-comment-avatar img, .cs-comment-avatar .avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.cs-comment-avatar-sm img, .cs-comment-avatar-sm .avatar { width: 36px; height: 36px; }
.cs-comment-body { flex: 1; }
.cs-comment-author { font-size: 14px; font-weight: 700; color: #222; margin-bottom: 2px; }
.cs-comment-author a { color: inherit; text-decoration: none; }
.cs-comment-date { font-size: 12px; color: #aaa; margin-bottom: 8px; }
.cs-comment-text { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 8px; }
.cs-comment-reply { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: #F83A26; background: rgba(248,58,38,.07); border: none; border-radius: 5px; padding: 4px 12px; cursor: pointer; transition: background .18s; }
.cs-comment-reply:hover { background: rgba(248,58,38,.14); }
.cs-comment-reply-item { margin-top: 14px; padding-left: 16px; border-left: 2px solid #f0ebe5; }

/* ============================================================
   Blog Sidebar — cs-sb-*
   ============================================================ */
.cs-sb-card { background: #fff; border: 1px solid #e0d8d0; border-radius: 12px; padding: 22px 24px; margin-bottom: 24px; }
.cs-sb-title { font-size: 15px; font-weight: 800; color: #222; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid #F83A26; display: inline-block; }
.cs-sb-search { display: flex; gap: 0; border: 1.5px solid #e0d8d0; border-radius: 8px; overflow: hidden; background: #fdf6f0; }
.cs-sb-search input { flex: 1; border: none; background: transparent; padding: 10px 14px; font-size: 13.5px; color: #333; outline: none; }
.cs-sb-search input::placeholder { color: #aaa; }
.cs-sb-search button { border: none; background: #F83A26; color: #fff; padding: 0 16px; font-size: 16px; cursor: pointer; transition: background .18s; }
.cs-sb-search button:hover { background: #d42e1c; }

/* Recent posts */
.cs-sb-recent { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px dashed #f0ebe5; }
.cs-sb-recent:last-child { border-bottom: none; }
.cs-sb-recent-thumb { flex-shrink: 0; width: 64px; height: 56px; border-radius: 7px; overflow: hidden; }
.cs-sb-recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cs-sb-recent-info { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.cs-sb-recent-title { font-size: 13px; font-weight: 700; color: #222; text-decoration: none; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cs-sb-recent-title:hover { color: #F83A26; }
.cs-sb-recent-date { font-size: 11.5px; color: #aaa; display: flex; align-items: center; gap: 4px; }

/* Categories */
.cs-sb-cat-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed #f0ebe5; }
.cs-sb-cat-row:last-child { border-bottom: none; }
.cs-sb-cat-link { font-size: 13.5px; color: #444; text-decoration: none; font-weight: 600; transition: color .18s; }
.cs-sb-cat-link:hover { color: #F83A26; }
.cs-sb-cat-count { font-size: 12px; color: #fff; background: #F83A26; border-radius: 20px; padding: 1px 8px; font-weight: 700; }

/* Tags */
.cs-sb-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cs-sb-tag { display: inline-flex; align-items: center; gap: 4px; padding: 5px 12px; border: 1.5px solid #e0d8d0; border-radius: 20px; font-size: 12px; color: #555; text-decoration: none; transition: all .18s; }
.cs-sb-tag:hover { border-color: #F83A26; color: #F83A26; background: rgba(248,58,38,.05); }
.cs-sb-tag i { font-size: 13px; }

/* ============================================================
   Quick View Modal — cs-qv-*
   ============================================================ */
.cs-qv-modal { border: none; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.18); }
.cs-qv-close { position: absolute; top: 14px; right: 14px; z-index: 10; width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid #e0d8d0; background: #fff; color: #555; display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; transition: all .18s; }
.cs-qv-close:hover { background: #F83A26; border-color: #F83A26; color: #fff; }
.cs-qv-img-wrap { position: relative; height: 100%; min-height: 360px; background: #fdf6f0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cs-qv-img-wrap img { width: 100%; height: 100%; object-fit: contain; max-height: 480px; }
.cs-qv-body { padding: 28px 30px; height: 100%; overflow-y: auto; }

@media (max-width: 991.98px) {
    .cs-blog-article-body { padding: 20px; }
    .cs-blog-article-title { font-size: 21px; }
    .cs-qv-body { padding: 20px; }
    .cs-qv-img-wrap { min-height: 240px; }
}
@media (max-width: 767.98px) {
    .cs-sb-card { padding: 16px 18px; }
    .cs-blog-article-body { padding: 16px; }
}

/* ============================================================
   Digital Shop — Syotimer Countdown (.discount-timer)
   Used by: digital-shop campaign, category, all-products
   ============================================================ */
.discount-timer { position: absolute; bottom: 20px; left: 0; right: 0; text-align: center; margin: 0 20px; z-index: 95; }
.discount-timer .global-timer .syotimer__body { gap: 10px 15px; justify-content: space-between; display: flex; }
.discount-timer .global-timer .syotimer__body .syotimer-cell { background-color: rgba(248,58,38,.1); padding: 10px 20px; min-width: 80px; }
.discount-timer .global-timer .syotimer__body .syotimer-cell .syotimer-cell__value { font-size: 32px; line-height: 36px; }
.discount-timer .global-timer .syotimer__body .syotimer-cell .syotimer-cell__unit { font-size: 18px; line-height: 28px; }
@media (max-width: 1399.98px) {
    .discount-timer .global-timer .syotimer__body { gap: 10px; }
    .discount-timer .global-timer .syotimer__body .syotimer-cell .syotimer-cell__value { font-size: 28px; }
    .discount-timer .global-timer .syotimer__body .syotimer-cell .syotimer-cell__unit { font-size: 16px; }
}

/* ============================================================
   Digital Product Details — campaign countdown wrapper
   ============================================================ */
.campaign_countdown_wrapper { text-align: center; z-index: 95; }
.campaign_countdown_wrapper .global-timer .syotimer__body { gap: 10px 15px; justify-content: space-between; display: flex; }
.campaign_countdown_wrapper .global-timer .syotimer__body .syotimer-cell { background-color: rgba(248,58,38,.1); padding: 10px 20px; min-width: 100px; }
.campaign_countdown_wrapper .global-timer .syotimer__body .syotimer-cell .syotimer-cell__value { font-size: 32px; line-height: 36px; }
.campaign_countdown_wrapper .global-timer .syotimer__body .syotimer-cell .syotimer-cell__unit { font-size: 18px; line-height: 28px; }
@media (max-width: 1399.98px) {
    .campaign_countdown_wrapper .global-timer .syotimer__body { gap: 10px; }
    .campaign_countdown_wrapper .global-timer .syotimer__body .syotimer-cell .syotimer-cell__value { font-size: 28px; }
    .campaign_countdown_wrapper .global-timer .syotimer__body .syotimer-cell .syotimer-cell__unit { font-size: 16px; }
}

/* ============================================================
   Digital Shop Checkout — payment gateway & coupon selectors
   ============================================================ */
.payment-gateway-wrapper ul { flex-wrap: wrap; display: flex; list-style: none; padding: 0; margin: 0; }
.payment-gateway-wrapper ul li { max-width: 100px; cursor: pointer; box-sizing: border-box; height: 50px; display: flex; align-items: center; position: relative; overflow: hidden; margin: 3px; border: 1px solid #ddd; }
.payment-gateway-wrapper ul li:before { border: 2px solid #F83A26; position: absolute; right: 0; top: 0; width: 100%; height: 100%; content: ''; visibility: hidden; opacity: 0; transition: all .3s; }
.payment-gateway-wrapper ul li:after { position: absolute; right: 0; top: 0; width: 15px; height: 15px; background-color: #F83A26; content: "\f00c"; font-weight: 900; color: #fff; font-family: 'Line Awesome Free'; font-size: 10px; line-height: 10px; text-align: center; padding-top: 2px; padding-left: 2px; visibility: hidden; opacity: 0; transition: all .3s; }
.payment-gateway-wrapper ul li.selected:after, .payment-gateway-wrapper ul li.selected:before { visibility: visible; opacity: 1; }
.plan_warning small { font-size: 15px; }
.coupon-radio-item { display: flex; align-items: baseline; gap: 5px; }
.coupon-radio-item input { appearance: none; background-color: #fff; margin: 0; font: inherit; color: currentColor; width: 16px; height: 16px; border: 1px solid currentColor; border-radius: 50%; position: relative; transition: all .2s; }
.coupon-radio-item input:before { content: ""; position: absolute; height: calc(100% - 6px); width: calc(100% - 6px); top: 3px; left: 3px; background-color: #F83A26; transform: scale(0); border-radius: 50%; transition: all .2s; }
.coupon-radio-item input:checked::before { transform: scale(1); }
.coupon-radio-item input:checked { border-color: #F83A26; }
.coupon-contents-details-list-item { font-size: 16px; padding: 7px 0; }
.coupon-contents-details-list { padding: 10px 0; }
.coupon-contents-details-list > h6 { padding-bottom: 15px; }

/* ============================================================
   Product card — placeholder thumb + badges
   ============================================================ */
.casual-new-thumb-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 200px; color: #e0d8d0; font-size: 40px; background: #fdf6f0; }

/* cs-product-badges — stacked badge container */
.cs-product-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 5px; z-index: 2; }
.cs-product-badge { display: inline-block; padding: 2px 8px; font-size: 11px; font-weight: 700; border-radius: 4px; color: #fff; }
.cs-product-badge-sale { background: #F83A26; }
.cs-product-badge-new { background: #222; }
.cs-product-badge-campaign { background: #F83A26; }

/* cs-display-field — read-only input-like display */
.cs-display-field { background: #fdf6f0; cursor: default; border: 1.5px solid #e0d8d0; border-radius: 8px; padding: 10px 14px; font-size: 14px; color: #333; }
.cs-display-field-price { font-weight: 700; color: #F83A26; }
.cs-display-field-note { font-size: 11px; color: #888; display: block; margin-top: 4px; }
.cs-display-field-hint { font-size: 12px; color: #888; margin-top: 4px; display: block; }

/* Cart product type badge */
.cs-cart-type-badge { display: inline-block; padding: 1px 7px; background: #F83A26; color: #fff; border-radius: 4px; font-size: 10px; font-weight: 700; vertical-align: text-top; letter-spacing: .3px; }

/* Misc utility classes */
.cs-blog-cat-block { margin-bottom: 14px; display: inline-block; }
.cs-blog-login-hint { color: #888; margin-bottom: 16px; font-size: 14px; }
.cs-inline-flex { display: inline-flex !important; }
.cs-pkg-guest-label { cursor: pointer; font-size: 14px; font-weight: 600; }
.cs-icon-success { color: #22c55e; }
.cs-price-period { font-size: 13px; font-weight: 400; color: #888; }
.cs-form-narrow { max-width: 480px; }

/* ============================================================
   Digital Shop — Product Details (cs-digi-*)
============================================================ */
.cs-digi-detail-section { padding: 56px 0 64px; background: #fdf6f0; }
.cs-digi-detail-wrap { background: #fff; border-radius: 12px; border: 1px solid #e0d8d0; overflow: hidden; }
.cs-digi-detail-flex { display: grid; grid-template-columns: 260px 1fr; gap: 0; }
.cs-digi-thumb-wrap { padding: 28px 24px; border-right: 1px solid #f0ebe5; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cs-digi-thumb { width: 100%; max-width: 210px; aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,.12); }
.cs-digi-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cs-digi-contents { padding: 28px 32px; }
.cs-digi-title { font-size: 22px; font-weight: 800; color: #1a1a1a; line-height: 1.3; margin-bottom: 4px; }
.cs-digi-author { font-size: 13px; color: #888; margin-bottom: 4px; }
.cs-digi-price-row { display: flex; align-items: center; gap: 10px; margin: 14px 0; }
.cs-digi-price-sale { font-size: 22px; font-weight: 800; color: #F83A26; }
.cs-digi-price-regular { font-size: 14px; color: #aaa; text-decoration: line-through; }
.cs-digi-price-free { font-size: 22px; font-weight: 800; color: #22c55e; }
.cs-digi-downloads { font-size: 13px; color: #666; margin-bottom: 14px; }
.cs-digi-downloads span { font-weight: 700; color: #1a1a1a; }
.cs-digi-btns { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.cs-digi-btn-outline { display: inline-flex; align-items: center; gap: 6px; padding: 9px 20px; border: 1.5px solid #F83A26; color: #F83A26; background: transparent; border-radius: 6px; font-size: 13px; font-weight: 600; text-decoration: none; cursor: pointer; transition: all .18s; }
.cs-digi-btn-outline:hover { background: #F83A26; color: #fff; }
.cs-digi-btn-primary { display: inline-flex; align-items: center; gap: 6px; padding: 9px 20px; border: 1.5px solid #F83A26; color: #fff; background: #F83A26; border-radius: 6px; font-size: 13px; font-weight: 600; text-decoration: none; cursor: pointer; transition: all .18s; }
.cs-digi-btn-primary:hover { background: #d42e1c; border-color: #d42e1c; color: #fff; }
.cs-digi-meta-list { list-style: none; padding: 0; margin: 16px 0 0; border-top: 1px solid #f0ebe5; }
.cs-digi-meta-item { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px dashed #f0ebe5; font-size: 13px; }
.cs-digi-meta-label { color: #999; flex-shrink: 0; min-width: 90px; }
.cs-digi-meta-value { color: #333; font-weight: 600; }
.cs-digi-meta-value a { color: #F83A26; text-decoration: none; }
.cs-digi-share { display: flex; align-items: center; gap: 10px; margin-top: 20px; padding-top: 16px; border-top: 1px solid #f0ebe5; }
.cs-digi-share-label { font-size: 13px; color: #888; font-weight: 600; }

/* Sidebar */
.cs-digi-sidebar { background: #fff; border-radius: 12px; border: 1px solid #e0d8d0; overflow: hidden; }
.cs-digi-sidebar-item { padding: 14px 18px; border-bottom: 1px solid #f0ebe5; }
.cs-digi-sidebar-item:last-child { border-bottom: none; }
.cs-digi-sidebar-label { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: #aaa; font-weight: 700; display: block; margin-bottom: 4px; }
.cs-digi-sidebar-value { font-size: 14px; font-weight: 700; color: #1a1a1a; margin: 0; }

/* Description / Review Tabs */
.cs-digi-tabs-section { padding: 48px 0 64px; background: #fdf6f0; }
.cs-digi-tab-list { display: flex; border-bottom: 2px solid #e0d8d0; margin-bottom: 0; padding: 0; list-style: none; }
.cs-digi-tab-btn { padding: 10px 22px; font-size: 14px; font-weight: 600; color: #888; background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -2px; cursor: pointer; transition: all .18s; }
.cs-digi-tab-btn.active,.cs-digi-tab-list li.active .cs-digi-tab-btn { color: #F83A26; border-bottom-color: #F83A26; }
.cs-digi-tab-panel { display: none; background: #fff; border-radius: 0 0 10px 10px; border: 1px solid #e0d8d0; border-top: none; padding: 28px; }
.cs-digi-tab-panel.active { display: block; }
.cs-digi-desc-body { font-size: 14.5px; line-height: 1.8; color: #444; }
.cs-digi-review-item { padding: 18px 0; border-top: 1px solid #f0ebe5; }
.cs-digi-review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.cs-digi-review-avatar { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.cs-digi-review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.cs-digi-review-author { font-size: 14px; font-weight: 700; color: #1a1a1a; }
.cs-digi-review-date { font-size: 12px; color: #aaa; }
.cs-digi-review-body { font-size: 14px; color: #555; line-height: 1.6; }
.cs-digi-review-form { margin-top: 28px; padding-top: 24px; border-top: 2px solid #f0ebe5; }
.cs-digi-review-form-title { font-size: 16px; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; }
.cs-digi-review-textarea { width: 100%; border: 1.5px solid #e0d8d0; border-radius: 8px; padding: 12px 14px; font-size: 14px; resize: vertical; min-height: 100px; background: #fdf6f0; transition: border-color .18s; }
.cs-digi-review-textarea:focus { outline: none; border-color: #F83A26; }
.cs-digi-login-hint { text-align: center; padding: 32px; color: #888; }
.cs-digi-login-hint a { color: #F83A26; font-weight: 600; }

/* Related Digital Products */
.cs-digi-related-title { font-size: 18px; font-weight: 800; color: #1a1a1a; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #F83A26; display: inline-block; }
.cs-digi-related-card { display: flex; gap: 14px; padding: 14px; background: #fff; border: 1px solid #e0d8d0; border-radius: 10px; margin-bottom: 12px; text-decoration: none; transition: border-color .18s; }
.cs-digi-related-card:hover { border-color: #F83A26; }
.cs-digi-related-thumb { width: 60px; flex-shrink: 0; aspect-ratio: 3/4; border-radius: 6px; overflow: hidden; }
.cs-digi-related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cs-digi-related-body { flex: 1; min-width: 0; }
.cs-digi-related-name { font-size: 13px; font-weight: 700; color: #1a1a1a; margin-bottom: 3px; }
.cs-digi-related-name:hover { color: #F83A26; }
.cs-digi-related-author { font-size: 11px; color: #aaa; margin-bottom: 6px; }
.cs-digi-related-price-sale { font-size: 13px; font-weight: 800; color: #F83A26; }
.cs-digi-related-price-regular { font-size: 11px; color: #aaa; text-decoration: line-through; margin-left: 5px; }
.cs-digi-related-badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px; background: #F83A26; color: #fff; margin-bottom: 5px; }

/* Responsive */
@media(max-width: 767px) {
    .cs-digi-detail-flex { grid-template-columns: 1fr; }
    .cs-digi-thumb-wrap { border-right: none; border-bottom: 1px solid #f0ebe5; }
    .cs-digi-contents { padding: 20px; }
}

/* Related section */
.cs-related-section { padding: 48px 0 64px; background: #fdf6f0; }

/* Search results heading */
.cs-shop-results-heading { margin-bottom: 8px; font-size: 15px; color: #555; }
.cs-shop-results-heading strong { color: #1a1a1a; }

/* ============================================================
   Utility
   ============================================================ */
.cs-field-cap { text-transform: capitalize; }
.cs-price-free { color: #22c55e !important; }

/* ============================================================
   Checkout sign-in strip
   ============================================================ */
.cs-checkout-login-hint { display: block; font-size: 14px; color: #555; margin-bottom: 8px; }
.cs-checkout-login-link { color: #F83A26; font-weight: 600; }
.cs-checkout-signin-box { background: #fff7f5; border: 1px solid #f0d5d0; border-radius: 10px; padding: 20px 24px; margin-bottom: 20px; }
.cs-checkout-signin-title { font-size: 16px; font-weight: 700; color: #1a1a1a; margin-bottom: 14px; }
.cs-form-group { margin-bottom: 12px; }
.cs-form-error { color: #dc3545; font-size: 13px; margin-bottom: 10px; }
.cs-checkout-signin-links { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-top: 10px; font-size: 13px; }
.cs-checkout-remember { display: flex; align-items: center; gap: 6px; color: #555; cursor: pointer; }
.cs-checkout-signin-extras { display: flex; flex-direction: column; gap: 4px; text-align: right; }
.cs-checkout-signin-extras a { color: #F83A26; text-decoration: none; font-size: 13px; }
.cs-checkout-signin-extras a:hover { text-decoration: underline; }
.cs-checkout-btn-outline { display: flex; align-items: center; justify-content: center; gap: 8px; background: transparent; color: #F83A26; border: 2px solid #F83A26; border-radius: 10px; padding: 12px 24px; font-size: 15px; font-weight: 700; text-decoration: none; margin-top: 10px; transition: all .2s; cursor: pointer; width: 100%; }
.cs-checkout-btn-outline:hover { background: #F83A26; color: #fff; }

/* ============================================================
   Quick View Modal body content — cs-qv-body styles
   ============================================================ */
.cs-qv-title { font-size: 20px; font-weight: 800; color: #1a1a1a; margin-bottom: 8px; }
.cs-qv-status { display: flex; align-items: center; gap: 10px; margin: 10px 0; font-size: 14px; }
.cs-qv-status-label { color: #555; font-weight: 600; }
.cs-qv-status-val { font-weight: 700; }
.cs-qv-price-row { display: flex; align-items: center; gap: 10px; margin: 12px 0; }
.cs-qv-price-sale { font-size: 22px; font-weight: 800; color: #F83A26; }
.cs-qv-price-regular { font-size: 15px; color: #aaa; text-decoration: line-through; }
.cs-qv-attr-group { margin-bottom: 10px; }
.cs-qv-attr-label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #555; margin-bottom: 6px; }
.cs-qv-attr-input { width: 80px; padding: 4px 8px; font-size: 13px; }
.cs-qv-qty-area { margin-top: 16px; }
.cs-qv-qty-flex { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.cs-qv-qty-label { font-size: 14px; font-weight: 600; color: #333; }
.cs-qty-wrap { display: flex; align-items: center; border: 1.5px solid #e0d8d0; border-radius: 8px; overflow: hidden; }
.cs-qv-stock-left { font-size: 12px; color: #22c55e; }
.cs-qv-btn-group { display: flex; flex-direction: column; gap: 10px; }
.cs-qv-actions-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding: 14px 0; border-top: 1px solid #f0ebe5; margin-top: 14px; }
.cs-qv-action-link { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #555; text-decoration: none; transition: color .18s; }
.cs-qv-action-link:hover { color: #F83A26; }
.cs-qv-meta { border-top: 1px solid #f0ebe5; margin-top: 14px; padding-top: 14px; }
.cs-qv-meta-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.cs-qv-meta-item { display: flex; gap: 8px; font-size: 13px; }
.cs-qv-meta-key { color: #888; min-width: 90px; }
.cs-qv-meta-val { font-weight: 600; color: #333; }

/* ============================================================
   List Card (filtered list view) — cs-list-card
   ============================================================ */
.cs-list-card { display: flex; gap: 16px; background: #fff; border: 1px solid #e0d8d0; border-radius: 12px; overflow: hidden; padding: 14px; transition: box-shadow .2s; }
.cs-list-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.cs-list-card-thumb { flex-shrink: 0; width: 130px; height: 130px; border-radius: 8px; overflow: hidden; display: block; }
.cs-list-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cs-list-card-body { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.cs-list-card-badges { position: static; display: flex; flex-wrap: wrap; gap: 4px; }
.cs-list-card-title { font-size: 15px; font-weight: 700; margin: 0; }
.cs-list-card-title a { color: #1a1a1a; text-decoration: none; }
.cs-list-card-title a:hover { color: #F83A26; }
.cs-list-card-desc { font-size: 13px; color: #777; margin: 0; }
.cs-list-card-price { display: flex; align-items: center; gap: 8px; }
.cs-list-card-sale { font-size: 16px; font-weight: 800; color: #F83A26; }
.cs-list-card-regular { font-size: 13px; color: #aaa; text-decoration: line-through; }
.cs-list-card-actions { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.cs-list-card-btn { display: inline-flex; align-items: center; gap: 6px; background: #F83A26; color: #fff; border-radius: 8px; padding: 8px 16px; font-size: 13px; font-weight: 700; text-decoration: none; transition: background .2s; cursor: pointer; }
.cs-list-card-btn:hover { background: #d42e1c; color: #fff; }
.cs-list-card-icon { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1.5px solid #e0d8d0; border-radius: 8px; color: #555; text-decoration: none; transition: all .18s; }
.cs-list-card-icon:hover { border-color: #F83A26; color: #F83A26; }
@media (max-width: 575.98px) {
    .cs-list-card { flex-direction: column; }
    .cs-list-card-thumb { width: 100%; height: 180px; }
}

/* ============================================================
   Blog comment form
   ============================================================ */
.cs-blog-comment-count { font-size: 18px; font-weight: 700; color: #1a1a1a; margin-bottom: 20px; }
.cs-blog-comment-form-title { font-size: 16px; font-weight: 700; color: #1a1a1a; margin-bottom: 14px; margin-top: 28px; }
.cs-comment-textarea { width: 100%; min-height: 120px; resize: vertical; }
.cs-btn-load-more { background: #fff; border: 1.5px solid #e0d8d0; border-radius: 8px; padding: 10px 24px; font-size: 14px; font-weight: 600; color: #555; cursor: pointer; transition: all .18s; }
.cs-btn-load-more:hover { border-color: #F83A26; color: #F83A26; }

/* ============================================================
   Digital product detail page — login icon
   ============================================================ */
.cs-digi-login-icon { font-size: 32px; color: #ddd; display: block; margin-bottom: 10px; }

/* ============================================================
   Digital shop grid — free price
   ============================================================ */
.cs-pagination-list { list-style: none; padding: 0; margin: 0; display: flex; gap: 6px; flex-wrap: wrap; }
.cs-page-btn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1.5px solid #e0d8d0; border-radius: 8px; color: #555; font-size: 14px; font-weight: 600; text-decoration: none; transition: all .18s; cursor: pointer; background: #fff; }
.cs-page-btn:hover, .cs-page-btn.active { background: #F83A26; border-color: #F83A26; color: #fff; }

/* ============================================================
   Navbar
   ============================================================ */
:root { --cs-accent: #F83A26; }
.cs-promo-bar { background: var(--cs-accent); color: #fff; text-align: center; padding: 8px 16px; font-size: 13px; font-weight: 500; }
.cs-navbar { background: #fff; border-bottom: 1px solid #f0ece8; position: sticky; top: 0; z-index: 1000; }
.cs-navbar-inner { display: flex; align-items: center; gap: 20px; padding: 14px 0; }
.cs-navbar-logo { flex-shrink: 0; }
.cs-logo-link { display: block; }
.cs-logo-img { height: 40px; width: auto; }
.cs-nav-desktop { flex: 1; }
.cs-nav-links { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.cs-nav-links > li { position: relative; }
.cs-nav-links > li > a { display: block; padding: 8px 14px; font-size: 14px; font-weight: 600; color: #2c2c2c; text-decoration: none; border-radius: 6px; transition: color .18s, background .18s; }
.cs-nav-links > li > a:hover, .cs-nav-links > li.active > a { color: var(--cs-accent); background: #fff5f3; }
.cs-nav-links li ul { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid #f0ece8; border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,.10); min-width: 200px; padding: 6px 0; z-index: 999; }
.cs-nav-links li:hover > ul { display: block; }
.cs-nav-links li ul li a { display: block; padding: 9px 16px; font-size: 13px; color: #444; text-decoration: none; transition: color .15s, background .15s; }
.cs-nav-links li ul li a:hover { color: var(--cs-accent); background: #fff5f3; }
.cs-navbar-right { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.cs-search { display: flex; align-items: center; background: #f7f4f2; border-radius: 8px; padding: 0 10px; gap: 6px; height: 40px; width: 240px; }
.cs-search input { border: none; background: transparent; outline: none; font-size: 13px; flex: 1; color: #2c2c2c; }
.cs-search button { background: none; border: none; color: #888; cursor: pointer; font-size: 16px; padding: 0; transition: color .18s; }
.cs-search button:hover { color: var(--cs-accent); }
.cs-icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; color: #444; text-decoration: none; font-size: 20px; position: relative; transition: color .18s, background .18s; }
.cs-icon-btn:hover { color: var(--cs-accent); background: #fff5f3; }
.cs-badge { position: absolute; top: 4px; right: 4px; background: var(--cs-accent); color: #fff; font-size: 10px; font-weight: 700; min-width: 16px; height: 16px; border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 0 3px; line-height: 1; }
.cs-hamburger { background: none; border: 1px solid #e0dbd8; border-radius: 6px; width: 40px; height: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; padding: 0; transition: border-color .18s; }
.cs-hamburger span { display: block; width: 20px; height: 2px; background: #444; border-radius: 2px; transition: all .25s; }
.cs-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cs-hamburger.open span:nth-child(2) { opacity: 0; }
.cs-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.cs-mobile-nav { display: none; padding: 12px 0 16px; border-top: 1px solid #f0ece8; }
.cs-mobile-nav.open { display: block; }
.cs-mobile-links { list-style: none; margin: 0; padding: 0; }
.cs-mobile-links li a { display: block; padding: 10px 4px; font-size: 14px; font-weight: 600; color: #2c2c2c; text-decoration: none; border-bottom: 1px solid #f7f4f2; }
.cs-mobile-links li a:hover { color: var(--cs-accent); }
.cs-mobile-links li ul { padding-left: 14px; }
.cs-mobile-links li ul li a { font-weight: 400; font-size: 13px; }
.cs-mobile-search { display: flex; align-items: center; gap: 8px; margin-top: 12px; background: #f7f4f2; border-radius: 8px; padding: 0 10px; height: 40px; }
.cs-mobile-search input { border: none; background: transparent; outline: none; font-size: 13px; flex: 1; color: #2c2c2c; }
.cs-mobile-search button { background: none; border: none; color: #888; cursor: pointer; font-size: 16px; padding: 0; }
