/* ═══════════════════════════════════════════
   STEELCOM — Plugin CSS v2.0
   Red: #C8102E | Black: #1A1A1A | WA: #25D366
═══════════════════════════════════════════ */

:root {
  --sc-red: #C8102E;
  --sc-red-dark: #A50E26;
  --sc-black: #1A1A1A;
  --sc-wa: #25D366;
  --sc-wa-dark: #1DA851;
}

/* ─── ANNOUNCEMENT BAR ─────────────────────── */
#sc-announce-bar {
  background: var(--sc-red);
  color: #fff;
  padding: 8px 50px 8px 0;
  overflow: hidden;
  position: relative;
  z-index: 9999;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.sc-announce-inner { overflow: hidden; }
.sc-announce-ticker {
  display: inline-block;
  animation: sc-ticker 30s linear infinite;
}
@keyframes sc-ticker {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}
.sc-announce-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  opacity: 0.8;
}
.sc-announce-close:hover { opacity: 1; }

/* ─── FLOATING WHATSAPP ─────────────────────── */
.sc-float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: var(--sc-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.5);
  animation: sc-wa-pulse 2s infinite;
}
.sc-float-wa:hover { background: var(--sc-wa-dark); transform: scale(1.08); }
@keyframes sc-wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.sc-wa-tooltip {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  background: var(--sc-black);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.sc-float-wa:hover .sc-wa-tooltip { opacity: 1; }

/* ─── FOMO POPUP ──────────────────────────── */
#sc-fomo-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9998;
  width: 300px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-left: 4px solid var(--sc-red);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  animation: sc-slide-in .4s ease;
}
@keyframes sc-slide-in {
  from { transform: translateX(-120%); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}
.sc-fomo-avatar {
  font-size: 28px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-fomo-text { flex: 1; }
.sc-fomo-text p { margin: 0 0 4px; font-size: 13px; color: var(--sc-black); line-height: 1.4; }
.sc-fomo-time { font-size: 11px; color: #888; }
.sc-fomo-close {
  position: absolute;
  top: 8px; right: 10px;
  background: none; border: none;
  cursor: pointer; font-size: 16px;
  color: #999; line-height: 1;
}

/* ─── EXIT INTENT POPUP ────────────────────── */
#sc-exit-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}
#sc-exit-modal {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
}
.sc-exit-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none; border: none;
  font-size: 24px; cursor: pointer;
  color: #999;
}
.sc-exit-badge {
  display: inline-block;
  background: var(--sc-red);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
#sc-exit-modal h2 { font-size: 28px; color: var(--sc-black); margin: 0 0 8px; }
.sc-exit-subtitle { font-size: 16px; color: #555; margin-bottom: 20px; }
.sc-exit-coupon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  border: 2px dashed var(--sc-red);
  padding: 12px 20px;
  border-radius: 8px;
}
.sc-coupon-code { font-size: 24px; font-weight: 900; letter-spacing: 4px; color: var(--sc-red); }
.sc-copy-btn {
  background: var(--sc-red);
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
}
.sc-exit-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.sc-exit-email {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}
.sc-exit-submit {
  background: var(--sc-red);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
}
.sc-exit-submit:hover { background: var(--sc-red-dark); }
.sc-exit-skip { font-size: 12px; color: #aaa; display: block; }

/* ─── WHATSAPP BUTTONS (productos) ────────── */
.sc-wa-product-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--sc-wa);
  color: #fff !important;
  padding: 9px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  margin-top: 6px;
  width: 100%;
  justify-content: center;
  transition: background .2s;
}
.sc-wa-product-btn:hover { background: var(--sc-wa-dark) !important; }

.sc-wa-single-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--sc-wa);
  color: #fff !important;
  padding: 14px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  margin-top: 10px;
  transition: background .2s;
}
.sc-wa-single-btn:hover { background: var(--sc-wa-dark) !important; }

