/* ============================================================
   IKC Holsters — "INSANE" Light Theme v3
   Real brand palette pulled from ikcholsters.com Elementor globals:
     primary  #E235C3 (hot magenta)   hover #F431D1
     secondary #DFB62A (gold)
     green    #00B67A (site accent green)
     purple   #C758C7 / #9B51E0 (logo gradient range)
     coral    #F35A66 (site highlight)
   Light base, loud accents. Loads AFTER main.css.
   ============================================================ */
:root {
  --ikc-pink: #e235c3;
  --ikc-pink-hover: #f431d1;
  --ikc-green: #00b67a;
  --ikc-green-deep: #00915f;
  --ikc-purple: #9b51e0;
  --ikc-orchid: #c758c7;
  --ikc-gold: #dfb62a;
  --ikc-coral: #f35a66;
  --ikc-blue: #3b6ff5;
  --ikc-ink: #23262b;
  --ikc-gray: #505050;
  --ikc-paper: #fdfaff;
  --ikc-border: #eee2f2;
  --ikc-star: #f5a623;

  /* signature gradients */
  --ikc-brand: linear-gradient(135deg, #e235c3 0%, #9b51e0 55%, #3b6ff5 100%);  /* the logo gradient */
  --ikc-candy: linear-gradient(135deg, #e235c3 0%, #f35a66 100%);
  --ikc-mint: linear-gradient(135deg, #00b67a 0%, #3b6ff5 100%);
  --ikc-hyper: linear-gradient(90deg, #e235c3, #c758c7, #9b51e0, #3b6ff5, #00b67a, #dfb62a);
  --ikc-tiger: repeating-linear-gradient(-55deg,
      #e235c3 0 14px, #9b51e0 14px 22px, #00b67a 22px 30px, #dfb62a 30px 38px);
}

body { background: var(--ikc-paper); color: #2b2f33; }

/* ---- Insane tiger stripe on section tops + footer ---- */
section { position: relative; }
section.hero-landing::before,
section.three-columns::before,
section.single-column::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: var(--ikc-tiger); opacity: 0.95;
}

/* ---- Buttons: candy gradient ---- */
.btn-primary,
.btn-primary:disabled,
.btn-primary.disabled {
  color: #fff;
  background: var(--ikc-candy);
  border: 0;
  box-shadow: 0 6px 20px rgba(226, 53, 195, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  color: #fff;
  background: linear-gradient(135deg, var(--ikc-pink-hover) 0%, var(--ikc-purple) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(226, 53, 195, 0.5);
}

/* ---- Stars: used EVERYWHERE ---- */
.stars { color: var(--ikc-star); letter-spacing: 2px; }
.stars-inline { font-size: 1.15rem; margin: 10px 0 4px; }
.stars-inline .count { color: var(--ikc-gray); font-size: 0.88rem; letter-spacing: 0; margin-left: 8px; font-weight: 700; }
.cta-stars { font-size: 0.85rem; color: var(--ikc-gray); margin-top: 8px; font-weight: 700; }
.cta-stars .stars { font-size: 0.95rem; }

/* ---- Star marquee strip ---- */
.star-strip { overflow: hidden; white-space: nowrap; padding: 12px 0; background: var(--ikc-brand); }
.star-strip .strip-track { display: inline-block; animation: ikc-marquee 28s linear infinite; }
.star-strip span.item { color: #fff; font-weight: 800; font-size: 0.9rem; margin: 0 26px; }
.star-strip span.item .stars { color: #ffe27a; }
@keyframes ikc-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Header ---- */
header.fixed-top {
  background: rgba(253, 250, 255, 0.97);
  box-shadow: 0 1px 0 var(--ikc-border), 0 4px 18px rgba(155, 81, 224, 0.08);
  border-bottom: 3px solid transparent;
  border-image: var(--ikc-hyper) 1;
}
.header-logo img { max-height: 56px; width: auto; }
.header-phone .phone-icon i { color: var(--ikc-pink); }

/* ---- Hero: light but electric pink/green ---- */
section.hero-landing.bg-gray {
  padding-bottom: 60px;
  background:
    radial-gradient(900px 420px at 10% -10%, rgba(226, 53, 195, 0.16), transparent 60%),
    radial-gradient(800px 400px at 90% 0%, rgba(0, 182, 122, 0.16), transparent 55%),
    radial-gradient(700px 460px at 50% 115%, rgba(155, 81, 224, 0.14), transparent 60%),
    #fdfaff !important;
}
.hero-landing h1 { color: var(--ikc-ink); }
.hero-landing .eyebrow {
  color: #fff; letter-spacing: 1px; font-style: normal;
  background: var(--ikc-brand); padding: 6px 18px; border-radius: 30px;
  box-shadow: 0 4px 14px rgba(155, 81, 224, 0.35);
}
.hero-landing .subheadline { color: var(--ikc-gray); }
.hero-landing .hero-product { max-width: 92%; }
@media (min-width: 992px) {
  .hero-landing .trust-chips { justify-content: flex-start; }
  .hero-landing .btn-section .btn { margin-left: 0; }
  .hero-landing .cta-stars { text-align: left; }
}

/* ---- Trust chips ---- */
.trust-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 20px; }
.trust-chips .chip {
  background: #fff; border-radius: 30px; padding: 8px 16px;
  font-size: 0.85rem; font-weight: 700; color: var(--ikc-ink);
  display: inline-flex; align-items: center; gap: 7px;
  border: 2px solid var(--ikc-pink); box-shadow: 0 3px 10px rgba(155, 81, 224, 0.12);
}
.trust-chips .chip i { color: var(--ikc-pink); }
.trust-chips .chip:nth-child(2) { border-color: var(--ikc-green); } .trust-chips .chip:nth-child(2) i { color: var(--ikc-green); }
.trust-chips .chip:nth-child(3) { border-color: var(--ikc-gold); } .trust-chips .chip:nth-child(3) i { color: var(--ikc-gold); }
.trust-chips .chip:nth-child(4) { border-color: var(--ikc-purple); } .trust-chips .chip:nth-child(4) i { color: var(--ikc-purple); }

/* ---- Badge band ---- */
section.badge-band.bg-gray {
  background: linear-gradient(90deg, rgba(226,53,195,0.08), rgba(199,88,199,0.08), rgba(155,81,224,0.08), rgba(0,182,122,0.09), rgba(223,182,42,0.10)), #fff !important;
  border-top: 1px solid var(--ikc-border); border-bottom: 1px solid var(--ikc-border);
}
.badge-band .badge-item { text-align: center; padding: 12px 8px; }
.badge-band .badge-item .big {
  font-size: 1.7rem; font-weight: 800; line-height: 1.1;
  background: var(--ikc-candy); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.badge-band .col-6:nth-of-type(2) .badge-item .big { background: var(--ikc-mint); -webkit-background-clip: text; background-clip: text; }
.badge-band .col-6:nth-of-type(3) .badge-item .big { background: linear-gradient(135deg, var(--ikc-gold), var(--ikc-coral)); -webkit-background-clip: text; background-clip: text; }
.badge-band .col-6:nth-of-type(4) .badge-item .big { background: linear-gradient(135deg, var(--ikc-purple), var(--ikc-blue)); -webkit-background-clip: text; background-clip: text; }
.badge-band .badge-item .small-label { font-size: 0.8rem; color: var(--ikc-gray); text-transform: uppercase; letter-spacing: 0.5px; }
.badge-band .stars { font-size: 0.95rem; }

/* ---- Section tints: pink/green light washes ---- */
section.bg-light {
  background: linear-gradient(180deg, #fdeffa 0%, #fbf3ff 55%, #edfaf4 100%) !important;
}
section.bg-gray {
  background: linear-gradient(180deg, #effbf5 0%, #f7f0fd 100%) !important;
}
section.two-column { background: var(--ikc-paper); }

/* ---- Headings ---- */
h2.h1 { position: relative; display: inline-block; }
h2.h1::after {
  content: ""; display: block; height: 8px; border-radius: 4px; margin: 10px auto 0;
  width: 70%; background: var(--ikc-hyper);
}

/* ---- Facebook-style review cards ---- */
.fb-card {
  background: #fff; border: 1px solid var(--ikc-border); border-radius: 12px;
  padding: 18px 20px; height: 100%; box-shadow: 0 6px 18px rgba(155, 81, 224, 0.10);
  display: flex; flex-direction: column; text-align: left;
  transition: transform 0.15s ease;
}
.fb-card:hover { transform: translateY(-4px); }
.fb-card .fb-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.fb-card .fb-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  color: #fff; font-weight: 800; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--ikc-brand);
}
.col-md-6:nth-child(2) .fb-card .fb-avatar { background: var(--ikc-mint); }
.col-md-6:nth-child(3) .fb-card .fb-avatar { background: linear-gradient(135deg, var(--ikc-gold), var(--ikc-coral)); }
.fb-card .fb-name { font-weight: 800; color: var(--ikc-ink); font-size: 0.95rem; line-height: 1.3; }
.fb-card .fb-name .rec { font-weight: 400; color: var(--ikc-gray); }
.fb-card .fb-meta { font-size: 0.78rem; color: #8a8f96; }
.fb-card .stars { font-size: 1.05rem; margin: 2px 0 8px; }
.fb-card .fb-body { font-size: 0.92rem; line-height: 1.55; color: #3a3f45; flex-grow: 1; }
.fb-card .fb-foot { margin-top: 12px; padding-top: 10px; border-top: 1px solid #f2ecf6; font-size: 0.82rem; color: var(--ikc-green-deep); font-weight: 700; }
.fb-card .fb-foot i { margin-right: 6px; }

/* ---- How-it-works boxes ---- */
.blocks .box { border-radius: 12px; border: 1px solid var(--ikc-border); box-shadow: 0 6px 18px rgba(155, 81, 224, 0.08); }
.blocks .box .box-number {
  width: 54px; height: 54px; line-height: 54px; margin: 0 auto 10px; border-radius: 50%;
  color: #fff !important; font-weight: 800; font-size: 1.4rem;
  background: var(--ikc-candy); box-shadow: 0 5px 14px rgba(226,53,195,0.35);
}
.blocks .col-md-6:nth-child(3) .box-number { background: var(--ikc-mint); box-shadow: 0 5px 14px rgba(0,182,122,0.35); }
.blocks .col-md-6:nth-child(4) .box-number { background: linear-gradient(135deg, var(--ikc-gold), var(--ikc-coral)); box-shadow: 0 5px 14px rgba(223,182,42,0.4); }
.blocks .col-md-6:nth-child(5) .box-number { background: linear-gradient(135deg, var(--ikc-purple), var(--ikc-blue)); box-shadow: 0 5px 14px rgba(155,81,224,0.35); }
.blocks .col-md-6:nth-child(6) .box-number { background: linear-gradient(135deg, var(--ikc-green), var(--ikc-purple)); box-shadow: 0 5px 14px rgba(0,182,122,0.3); }

/* ---- Styled list icons ---- */
ul.styled-list li i.color-brand { color: var(--ikc-pink) !important; }
ul.styled-list li:nth-child(2) i { color: var(--ikc-green) !important; }
ul.styled-list li:nth-child(3) i { color: var(--ikc-gold) !important; }
ul.styled-list li:nth-child(4) i { color: var(--ikc-purple) !important; }
ul.styled-list li:nth-child(5) i { color: var(--ikc-coral) !important; }

/* ---- Product imagery ----
   padding:0 !important guards against Bootstrap p*-classes on the <img>:
   padding sits INSIDE the border-radius/box-shadow frame and makes the
   photo overflow/offset the border. The frame must hug the image exactly. */
.product-photo {
  padding: 0 !important;
  display: block;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  box-shadow: 0 0 0 4px #fff, 0 0 0 7px rgba(226,53,195,0.3), 0 14px 34px rgba(155,81,224,0.18);
}

/* ---- Order / Ecwid box ---- */
.order-box {
  background: #fff; border-radius: 14px; padding: 32px; text-align: left;
  border: 3px solid transparent;
  background-image: linear-gradient(#fff, #fff), var(--ikc-hyper);
  background-origin: border-box; background-clip: padding-box, border-box;
  box-shadow: 0 14px 40px rgba(155, 81, 224, 0.18);
}
.order-box .order-kicker { font-size: 0.95rem; color: var(--ikc-gray); text-align: center; margin-bottom: 18px; }
.rush-callout {
  border: 2px dashed var(--ikc-green); border-radius: 10px;
  background: linear-gradient(90deg, #ecfbf4, #f4fdf8);
  padding: 14px 16px; margin: 0 0 18px;
}
.rush-callout .rush-label { font-weight: 800; color: var(--ikc-green-deep); font-size: 0.95rem; display: block; }
.rush-callout .rush-sub { font-size: 0.83rem; color: var(--ikc-gray); }

/* One-click rush upsell shown on the Ecwid CART view */
.rush-upsell {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  border: 2px solid var(--ikc-pink); border-radius: 10px;
  background: linear-gradient(90deg, #fdeffa, #f4fdf8);
  padding: 14px 16px; margin: 0 0 18px;
  box-shadow: 0 6px 18px rgba(226, 53, 195, 0.15);
}
.rush-upsell .rush-label { font-weight: 800; color: var(--ikc-pink); font-size: 0.95rem; display: block; }
.rush-upsell .rush-sub { font-size: 0.83rem; color: var(--ikc-gray); }
.rush-upsell .rush-upsell-btn { margin: 0; padding: 14px 22px; font-size: 0.95rem; flex: none; }
.order-note { font-size: 0.83rem; color: var(--ikc-gray); text-align: center; }
.order-note i { color: var(--ikc-green); }
.order-fallback { text-align: center; font-size: 0.85rem; margin-top: 10px; }

/* ---- Ecwid widget: strip everything except product + options + buy ----
   Hides the Ecwid store footer, related products ("You may also like"),
   breadcrumbs, search, sign-in and category navigation so buyers stay
   on THIS product. Selectors cover current Ecwid class names; unmatched
   selectors are harmless. */
#order .ec-footer,
#order .ec-store__related-products,
#order .ec-related-products,
#order .ec-store__search-widget,
#order .ec-header-h1,
#order .ec-breadcrumbs,
#order .ec-store__sign-in,
#order .ec-store__categories,
#order .ec-categories,
#order .ec-share-buttons,
#order .details-product-share,
#order .product-details__sidebar-description,
#order .ec-store__hint { display: none !important; }

/* Let the widget breathe in the wider box */
#order .order-box { padding: 24px 28px; }
#order #my-store-10311070 { min-height: 480px; }
#order .ec-size .ec-store { background: transparent; }

/* Nudge Ecwid's buy button toward the brand look (Ecwid Design settings
   can finish the job) */
#order .form-control--button,
#order .details-product-purchase__place button {
  background: linear-gradient(135deg, #e235c3 0%, #f35a66 100%) !important;
  border: 0 !important;
}

/* ---- Guarantee seal ---- */
.guarantee-seal {
  width: 140px; height: 140px; margin: 0 auto 20px; border-radius: 50%;
  color: #fff; background: var(--ikc-brand);
  box-shadow: 0 0 0 5px #fff, 0 0 0 9px var(--ikc-gold), 0 12px 30px rgba(226,53,195,0.4);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 800; text-transform: uppercase; font-size: 0.74rem; letter-spacing: 1px; text-align: center; padding: 10px;
}
.guarantee-seal i { font-size: 1.9rem; margin-bottom: 6px; color: #fff; }

/* ---- FAQ ---- */
.faq-item { border: 1px solid var(--ikc-border); border-left: 6px solid var(--ikc-pink); border-radius: 10px; margin-bottom: 10px; background: #fff; box-shadow: 0 3px 10px rgba(155,81,224,0.07); }
.faq-item:nth-of-type(2) { border-left-color: var(--ikc-green); }
.faq-item:nth-of-type(3) { border-left-color: var(--ikc-gold); }
.faq-item:nth-of-type(4) { border-left-color: var(--ikc-purple); }
.faq-item:nth-of-type(5) { border-left-color: var(--ikc-coral); }
.faq-item summary { cursor: pointer; font-weight: 700; color: var(--ikc-ink); padding: 15px 18px; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:after { content: "+"; float: right; color: var(--ikc-pink); font-weight: 800; }
.faq-item[open] summary:after { content: "\2013"; }
.faq-item .faq-body { padding: 0 18px 15px; font-size: 0.92rem; color: #3a3f45; }

/* ---- Footer ---- */
footer.bg-brand {
  background: #23262b !important;
  border-top: 6px solid transparent; border-image: var(--ikc-tiger) 1;
}
footer a { color: #fff; text-decoration: underline; }
footer .footer-small { font-size: 0.78rem; color: #b8bcc2; }

@media (max-width: 767px) {
  .order-box { padding: 20px; }
  .video-container { box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--ikc-pink), 0 12px 28px rgba(155,81,224,0.25); }
  .star-strip span.item { margin: 0 16px; }
}