/* ─── URGENCY BLOCK (single product) ─────── */
.sc-urgency-block {
  background: #fff8f8;
  border: 1px solid #ffe0e0;
  border-radius: 6px;
  padding: 14px 16px;
  margin: 12px 0;
}
.sc-stock-alert {
  color: var(--sc-red);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.sc-stock-bar-wrap {
  background: #f0f0f0;
  border-radius: 20px;
  height: 8px;
  margin-bottom: 4px;
  overflow: hidden;
}
.sc-stock-bar {
  background: var(--sc-red);
  height: 100%;
  border-radius: 20px;
  transition: width .5s;
}
.sc-stock-text { font-size: 12px; color: #888; margin: 4px 0 8px; }
.sc-fomo-viewers { font-size: 13px; color: #666; font-style: italic; margin: 4px 0; }
.sc-recent-buy { font-size: 12px; color: #2e7d32; margin: 4px 0 0; }

/* ─── COUNTDOWN TIMER ─────────────────────── */
.sc-countdown-wrap {
  margin: 12px 0;
}
.sc-countdown-label {
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}
.sc-countdown {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sc-cd-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--sc-red);
  border-radius: 4px;
  width: 52px;
  padding: 6px 4px 4px;
}
.sc-cd-box span {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.sc-cd-box small {
  font-size: 10px;
  color: rgba(255,255,255,0.8);
  margin-top: 2px;
}
.sc-cd-sep { font-size: 22px; font-weight: 900; color: var(--sc-red); }

/* ─── SHIPPING INFO BOX ─────────────────────── */
.sc-shipping-box {
  background: #f0f8ff;
  border: 1px solid #e0eeff;
  border-radius: 6px;
  padding: 14px 16px;
  margin-top: 12px;
}
.sc-ship-row {
  font-size: 13px;
  color: #555;
  padding: 5px 0;
  border-bottom: 1px dashed #e0e0e0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sc-ship-row.sc-last { border-bottom: none; }

/* ─── STOCK BADGE (shop cards) ─────────────── */
.sc-stock-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #ff6b00;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 2px;
  z-index: 5;
}

/* ─── CONTACT PAGE ────────────────────────── */
.sc-contact-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #c8102e 100%);
  padding: 60px 40px;
  text-align: center;
  color: #fff;
}
.sc-contact-hero h1 {
  font-size: 42px;
  font-weight: 900;
  margin: 8px 0 0;
  color: #fff;
}
.sc-breadcrumb { font-size: 13px; opacity: 0.7; }
.sc-breadcrumb a { color: #fff; text-decoration: none; }
.sc-bc-sep { color: var(--sc-red); margin: 0 6px; }

.sc-contact-section { padding: 40px 40px 0; max-width: 1200px; margin: 0 auto; }

.sc-contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .sc-contact-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .sc-contact-cards { grid-template-columns: 1fr; } }

.sc-ccard {
  background: #fff;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.sc-ccard-icon { font-size: 44px; color: var(--sc-red); }
.sc-ccard h3 { font-size: 15px; font-weight: 700; color: var(--sc-black); margin: 4px 0; }
.sc-ccard p { font-size: 14px; color: #333; margin: 0; font-weight: 600; }
.sc-ccard small { font-size: 12px; color: #888; }
.sc-ccard-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: all .2s;
}
.sc-ccard-btn:not([class*="sc-btn-"]) { color: var(--sc-red); }
.sc-btn-outline {
  border: 1px solid var(--sc-red);
  color: var(--sc-red);
}
.sc-btn-outline:hover { background: var(--sc-red); color: #fff !important; }
.sc-btn-wa { background: var(--sc-wa); color: #fff !important; }
.sc-btn-wa:hover { background: var(--sc-wa-dark) !important; }

.sc-contact-main {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 30px;
  margin-bottom: 0;
}
@media (max-width: 800px) { .sc-contact-main { grid-template-columns: 1fr; } }

.sc-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.sc-form-title { font-size: 22px; font-weight: 700; color: var(--sc-black); margin: 0 0 8px; }
.sc-form-accent { width: 40px; height: 3px; background: var(--sc-red); margin-bottom: 24px; }

/* CF7 form styles dentro del contacto */
.sc-form-box .wpcf7-form input[type="text"],
.sc-form-box .wpcf7-form input[type="email"],
.sc-form-box .wpcf7-form input[type="tel"],
.sc-form-box .wpcf7-form select,
.sc-form-box .wpcf7-form textarea {
  width: 100% !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 4px !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
}
.sc-form-box .wpcf7-form input:focus,
.sc-form-box .wpcf7-form select:focus,
.sc-form-box .wpcf7-form textarea:focus {
  border-color: var(--sc-red) !important;
  box-shadow: 0 0 0 3px rgba(200,16,46,0.1) !important;
  outline: none !important;
}
.sc-form-box .sc-form-row { margin-bottom: 16px; }
.sc-form-box .sc-form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sc-form-box .sc-submit-btn,
.sc-form-box .wpcf7-submit {
  width: 100% !important;
  background: var(--sc-red) !important;
  color: #fff !important;
  border: none !important;
  padding: 16px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  transition: background .2s, transform .2s !important;
}
.sc-form-box .wpcf7-submit:hover { background: var(--sc-red-dark) !important; }

.sc-hours-box {
  background: #f8f8f8;
  padding: 20px 24px;
  border-radius: 8px;
  border-left: 4px solid var(--sc-red);
  margin-top: 16px;
}
.sc-hours-box h4 { font-size: 14px; font-weight: 700; color: var(--sc-black); margin: 0 0 12px; }
.sc-hours-table { width: 100%; font-size: 13px; border-collapse: collapse; }
.sc-hours-table td { padding: 6px 8px; }
.sc-hours-table td:first-child { font-weight: 600; color: #333; }
.sc-hours-table td:last-child { text-align: center; }
.sc-open { color: #2e7d32; }
.sc-closed { color: var(--sc-red); }

.sc-wa-cta-full {
  background: var(--sc-wa);
  padding: 50px 40px;
  text-align: center;
  margin-top: 40px;
}
.sc-wa-cta-full h2 { font-size: 28px; font-weight: 700; color: #fff; margin: 0 0 8px; }
.sc-wa-cta-full p { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.sc-wa-cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--sc-wa) !important;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform .2s;
}
.sc-wa-cta-btn:hover { transform: translateY(-2px); }

/* ─── FOOTER COMPLETO ─────────────────────── */
.sc-prefooter {
  background: var(--sc-red);
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.sc-pf-left  { font-size: 22px; font-weight: 700; color: #fff; }
.sc-pf-center { font-size: 15px; color: #ffdddd; }
.sc-pf-btn {
  background: #fff;
  color: var(--sc-red) !important;
  padding: 14px 28px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none !important;
  font-size: 15px;
  transition: background .2s;
}
.sc-pf-btn:hover { background: #f0f0f0 !important; }

.sc-footer-main {
  background: var(--sc-black);
  padding: 60px;
}
.sc-footer-grid {
  display: grid;
  grid-template-columns: 25% 20% 20% 35%;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 1024px) { .sc-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .sc-footer-grid { grid-template-columns: 1fr; } .sc-footer-main { padding: 30px 20px; } }

.sc-footer-logo {
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 16px;
}
.sc-logo-steel { font-size: 28px; font-weight: 900; color: #fff; letter-spacing: -1px; }
.sc-logo-com   { font-size: 28px; font-weight: 900; color: #fff; letter-spacing: -1px; }
.sc-logo-swoosh { display: block; margin-top: -6px; }
.sc-footer-desc { font-size: 14px; line-height: 1.7; color: #aaa; margin: 0 0 20px; }

.sc-social-row { display: flex; gap: 8px; margin-bottom: 16px; }
.sc-social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: opacity .2s;
}
.sc-social-icon:hover { opacity: 0.8; }
.sc-fb { background: var(--sc-red); }
.sc-ig { background: var(--sc-red); }
.sc-wa-social { background: var(--sc-wa); }
.sc-yt { background: var(--sc-red); }

.sc-brands-row { font-size: 11px; color: #666; margin: 0; }

.sc-footer-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 6px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--sc-red);
  display: inline-block;
  margin-bottom: 16px;
}
.sc-footer-links { list-style: none; padding: 0; margin: 0; }
.sc-footer-links li { margin: 0; }
.sc-footer-links a {
  font-size: 14px;
  color: #aaa;
  text-decoration: none;
  line-height: 2.2;
  display: block;
  transition: color .2s;
}
.sc-footer-links a:hover { color: var(--sc-red) !important; }

.sc-footer-contact-items { display: flex; flex-direction: column; gap: 0; margin-bottom: 16px; }
.sc-fci {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #222;
  font-size: 14px;
  color: #aaa;
}
.sc-fci:last-child { border-bottom: none; }
.sc-fci-icon { flex-shrink: 0; margin-top: 2px; }
.sc-fci p { margin: 0; line-height: 1.5; }
.sc-hours-mini p { margin: 0; font-size: 13px; color: #888; line-height: 1.8; }

.sc-payment-bar {
  background: #111;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.sc-pay-label { font-size: 11px; color: #666; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.sc-pay-icons { display: flex; gap: 6px; flex-wrap: wrap; }
.sc-pay-badge {
  border: 1px solid #333;
  border-radius: 4px;
  padding: 4px 8px;
  background: #222;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}
.sc-pay-center { display: flex; gap: 20px; font-size: 12px; color: #666; }
.sc-pay-right { display: flex; gap: 16px; font-size: 12px; color: #666; }

.sc-footer-bottom {
  background: #0d0d0d;
  padding: 14px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #555;
  flex-wrap: wrap;
  gap: 8px;
}
.sc-footer-bottom a { color: #555; text-decoration: none; transition: color .2s; }
.sc-footer-bottom a:hover { color: var(--sc-red) !important; }

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 768px) {
  .sc-prefooter { padding: 20px; flex-direction: column; text-align: center; }
  .sc-payment-bar { padding: 20px; flex-direction: column; }
  .sc-footer-bottom { padding: 14px 20px; flex-direction: column; text-align: center; }
  .sc-float-wa { bottom: 16px; right: 16px; }
}

/* ═══════════════════════════════════════════
   PHASE D — PRODUCT DETAIL PAGE
═══════════════════════════════════════════ */

/* ─── D5 BUY NOW BUTTON ─────────────────── */
.sc-buy-now-btn {
  display: block;
  width: 100%;
  background: var(--sc-black);
  color: #fff !important;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  text-align: center;
  text-decoration: none !important;
  margin-top: 10px;
  transition: background .2s, transform .2s;
}
.sc-buy-now-btn:hover {
  background: #333 !important;
  transform: translateY(-2px);
}

/* ─── D3 PRODUCT TABS ────────────────────── */
.woocommerce-tabs .tabs {
  border-bottom: 2px solid #E0E0E0;
  margin: 0 0 0;
  padding: 0;
}
.woocommerce-tabs .tabs li {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce-tabs .tabs li a {
  color: #666 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: .5px !important;
  text-transform: uppercase !important;
  padding: 14px 22px !important;
  display: block !important;
  border-bottom: 3px solid transparent !important;
  transition: color .2s, border-color .2s !important;
}
.woocommerce-tabs .tabs li.active a,
.woocommerce-tabs .tabs li a:hover {
  color: var(--sc-red) !important;
  border-bottom-color: var(--sc-red) !important;
  background: none !important;
}
.woocommerce-tabs .panel {
  background: #fff;
  border: 1px solid #eee;
  padding: 30px;
  border-top: none;
}

/* ─── FAQ ACCORDION ──────────────────────── */
.sc-faq-accordion { margin: 0; }
.sc-faq-item {
  border: 1px solid #eee;
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
}
.sc-faq-item.sc-faq-open { border-left: 3px solid var(--sc-red); }
.sc-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9f9f9;
  padding: 16px;
  font-weight: 600;
  color: var(--sc-black);
  cursor: pointer;
  font-size: 14px;
  user-select: none;
}
.sc-faq-question:hover { background: #f0f0f0; }
.sc-faq-arrow {
  color: var(--sc-red);
  font-size: 12px;
  transition: transform .3s;
  flex-shrink: 0;
}
.sc-faq-item.sc-faq-open .sc-faq-arrow { transform: rotate(180deg); }
.sc-faq-answer {
  padding: 16px 16px 16px 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  background: #fff;
}

/* ─── SPECS TABLE ────────────────────────── */
.sc-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.sc-specs-table thead tr { background: var(--sc-red); }
.sc-specs-table thead th { color: #fff; font-weight: 700; padding: 12px 16px; text-align: left; }
.sc-specs-table tbody tr:nth-child(even) { background: #f9f9f9; }
.sc-specs-table tbody tr:nth-child(odd)  { background: #fff; }
.sc-specs-table tbody td { padding: 11px 16px; border: 1px solid #eee; color: #444; }
.sc-specs-table tbody td:first-child { font-weight: 600; color: var(--sc-black); }

/* ─── SHIPPING TAB ───────────────────────── */
.sc-envio-tab { }
.sc-tab-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 640px) { .sc-tab-2col { grid-template-columns: 1fr; } }
.sc-tab-col { }
.sc-tab-section-title {
  color: var(--sc-red);
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 16px;
}
.sc-note-orange {
  margin-top: 12px;
  padding: 10px 14px;
  background: #fff8f0;
  border: 1px solid #ff6b00;
  border-radius: 4px;
  font-size: 13px;
  color: #333;
}
.sc-warranty-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.sc-warranty-list li {
  padding: 6px 0 6px 28px;
  font-size: 14px;
  color: #444;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}
.sc-warranty-list li:last-child { border-bottom: none; }
.sc-warranty-list li.sc-check::before { content: '✅'; position: absolute; left: 0; }
.sc-warranty-list li.sc-cross::before { content: '❌'; position: absolute; left: 0; color: var(--sc-red); }
.sc-warranty-link {
  display: inline-block;
  color: var(--sc-red);
  border: 1px solid var(--sc-red);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  text-decoration: none;
  transition: all .2s;
}
.sc-warranty-link:hover { background: var(--sc-red); color: #fff !important; }

/* ─── FREQUENTLY BOUGHT TOGETHER ────────── */
.sc-fbt-section {
  background: #f9f9f9;
  padding: 40px;
  margin-top: 30px;
}
.sc-section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--sc-black);
  margin: 0 0 24px;
}
.sc-fbt-items {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.sc-fbt-item {
  text-align: center;
  width: 140px;
}
.sc-fbt-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border: 1px solid #eee;
  border-radius: 6px;
  background: #fff;
}
.sc-fbt-name {
  font-size: 12px;
  color: var(--sc-black);
  margin: 6px 0 3px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sc-fbt-price { font-size: 14px; font-weight: 700; color: var(--sc-red); margin: 0; }
.sc-fbt-plus {
  width: 30px; height: 30px;
  background: var(--sc-red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.sc-fbt-bundle { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.sc-fbt-total { font-size: 16px; color: var(--sc-black); margin: 0; }
.sc-fbt-total strong { color: var(--sc-red); font-size: 20px; }
.sc-fbt-btn {
  background: var(--sc-red);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  transition: background .2s, transform .2s;
}
.sc-fbt-btn:hover { background: var(--sc-red-dark) !important; transform: translateY(-2px); }

/* ─── RECENTLY VIEWED ────────────────────── */
.sc-recently-viewed {
  background: #f5f5f5;
  padding: 30px 40px;
  margin-top: 20px;
}
.sc-rv-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .sc-rv-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .sc-rv-grid { grid-template-columns: repeat(2, 1fr); } }
.sc-rv-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 12px;
  text-align: center;
  transition: transform .2s;
}
.sc-rv-card:hover { transform: translateY(-3px); }
.sc-rv-card img { width: 100%; height: 90px; object-fit: contain; }
.sc-rv-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--sc-black);
  margin: 6px 0 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sc-rv-name a { color: var(--sc-black) !important; text-decoration: none !important; }
.sc-rv-name a:hover { color: var(--sc-red) !important; }
.sc-rv-price { font-size: 13px; font-weight: 700; color: var(--sc-red); margin: 0; }

/* ═══════════════════════════════════════════
   PHASE E — SHOP PAGE
═══════════════════════════════════════════ */

/* ─── CATEGORY PILLS ────────────────────── */
.sc-cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
  margin-bottom: 8px;
}
.sc-pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  background: #f0f0f0;
  color: #666 !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all .2s;
}
.sc-pill:hover, .sc-pill-active {
  background: var(--sc-red) !important;
  color: #fff !important;
}

/* ─── SHOP HEADER ───────────────────────── */
.woocommerce .woocommerce-products-header {
  background: var(--sc-black);
  padding: 40px;
  text-align: center;
}
.woocommerce .woocommerce-products-header h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
}

/* ─── PRODUCT CARDS (enhancements) ─────── */
.woocommerce ul.products li.product {
  transition: transform .2s, box-shadow .2s !important;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.12) !important;
}
.woocommerce ul.products li.product .price {
  color: var(--sc-red) !important;
  font-weight: 900 !important;
}
.woocommerce ul.products li.product .price del {
  color: #aaa !important;
  font-weight: 400 !important;
}

/* ─── WA BUTTON ON PRODUCT CARDS ────────── */
.sc-wa-product-btn { margin-top: 6px; }

/* ═══════════════════════════════════════════
   ADDITIONAL MOBILE RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .sc-fbt-section { padding: 24px 16px; }
  .sc-recently-viewed { padding: 20px 16px; }
  .sc-contact-section { padding: 20px 16px 0; }
  .sc-form-box { padding: 20px 16px; }
  .sc-form-box .sc-form-2col { grid-template-columns: 1fr; }
}
