/* 3S SPORTS - OFFICIAL STYLESHEET (ORANGE BRAND IDENTITY) */
:root {
  --primary: #f2601c;
  --primary-hover: #d95213;
  --r: #f2601c;
  --dark: #080c11;
  --darker: #04070a;
  --muted: #6b7785;
  --border: #e2e7ec;
  --text: #1b232c;
  --green: #25d366;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; color: var(--text); background: #fff; line-height: 1.5; }
a { text-decoration: none; color: inherit; transition: color .15s; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1200px, 94%); margin: auto; }

/* Top Auto-Play Announcement Slider Ticker */
.top-ticker-bar {
  background: #0b1118;
  color: #c9d1d9;
  font-size: 12px;
  border-bottom: 1px solid #1a222c;
  overflow: hidden;
  position: relative;
  height: 40px;
  line-height: 40px;
  padding: 0 35px;
}
.ticker-wrap { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; }
.ticker-slide { position: absolute; width: 100%; text-align: center; font-size: 11.5px; letter-spacing: .5px; opacity: 0; transform: translateY(12px); transition: all .4s ease; display: flex; align-items: center; justify-content: center; gap: 10px; }
.ticker-slide.active { opacity: 1; transform: translateY(0); }
.ticker-tag { background: var(--primary); color: #fff; font-size: 9.5px; font-weight: 900; padding: 2px 8px; border-radius: 3px; text-transform: uppercase; }
.ticker-slide a { color: #fff; text-decoration: underline; font-weight: bold; }
.ticker-slide a:hover { color: var(--primary); }

/* Main Navigation */
.nav { height: 84px; background: #fff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.nav .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.site-logo { height: 48px; width: auto; object-fit: contain; }
.links { display: flex; gap: 24px; font-size: 12px; font-weight: 800; letter-spacing: .5px; align-items: center; }
.links a:hover, .links a.active { color: var(--primary); }

/* Nav Container & Relative Anchor */
.nav .container {
  position: relative;
}

/* Mega Menu Triggers */
.dropdown-trigger { display: inline-block; padding: 25px 0; }
.dropdown-trigger.products-trigger { position: static; }
.dropdown-trigger.services-trigger { position: relative; }

.dropdown-trigger.products-trigger:hover .mega-menu { display: grid; visibility: visible; opacity: 1; transform: translateY(0); }
.dropdown-trigger.services-trigger:hover .sub-dropdown { display: block; visibility: visible; opacity: 1; transform: translateY(0); }

/* Mega Dropdown for Products - Perfectly Contained Across All 7 Columns */
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  background: #0a0e14;
  border-top: 3px solid var(--primary);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  padding: 22px 24px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  z-index: 99999;
  border-radius: 0 0 6px 6px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all .2s ease;
}

.mega-col { min-width: 0; }
.mega-col h4 {
  margin: 0 0 8px 0;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: .3px;
  border-bottom: 1px solid #1f2733;
  padding-bottom: 5px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mega-col h4 a { color: var(--primary); }
.mega-col a {
  display: block;
  font-size: 10px;
  color: #c0c9d4;
  padding: 3px 0;
  line-height: 1.35;
  font-weight: normal;
  transition: all .15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mega-col a:hover { color: #fff; transform: translateX(2px); }

/* Simple Dropdown for Services & Info */
.sub-dropdown { display: none; position: absolute; top: 100%; left: 0; width: 260px; background: #0a0e14; border-top: 3px solid var(--primary); box-shadow: 0 18px 40px rgba(0,0,0,0.45); padding: 15px 0; z-index: 99999; border-radius: 0 0 6px 6px; visibility: hidden; opacity: 0; transform: translateY(10px); transition: all .2s ease; }
.sub-dropdown a { display: block; padding: 9px 20px; font-size: 11.5px; color: #cbd5e1; font-weight: 600; border-bottom: 1px solid #18212d; }
.sub-dropdown a:last-child { border-bottom: 0; }
.sub-dropdown a:hover { background: #131b26; color: var(--primary); padding-left: 24px; }

/* Sleek Basket Nav Button */
.basket-nav-btn { display: flex; align-items: center; gap: 8px; background: #f7f9fa; border: 1px solid #e1e6ed; padding: 7px 14px; border-radius: 20px; font-size: 11.5px; font-weight: bold; color: #111; transition: all .2s; }
.basket-nav-btn:hover { border-color: var(--primary); background: #fff; color: var(--primary); box-shadow: 0 3px 10px rgba(242,96,28,0.15); }
.basket-nav-btn .cart-icon { font-size: 15px; }
.basket-nav-btn small { background: var(--primary); color: #fff; font-size: 10px; padding: 2px 7px; border-radius: 10px; }
.hamb { display: none; border: 0; background: none; font-size: 26px; cursor: pointer; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; background: var(--primary); color: #fff; padding: 12px 24px; border-radius: 4px; font-size: 11.5px; font-weight: 900; text-transform: uppercase; letter-spacing: .5px; border: 0; cursor: pointer; transition: all .2s; }
.btn:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(242,96,28,0.35); }
.btn.alt { background: #131920; border: 1px solid rgba(255,255,255,0.25); color: #fff; }
.btn.alt:hover { background: #1f2732; border-color: #fff; }
.btn.green { background: #25d366; }
.btn.green:hover { background: #1ea952; }

/* Hero Slider with Smooth Autoplay */
.hero-slider { position: relative; min-height: 560px; background: #05080c; overflow: hidden; display: flex; align-items: center; }
.slide-item { position: absolute; inset: 0; background-size: cover; background-position: center; display: flex; align-items: center; opacity: 0; visibility: hidden; transition: opacity .8s ease-in-out, visibility .8s ease-in-out; }
.slide-item.active { opacity: 1; visibility: visible; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,7,12,0.94) 0%, rgba(4,7,12,0.7) 50%, rgba(4,7,12,0.25) 100%); }
.slide-item .content { position: relative; z-index: 2; max-width: 680px; color: #fff; padding: 40px 0; }
.mini-title { color: var(--primary); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; display: inline-block; }
.hero-slider h1 { font-size: 54px; font-weight: 900; line-height: 1.05; font-style: italic; text-transform: uppercase; margin: 0 0 8px 0; letter-spacing: -0.5px; }
.hero-slider h2 { color: var(--primary); font-size: 24px; font-weight: 800; font-style: italic; text-transform: uppercase; margin-bottom: 15px; letter-spacing: 1px; }
.hero-slider p { color: #dce3eb; font-size: 15px; max-width: 540px; margin-bottom: 26px; line-height: 1.5; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; background: rgba(0,0,0,0.5); color: #fff; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: grid; place-items: center; font-size: 20px; cursor: pointer; z-index: 10; transition: background .2s; }
.slider-arrow:hover { background: var(--primary); }
.slider-arrow.prev { left: 25px; }
.slider-arrow.next { right: 25px; }
.slider-dots { position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all .2s; }
.dot.active { background: var(--primary); width: 26px; border-radius: 5px; }

/* Centered & Balanced Shop By Category Section */
.cat-sec-wrap { padding: 65px 0; background: #fff; }
.sec-head { text-align: center; margin-bottom: 35px; }
.sec-head h2 { font-size: 28px; font-weight: 900; text-transform: uppercase; margin: 0 0 6px 0; letter-spacing: .5px; }
.sec-head h2 span { color: var(--primary); }
.sec-head p { font-size: 13.5px; color: var(--muted); }
.cat-photo-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; max-width: 1240px; margin: 0 auto; }
.cat-photo-card { position: relative; flex: 0 1 calc(25% - 16px); min-width: 250px; max-width: 285px; height: 310px; border-radius: 8px; overflow: hidden; background: #111; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px 14px; text-align: center; color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.12); transition: all .25s ease; }
.cat-photo-card:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(242,96,28,0.22); }
.cat-photo-card img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; opacity: 0.88; }
.cat-photo-card:hover img.bg { transform: scale(1.08); opacity: 0.98; }
.cat-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%); z-index: 1; }
.cat-card-body { position: relative; z-index: 2; }
.cat-icon-badge { width: 42px; height: 42px; background: rgba(255,255,255,0.95); color: #111; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 10px auto; font-size: 18px; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.cat-photo-card h3 { font-size: 13.5px; text-transform: uppercase; margin: 0 0 4px 0; font-weight: 900; letter-spacing: 0.5px; }
.cat-photo-card p { font-size: 11px; color: #e2e8f0; font-weight: 600; margin: 0; }

/* Feature Strip */
.features-bar { background: #0a0e14; color: #fff; padding: 30px 0; border-top: 1px solid #1a222c; border-bottom: 1px solid #1a222c; }
.features-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; }
.feature-item { text-align: center; padding: 0 10px; border-right: 1px solid #202b37; }
.feature-item:last-child { border-right: 0; }
.feature-item .f-icon { font-size: 24px; color: var(--primary); margin-bottom: 6px; display: inline-block; }
.feature-item h4 { font-size: 11px; text-transform: uppercase; margin: 0 0 3px 0; font-weight: 900; }
.feature-item p { font-size: 10px; color: #9aa5b1; line-height: 1.35; margin: 0; }

/* Welcome Section */
.welcome-sec { padding: 70px 0; background: #fff; }
.welcome-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 45px; align-items: center; }
.welcome-img-wrap { border-radius: 6px; overflow: hidden; box-shadow: 0 16px 36px rgba(0,0,0,0.12); border: 1px solid #e1e6ed; }
.welcome-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.welcome-content h2 { font-size: 26px; font-weight: 900; text-transform: uppercase; line-height: 1.25; margin: 10px 0 18px 0; }
.welcome-content h2 span { color: var(--primary); }
.welcome-content p { font-size: 13px; color: #495460; line-height: 1.65; margin-bottom: 14px; }
.signature-box { margin-top: 20px; font-style: italic; font-weight: 800; color: #111; font-size: 18px; font-family: Georgia, serif; }
.signature-box small { display: block; font-size: 10.5px; font-style: normal; color: #777; font-family: sans-serif; text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }

/* Popular Products Section */
.popular-sec { background: #f6f8fa; padding: 70px 0; }
.product-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 30px; flex-wrap: wrap; }
.p-tab { background: #fff; border: 1px solid #d5dbdf; padding: 10px 22px; font-size: 11px; font-weight: 800; text-transform: uppercase; cursor: pointer; border-radius: 3px; transition: all .15s; }
.p-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.popular-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.pop-card { background: #fff; border: 1px solid #e1e6ed; border-radius: 4px; padding: 12px; text-align: center; display: flex; flex-direction: column; transition: all .2s; }
.pop-card:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.06); }
.pop-img { height: 160px; background: #f4f6f8; display: flex; align-items: center; justify-content: center; border-radius: 3px; margin-bottom: 10px; overflow: hidden; }
.pop-img img { max-width: 90%; max-height: 90%; object-fit: contain; }
.pop-card h4 { font-size: 11px; text-transform: uppercase; margin: 0 0 3px 0; font-weight: 800; }
.pop-card small { color: #6d7782; font-size: 9.5px; margin-bottom: 10px; display: block; }
.pop-card .btn { margin-top: auto; padding: 8px 10px; font-size: 9px; }

/* Stats Bar */
.stats-bar { background: #080c10; color: #fff; padding: 40px 0; border-top: 1px solid #1f2732; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; }
.stat-box { text-align: center; border-right: 1px solid #1f2732; padding: 0 15px; }
.stat-box:last-child { border-right: 0; }
.stat-box .s-icon { font-size: 26px; color: var(--primary); margin-bottom: 6px; }
.stat-box strong { font-size: 32px; font-weight: 900; display: block; line-height: 1; margin-bottom: 6px; }
.stat-box span { font-size: 10.5px; color: #9ba5b1; text-transform: uppercase; letter-spacing: .5px; }

/* CTA Section */
.cta-sec { min-height: 380px; position: relative; background: #05080c; display: flex; align-items: center; color: #fff; }
.cta-sec img.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.cta-sec .container { position: relative; z-index: 2; max-width: 720px; }
.cta-sec h2 { font-size: 34px; font-weight: 900; text-transform: uppercase; margin-bottom: 10px; }
.cta-sec p { font-size: 14.5px; color: #e1e7ed; margin-bottom: 25px; }

/* Page Hero */
.pagehero { min-height: 280px; background: #080c10; color: #fff; display: flex; align-items: center; position: relative; }
.pagehero h1 { font-size: 42px; font-weight: 900; font-style: italic; text-transform: uppercase; line-height: 1.1; margin: 6px 0; }
.pagehero p { font-size: 14px; color: #d0d7de; max-width: 650px; }
.cat-stat-badge { display: inline-block; margin-top: 12px; background: rgba(242,96,28,0.2); color: #ffa372; border: 1px solid rgba(242,96,28,0.4); padding: 5px 14px; border-radius: 20px; font-size: 11px; font-weight: 800; text-transform: uppercase; }

/* Product Grid on Category Pages */
.catalog-section { background: #f6f8fb; padding: 45px 0; }
.catalog-toolbar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; margin-bottom: 24px; background: #fff; padding: 18px 22px; border: 1px solid #e1e6ed; border-radius: 6px; }
.filter-tabs-wrapper { flex: 1; overflow-x: auto; white-space: nowrap; }
.filter-tabs { display: inline-flex; gap: 7px; }
.filter-tab { background: #f0f2f5; border: 1px solid #d8dee4; color: #333; font-size: 11px; font-weight: 700; padding: 7px 14px; border-radius: 20px; cursor: pointer; text-transform: uppercase; }
.filter-tab:hover { background: #e2e6eb; }
.filter-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.search-box input { padding: 9px 16px; border: 1px solid #ccd3dc; border-radius: 20px; font-size: 12px; width: 250px; outline: none; }
.search-box input:focus { border-color: var(--primary); }
.catalog-header-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-size: 12px; color: #606b76; }
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.prod-card { background: #fff; border: 1px solid #e1e6ed; border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; transition: all .2s; }
.prod-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.prod-img-wrap { height: 220px; background: #f3f5f8; position: relative; display: flex; align-items: center; justify-content: center; cursor: pointer; overflow: hidden; }
.prod-img-wrap img { max-width: 90%; max-height: 90%; object-fit: contain; transition: transform .3s; }
.prod-card:hover .prod-img-wrap img { transform: scale(1.05); }
.sub-badge { position: absolute; top: 10px; left: 10px; background: rgba(8,12,17,0.8); color: #fff; font-size: 9px; padding: 3px 8px; border-radius: 3px; font-weight: 700; text-transform: uppercase; }
.views-badge { position: absolute; bottom: 10px; right: 10px; background: var(--primary); color: #fff; font-size: 9px; padding: 2px 7px; border-radius: 12px; font-weight: 800; text-transform: uppercase; }
.prod-info { padding: 14px; display: flex; flex-direction: column; flex: 1; }
.art-badge { color: var(--primary); font-size: 10px; font-weight: 900; text-transform: uppercase; margin-bottom: 4px; display: block; }
.prod-info h3 { font-size: 13px; line-height: 1.35; margin: 0 0 8px 0; font-weight: 800; cursor: pointer; }
.prod-info h3:hover { color: var(--primary); }
.prod-specs-preview { margin: 0 0 12px 0; padding-left: 16px; color: #66727f; font-size: 11px; line-height: 1.4; }
.card-btns { margin-top: auto; display: flex; gap: 6px; }
.card-btns .btn-detail { flex: 1; background: #f0f2f5; border: 1px solid #d2d8df; padding: 8px; font-size: 10px; font-weight: 800; text-transform: uppercase; text-align: center; border-radius: 3px; cursor: pointer; }
.card-btns .btn-detail:hover { background: #e2e6ea; }
.card-btns .btn-add-basket { flex: 1; background: var(--primary); color: #fff; border: 0; padding: 8px; font-size: 10px; font-weight: 800; text-transform: uppercase; text-align: center; border-radius: 3px; cursor: pointer; }
.card-btns .btn-add-basket:hover { background: var(--primary-hover); }

/* Single Product Detail Page with Interactive Hover Zoom Focus */
.detail-section { padding: 50px 0; background: #fff; }
.detail-grid { display: grid; grid-template-columns: 1.05fr 1.15fr; gap: 40px; align-items: start; }
.detail-gallery { display: flex; flex-direction: column; gap: 12px; }
.detail-main-img { height: 420px; background: #f5f6f8; border-radius: 6px; display: flex; align-items: center; justify-content: center; border: 1px solid #e1e6ed; overflow: hidden; position: relative; cursor: crosshair; }
.detail-main-img img { max-width: 90%; max-height: 90%; object-fit: contain; transition: transform .15s ease-out; will-change: transform; transform-origin: center center; }
.detail-thumbs { display: flex; gap: 10px; overflow-x: auto; padding: 4px 0; }
.detail-thumb { width: 75px; height: 75px; object-fit: contain; background: #f5f6f8; border: 2px solid #ddd; border-radius: 4px; cursor: pointer; }
.detail-thumb.active { border-color: var(--primary); }
.detail-content .d-sub { color: var(--primary); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }
.detail-content h1 { font-size: 28px; font-weight: 900; line-height: 1.2; margin: 6px 0 10px 0; }
.d-meta { display: flex; gap: 12px; margin-bottom: 16px; font-size: 12px; }
.d-art { background: #eef1f5; padding: 4px 10px; border-radius: 3px; font-weight: 800; }
.d-stock { background: #e6f9ed; color: #1e874b; padding: 4px 10px; border-radius: 3px; font-weight: 800; }
.d-desc { font-size: 13.5px; color: #495460; line-height: 1.6; margin-bottom: 20px; }
.detail-bullets { padding-left: 20px; margin-bottom: 25px; font-size: 13px; color: #2d3748; line-height: 1.6; }
.detail-options { background: #f7f9fa; border: 1px solid #e2e6eb; padding: 20px; border-radius: 6px; margin-bottom: 25px; }
.option-row { margin-bottom: 16px; }
.option-row:last-child { margin-bottom: 0; }
.option-label { font-size: 11.5px; font-weight: 800; text-transform: uppercase; display: block; margin-bottom: 6px; }
.size-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.size-pill { padding: 6px 14px; border: 1px solid #ccd3db; background: #fff; font-size: 11px; font-weight: 800; border-radius: 3px; cursor: pointer; }
.size-pill.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.qty-input { width: 120px; padding: 8px 12px; border: 1px solid #ccd3db; border-radius: 3px; font-size: 13px; font-weight: bold; }
.detail-actions { display: flex; gap: 12px; }
.spec-tabs { margin-top: 45px; border-top: 1px solid #e1e6ed; padding-top: 30px; }
.spec-tabs-nav { display: flex; gap: 10px; border-bottom: 2px solid #e1e6ed; margin-bottom: 20px; }
.spec-tab-btn { padding: 10px 18px; font-size: 12px; font-weight: 800; text-transform: uppercase; cursor: pointer; border: 0; background: none; color: #666; }
.spec-tab-btn.active { color: var(--primary); border-bottom: 2px solid var(--primary); margin-bottom: -2px; }

/* Shopping Cart / Basket Page */
.basket-page { padding: 50px 0; background: #f8fafc; }
.basket-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: start; }
.basket-table-wrap { background: #fff; border: 1px solid #e1e6ed; border-radius: 6px; padding: 25px; }
.basket-form-wrap { background: #fff; border: 1px solid #e1e6ed; border-radius: 6px; padding: 25px; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding: 12px; border-bottom: 2px solid #e1e6ed; font-size: 11px; text-transform: uppercase; color: #66727f; }
.cart-table td { padding: 14px 12px; border-bottom: 1px solid #f0f2f5; vertical-align: middle; }
.cart-prod-cell { display: flex; align-items: center; gap: 12px; }
.cart-prod-cell img { width: 55px; height: 55px; object-fit: contain; background: #f5f6f8; border-radius: 4px; }
.cart-prod-info h4 { font-size: 12px; margin-bottom: 2px; }
.cart-prod-info small { color: var(--primary); font-weight: 800; font-size: 10.5px; }
.cart-qty-input { width: 65px; padding: 6px; border: 1px solid #ddd; text-align: center; border-radius: 3px; font-weight: bold; }
.btn-remove-item { background: none; border: none; color: #999; font-size: 20px; cursor: pointer; }
.btn-remove-item:hover { color: var(--primary); }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 11.5px; font-weight: 800; margin-bottom: 5px; text-transform: uppercase; }
.form-control { width: 100%; padding: 10px 14px; border: 1px solid #ccd3dc; border-radius: 4px; font-size: 12.5px; }
.form-control:focus { outline: none; border-color: var(--primary); }

/* Information Pages (About, Company Profile, Fabric, Size Chart) */
.info-section { padding: 60px 0; background: #fff; }
.info-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: center; }
.info-box { background: #f8fafc; border: 1px solid #e2e6eb; border-radius: 6px; padding: 25px; margin-bottom: 20px; }
.info-box h3 { font-size: 17px; margin-bottom: 10px; color: #111; font-weight: 900; }
.info-box p { font-size: 13px; color: #495460; line-height: 1.6; margin-bottom: 10px; }
.size-table { width: 100%; border-collapse: collapse; margin-top: 15px; font-size: 12px; }
.size-table th, .size-table td { border: 1px solid #d5dbdf; padding: 9px 12px; text-align: center; }
.size-table th { background: #0c1218; color: #fff; font-weight: 800; text-transform: uppercase; }
.size-table tr:nth-child(even) { background: #f8fafc; }

/* Clean Professional Footer */
footer { background: #000; color: #a5b0bd; padding: 50px 0 20px; font-size: 11.5px; border-top: 3px solid var(--primary); }
.footgrid { display: grid; grid-template-columns: 1.35fr 1fr 1.15fr 1.25fr 1.15fr; gap: 28px; }
.foot-logo { height: 44px; margin-bottom: 15px; }
.footgrid h4 { color: #fff; font-size: 12px; text-transform: uppercase; margin-bottom: 15px; letter-spacing: .5px; font-weight: 900; }
.footgrid p { margin-bottom: 8px; line-height: 1.5; }
.footgrid a { color: #a5b0bd; display: block; margin-bottom: 6px; }
.footgrid a:hover { color: #fff; padding-left: 2px; }
.foot-emails { display: flex; flex-direction: column; gap: 4px; margin-top: 4px; }
.foot-emails a { color: #d0d7de; display: block; margin: 0; }
.foot-emails a:hover { color: var(--primary); }
.foot-social { display: flex; gap: 8px; margin-top: 14px; }
.foot-social a { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; color: #fff; font-weight: bold; }
.newsletter-input { width: 100%; padding: 10px; background: #111822; border: 1px solid #293545; color: #fff; border-radius: 3px; font-size: 11px; }
.copy { border-top: 1px solid #1a222c; margin-top: 35px; padding-top: 18px; display: flex; justify-content: space-between; font-size: 10.5px; color: #768390; }
.back-to-top { position: fixed; bottom: 25px; right: 25px; width: 38px; height: 38px; background: var(--primary); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 14px; z-index: 999; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }

/* Responsive adjustments */
@media(max-width: 1100px) {
  .cat-photo-card { flex: 0 1 calc(33.333% - 14px); min-width: 220px; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .popular-grid { grid-template-columns: repeat(3, 1fr); }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .footgrid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 768px) {
  .links { display: none; }
  .hamb { display: block; }
  .cat-photo-card { flex: 0 1 calc(50% - 10px); min-width: 150px; height: 270px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .welcome-grid, .detail-grid, .basket-layout, .info-grid { grid-template-columns: 1fr; }
  .popular-grid, .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footgrid { grid-template-columns: 1fr; }
  .hero-slider h1 { font-size: 36px; }
}

/* Quote Upload Dropzone & Previews */
.quote-upload-dropzone {
  border: 2px dashed #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 6px;
}
.quote-upload-dropzone:hover, .quote-upload-dropzone.dragover {
  border-color: var(--primary);
  background: #fff8f5;
}
.quote-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.quote-preview-card {
  position: relative;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 6px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.04);
}
.quote-preview-card img {
  width: 100%;
  height: 85px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 4px;
  display: block;
}
.quote-preview-card .file-icon-placeholder {
  width: 100%;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 4px;
  font-size: 30px;
  margin-bottom: 4px;
}
.quote-preview-card .file-name {
  font-size: 11px;
  font-weight: 600;
  color: #334155;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  line-height: 1.3;
}
.quote-preview-card .file-size {
  font-size: 10px;
  color: #64748b;
  display: block;
}
.quote-preview-card .btn-remove-file {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 22px;
  height: 22px;
  background: rgba(220, 38, 38, 0.9);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: transform 0.2s, background 0.2s;
}
.quote-preview-card .btn-remove-file:hover {
  transform: scale(1.12);
  background: #b91c1c;
}


/* Hero Video Banner (Full Responsive Complete 100% Fit on Mobile & Desktop) */
.hero-video-section {
  width: 100%;
  background: #000;
  overflow: hidden;
  position: relative;
  line-height: 0;
}
.video-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  background: #000;
  line-height: 0;
  aspect-ratio: 16 / 9;
}
.slide-video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  display: block;
}

/* Footer Logo & Social Styles */
.foot-logo {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}
.foot-social { display: flex; gap: 10px; margin-top: 14px; }
.foot-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  color: #fff;
  font-weight: bold;
  background: #192330;
  transition: all .2s;
  text-decoration: none;
}
.foot-social a.s-fb:hover { background: #1877f2; }
.foot-social a.s-in:hover { background: #e4405f; }


/* Mobile Responsive Overrides */
@media(max-width: 768px) {
  .cart-btn, .basket-nav-btn {
    display: none !important;
  }
  .top-ticker-bar {
    padding: 0 15px;
    font-size: 11px;
  }
  .video-container {
    width: 100%;
    aspect-ratio: 848 / 478;
    height: auto;
  }
}


/* ==========================================================================
   SITE PRELOADER & LOGO SCREENSAVER EFFECT
   ========================================================================== */
#sitePreloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #16202e 0%, #06090e 70%, #020406 100%);
  z-index: 9999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s ease;
  overflow: hidden;
}
#sitePreloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-ambient-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(242, 96, 28, 0.28) 0%, rgba(242, 96, 28, 0.06) 50%, transparent 70%);
  border-radius: 50%;
  animation: ambientBreathe 3s infinite ease-in-out;
  pointer-events: none;
}

.preloader-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-logo-wrap {
  position: relative;
  display: inline-block;
  padding: 24px;
}

.preloader-logo {
  height: 75px;
  width: auto;
  max-width: 290px;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(242, 96, 28, 0.55));
  animation: logoScreensaverPulse 2.4s infinite ease-in-out;
  display: block;
}

/* Concentric Ripple Rings behind Logo */
.preloader-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1.5px solid rgba(242, 96, 28, 0.45);
  border-radius: 50%;
  pointer-events: none;
  animation: ringPulse 2.4s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
}
.preloader-ring.r2 {
  animation-delay: 0.8s;
  border-color: rgba(242, 96, 28, 0.25);
}
.preloader-ring.r3 {
  animation-delay: 1.6s;
  border-color: rgba(242, 96, 28, 0.12);
}

.preloader-bar-wrap {
  width: 220px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 25px;
  position: relative;
}
.preloader-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #f2601c, #ff8a4c);
  box-shadow: 0 0 12px rgba(242, 96, 28, 0.8);
  border-radius: 3px;
  transition: width 0.12s ease-out;
}

.preloader-tagline {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 600;
}

.preloader-enter-btn {
  margin-top: 22px;
  background: rgba(242, 96, 28, 0.18);
  border: 1.5px solid var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 9px 22px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.preloader-enter-btn:hover {
  background: var(--primary);
  box-shadow: 0 0 20px rgba(242, 96, 28, 0.7);
  transform: translateY(-2px);
}

@keyframes logoScreensaverPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 15px rgba(242, 96, 28, 0.4));
  }
  50% {
    transform: scale(1.06);
    filter: drop-shadow(0 0 35px rgba(242, 96, 28, 0.9));
  }
}

@keyframes ringPulse {
  0% {
    width: 60px;
    height: 60px;
    opacity: 0.9;
  }
  100% {
    width: 340px;
    height: 340px;
    opacity: 0;
  }
}

@keyframes ambientBreathe {
  0%, 100% { transform: scale(1); opacity: 0.65; }
  50% { transform: scale(1.25); opacity: 1; }
}



@media(max-width: 768px) {
  .video-audio-control {
    bottom: 12px;
    right: 14px;
  }
  .btn-audio-toggle {
    font-size: 11px;
    padding: 7px 13px;
  }
}


/* ==========================================================================
   2-STEP SUBCATEGORY SELECTION & DRILLDOWN SYSTEM
   ========================================================================== */
.subcat-selection-section {
  margin-bottom: 40px;
}
.subcat-selection-header {
  text-align: center;
  margin-bottom: 28px;
}
.subcat-selection-header h2 {
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.subcat-selection-header p {
  color: var(--text-light);
  font-size: 13.5px;
}
.subcat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.subcat-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.subcat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 12px 28px rgba(242,96,28,0.18);
}
.subcat-card-img {
  height: 165px;
  width: 100%;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #edf2f7;
}
.subcat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.3s ease;
}
.subcat-card:hover .subcat-card-img img {
  transform: scale(1.08);
}
.subcat-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}
.subcat-card-body h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.35;
}
.subcat-card-body .subcat-count {
  font-size: 12px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 14px;
}
.subcat-card-body .subcat-btn {
  background: #f1f5f9;
  color: var(--dark);
  padding: 9px 12px;
  border-radius: 4px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.subcat-card:hover .subcat-btn {
  background: var(--primary);
  color: #fff;
}

/* Back to Subcategories Navigation Bar */
.back-subcats-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--primary);
  border-radius: 6px;
  padding: 12px 18px;
  margin-bottom: 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  flex-wrap: wrap;
  gap: 12px;
}
.btn-back-subcats {
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 9px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.btn-back-subcats:hover {
  background: var(--primary);
  transform: translateX(-3px);
}
.active-subcat-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
}
.active-subcat-badge {
  background: var(--primary);
  color: #fff;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: bold;
  margin-left: 8px;
}


/* ==========================================================================
   OFF-CANVAS SLIDING MOBILE NAVIGATION DRAWER
   ========================================================================== */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85%;
  height: 100%;
  background: #0d131a;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.6);
  z-index: 1000000;
  display: flex;
  flex-direction: column;
  transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #1a2330;
  background: #080c10;
}
.mobile-drawer-logo {
  height: 38px;
  width: auto;
}
.btn-close-drawer {
  background: none;
  border: none;
  color: #a0aec0;
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}
.btn-close-drawer:hover {
  color: var(--primary);
}

.mobile-drawer-nav {
  padding: 15px 0;
  flex: 1;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 22px;
  color: #e2e8f0;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #141c26;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--primary);
  background: #111822;
  padding-left: 26px;
}
.mobile-nav-link .arrow-icon {
  font-size: 11px;
  transition: transform 0.2s;
}
.mobile-nav-link.open .arrow-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.mobile-sub-menu {
  display: none;
  background: #080c10;
  padding: 8px 0;
  border-bottom: 1px solid #141c26;
}
.mobile-sub-menu.open {
  display: block;
}
.mobile-sub-item {
  display: block;
  padding: 9px 22px 9px 34px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
}
.mobile-sub-item:hover {
  color: #fff;
  padding-left: 38px;
  color: var(--primary);
}

.mobile-drawer-footer {
  padding: 20px;
  background: #080c10;
  border-top: 1px solid #1a2330;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Fix Mobile Top Bar & Hamburger Header */
@media(max-width: 768px) {
  .top-ticker-bar {
    height: 32px;
    line-height: 32px;
    padding: 0 10px;
    font-size: 10.5px;
  }
  .ticker-wrap {
    height: 32px;
    padding: 0;
  }
  .ticker-slide {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 5px;
  }
  .ticker-tag {
    font-size: 8.5px;
    padding: 2px 6px;
    margin-right: 6px;
  }
  .hamb {
    display: block;
    background: none;
    border: none;
    color: #111;
    font-size: 24px;
    cursor: pointer;
    padding: 6px;
    line-height: 1;
  }
  .links {
    display: none !important;
  }
  .features-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ==========================================================================
   HEADER SEARCH & MOBILE 3-PART HEADER LAYOUT
   ========================================================================== */

/* Desktop Search Wrap */
.nav-search-wrap.desktop-only {
  position: relative;
  width: 210px;
  flex-shrink: 0;
}
.nav-search-form {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 20px;
  padding: 4px 12px;
  transition: all 0.2s ease;
}
.nav-search-form:focus-within {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(242, 96, 28, 0.15);
}
.nav-search-input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 11.5px;
  color: #1e293b;
  width: 100%;
}
.nav-search-input::placeholder {
  color: #94a3b8;
}
.nav-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  color: #64748b;
  padding: 0 0 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s;
}
.nav-search-btn:hover {
  color: var(--primary);
}

/* Live Instant Search Dropdown */
.search-live-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  max-height: 380px;
  overflow-y: auto;
  z-index: 100000;
}
.search-live-dropdown.active {
  display: block;
}
.search-live-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
  color: #1e293b;
  transition: background 0.15s;
}
.search-live-item:last-child {
  border-bottom: none;
}
.search-live-item:hover {
  background: #f8fafc;
}
.search-live-thumb {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  object-fit: cover;
  background: #f1f5f9;
  flex-shrink: 0;
  border: 1px solid #e2e8f0;
}
.search-live-info {
  flex: 1;
  min-width: 0;
}
.search-live-name {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-live-meta {
  font-size: 10px;
  color: #64748b;
  display: flex;
  gap: 6px;
  align-items: center;
}
.search-live-meta .art-code {
  color: var(--primary);
  font-weight: 700;
}
.search-live-view-all {
  display: block;
  text-align: center;
  padding: 10px;
  background: #f8fafc;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  border-top: 1px solid #e2e8f0;
}
.search-live-view-all:hover {
  background: #f1f5f9;
  text-decoration: underline;
}

/* Mobile Search Toggle Button & Mobile Search Bar */
.mobile-search-toggle {
  display: none;
}
.mobile-search-bar {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 2px solid var(--primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 10px 14px;
  z-index: 99999;
}
.mobile-search-inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.mobile-search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  border: 1.5px solid #cbd5e1;
  border-radius: 24px;
  padding: 4px 10px;
}
.mobile-search-icon {
  font-size: 14px;
  color: #64748b;
}
.mobile-search-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
  color: #0f172a;
  padding: 6px 0;
}
.mobile-search-submit {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
}
.mobile-search-close {
  background: none;
  border: none;
  font-size: 16px;
  color: #64748b;
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
}

/* Search Results Grid on products.html */
.search-results-box {
  padding: 20px 0 40px 0;
}
.search-results-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 24px;
  border-bottom: 2px solid #f1f5f9;
}
.search-results-topbar h2 {
  font-size: 22px;
  font-weight: 900;
  margin: 0;
  color: #0f172a;
}
.search-results-topbar h2 span {
  color: var(--primary);
}
.search-grid-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.search-prod-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
}
.search-prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
  border-color: var(--primary);
}
.search-prod-img {
  width: 100%;
  height: 230px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
.search-prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.search-prod-card:hover .search-prod-img img {
  transform: scale(1.05);
}
.search-prod-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.search-prod-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  margin-bottom: 6px;
}
.search-prod-subcat {
  background: #f1f5f9;
  color: #475569;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 130px;
}
.search-prod-art {
  color: var(--primary);
  font-weight: 800;
}
.search-prod-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px 0;
  line-height: 1.35;
  flex: 1;
}
.search-prod-actions {
  display: flex;
  gap: 8px;
}
.search-prod-actions .btn {
  flex: 1;
  padding: 8px 10px;
  font-size: 11px;
  text-align: center;
}

/* ==========================================================================
   MOBILE VIEW FIX (<= 768px):
   1. Left side: 3-line hamburger menu
   2. Center: Logo
   3. Right side: Search icon
   ========================================================================== */
@media (max-width: 768px) {
  .nav {
    height: 64px !important;
    position: sticky;
    top: 0;
    z-index: 9999;
  }
  .nav .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 100% !important;
    padding: 0 14px !important;
    position: relative !important;
  }
  
  /* 1. LEFT SIDE: 3-LINE MENU */
  .hamb {
    order: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    background: #f8fafc !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 6px !important;
    color: #0f172a !important;
    font-size: 22px !important;
    cursor: pointer !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: all 0.2s !important;
  }
  .hamb:active {
    background: #e2e8f0 !important;
    color: var(--primary) !important;
    border-color: var(--primary) !important;
  }

  /* 2. CENTER: LOGO */
  .brand {
    order: 2 !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    flex: 1 !important;
  }
  .site-logo {
    height: 36px !important;
    max-width: 140px !important;
    object-fit: contain !important;
  }

  /* 3. RIGHT SIDE: SEARCH ICON */
  .mobile-search-toggle {
    order: 3 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    background: #f8fafc !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 6px !important;
    color: #0f172a !important;
    font-size: 17px !important;
    cursor: pointer !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: all 0.2s !important;
  }
  .mobile-search-toggle:active {
    background: #e2e8f0 !important;
    color: var(--primary) !important;
    border-color: var(--primary) !important;
  }

  /* HIDE DESKTOP ELEMENTS ON MOBILE */
  .links {
    display: none !important;
  }
  .basket-nav-btn {
    display: none !important;
  }
  .nav-search-wrap.desktop-only {
    display: none !important;
  }
}


/* ==========================================================================
   ADVANCED MOBILE RESPONSIVE FIT (iPhone SE, Android & All Viewports)
   ========================================================================== */

html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

@media (max-width: 768px) {
  /* 1. TOP TICKER BAR - SINGLE-LINE CLEAN FIT */
  .top-ticker-bar {
    height: 34px !important;
    line-height: 34px !important;
    padding: 0 10px !important;
    font-size: 10.5px !important;
    letter-spacing: 0.2px !important;
  }
  .ticker-wrap {
    height: 34px !important;
  }
  .ticker-slide {
    font-size: 10.5px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    gap: 6px !important;
    padding: 0 4px !important;
  }
  .ticker-tag {
    font-size: 8px !important;
    padding: 2px 6px !important;
    border-radius: 3px !important;
    letter-spacing: 0.5px !important;
    flex-shrink: 0 !important;
  }
  .ticker-slide span:not(.ticker-tag) {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  /* 2. PAGE HERO & HEADINGS SCALING */
  .pagehero {
    padding: 40px 16px 35px 16px !important;
  }
  .pagehero h1 {
    font-size: 24px !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
  }
  .pagehero p {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }
  .sec-head h2 {
    font-size: 22px !important;
  }
  .sec-head p {
    font-size: 12px !important;
  }

  /* 3. SUBCATEGORY CARDS GRID - 2 COLUMNS ON MOBILE */
  .subcat-selection-header h2 {
    font-size: 20px !important;
  }
  .subcat-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 8px !important;
  }
  .subcat-card {
    border-radius: 8px !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06) !important;
  }
  .subcat-card-img {
    height: 140px !important;
  }
  .subcat-card-body {
    padding: 10px 8px !important;
  }
  .subcat-card-body h3 {
    font-size: 12.5px !important;
    line-height: 1.25 !important;
    min-height: 32px !important;
  }
  .subcat-count {
    font-size: 10px !important;
  }
  .subcat-btn {
    padding: 6px 4px !important;
    font-size: 10px !important;
    margin-top: 6px !important;
  }

  /* 4. PRODUCT CARDS GRID - 2 COLUMNS ON MOBILE */
  .prod-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .prod-card {
    border-radius: 6px !important;
  }
  .prod-img-wrap {
    height: 155px !important;
  }
  .prod-info {
    padding: 10px 8px !important;
  }
  .prod-info h3 {
    font-size: 12px !important;
    min-height: 30px !important;
    line-height: 1.3 !important;
  }
  .art-badge {
    font-size: 9px !important;
    padding: 2px 5px !important;
  }
  .sub-badge {
    font-size: 8px !important;
    padding: 2px 5px !important;
  }
  .card-btns {
    flex-direction: column !important;
    gap: 6px !important;
  }
  .card-btns .btn-detail, .card-btns .btn-basket {
    width: 100% !important;
    padding: 7px 4px !important;
    font-size: 10.5px !important;
    text-align: center !important;
  }

  /* 5. PRODUCT DETAIL PAGE MOBILE FIT */
  .detail-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .detail-main-img {
    height: 300px !important;
  }
  .detail-thumb {
    width: 55px !important;
    height: 55px !important;
  }
  .size-pills {
    flex-wrap: wrap !important;
    gap: 6px !important;
  }
  .size-pill {
    padding: 6px 12px !important;
    font-size: 11px !important;
  }
  .detail-actions {
    flex-direction: column !important;
    gap: 8px !important;
  }

  /* 6. TABLES & BUILDER HORIZONTAL WRAP */
  .table-responsive, .spec-table-wrap {
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
}


/* ==========================================================================
   TECHNICAL SPEC TABS MOBILE FIX (PREVENT CUT-OFF)
   ========================================================================== */
.spec-tabs-nav {
  display: flex !important;
  gap: 8px !important;
  border-bottom: 2px solid #e1e6ed !important;
  margin-bottom: 20px !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  white-space: nowrap !important;
  padding-bottom: 2px !important;
  scrollbar-width: none;
}
.spec-tabs-nav::-webkit-scrollbar {
  display: none;
}
.spec-tab-btn {
  padding: 10px 16px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  border: 0 !important;
  background: none !important;
  color: #64748b !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  transition: all 0.2s ease !important;
}
.spec-tab-btn.active {
  color: var(--primary) !important;
  border-bottom: 2px solid var(--primary) !important;
  margin-bottom: -2px !important;
}

@media (max-width: 768px) {
  .spec-tabs-nav {
    gap: 6px !important;
  }
  .spec-tab-btn {
    padding: 8px 10px !important;
    font-size: 11px !important;
  }
}

/* ==========================================================================
   MODERN FOOTER CONTACT & SOCIAL SVG BUTTONS
   ========================================================================== */
.foot-contact-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.foot-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: #cbd5e1;
  line-height: 1.45;
}
.foot-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #16202c;
  border: 1px solid #223042;
  color: var(--primary);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.foot-contact-text {
  flex: 1;
}
.foot-contact-text strong {
  display: block;
  font-size: 11px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.foot-contact-text a {
  color: #f1f5f9;
  text-decoration: none;
  transition: color 0.15s;
}
.foot-contact-text a:hover {
  color: var(--primary);
}

.foot-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #141d27;
  border: 1px solid #233142;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.2s ease;
}
.social-icon-btn.fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24,119,242,0.35);
}
.social-icon-btn.insta:hover {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(225,48,108,0.35);
}

/* ==========================================================================
   PRODUCT DETAIL: MULTI-SIZE, COLOR, ARTWORK & B2B CUSTOM ORDERING HUB
   ========================================================================== */
.b2b-order-hub {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
}
.b2b-hub-title {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.b2b-size-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.b2b-size-cell {
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  padding: 8px 4px;
  text-align: center;
  transition: all 0.15s;
}
.b2b-size-cell:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(242,96,28,0.15);
}
.b2b-size-name {
  font-size: 11px;
  font-weight: 800;
  color: #334155;
  margin-bottom: 4px;
}
.b2b-size-input {
  width: 100%;
  border: none;
  background: #f1f5f9;
  border-radius: 4px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  padding: 4px 0;
  outline: none;
}
.b2b-size-input:focus {
  background: #fff;
  color: var(--primary);
}
.b2b-total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 15px;
}
.b2b-total-badge {
  color: var(--primary);
  font-size: 15px;
  font-weight: 900;
}

/* Color & Artwork Row */
.b2b-custom-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 15px;
}
.b2b-input-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.b2b-input-group label {
  font-size: 11px;
  font-weight: 800;
  color: #475569;
  text-transform: uppercase;
}
.b2b-input-group input, .b2b-input-group select, .b2b-input-group textarea {
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 12px;
  background: #fff;
  color: #0f172a;
  outline: none;
}
.b2b-input-group input:focus, .b2b-input-group select:focus, .b2b-input-group textarea:focus {
  border-color: var(--primary);
}

@media (max-width: 768px) {
  .b2b-size-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .b2b-custom-options {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CLEAN FOOTER CONTACT INFO (EXACT ICON : VALUE FORMAT)
   ========================================================================== */
.foot-contact-clean {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.foot-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 13px;
  line-height: 1.45;
  color: #cbd5e1;
}
.foot-contact-row .fc-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.foot-contact-row .fc-sep {
  color: #94a3b8;
  font-weight: 700;
  margin-right: 2px;
}
.foot-contact-row .fc-text {
  color: #cbd5e1;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.15s ease;
}
.foot-contact-row a.fc-text:hover {
  color: var(--primary);
}
.foot-contact-row a.fc-wa {
  color: #22c55e;
  font-weight: 700;
}
.foot-contact-row a.fc-wa:hover {
  color: #4ade80;
  text-decoration: underline;
}

/* ==========================================================================
   DESKTOP 4-COLUMN PRODUCT GRID & COLOR SELECTOR STYLES
   ========================================================================== */
#productsGrid, .prod-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  width: 100% !important;
}

@media (max-width: 1100px) {
  #productsGrid, .prod-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
  }
}

@media (max-width: 768px) {
  #productsGrid, .prod-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}

@media (max-width: 480px) {
  #productsGrid, .prod-grid {
    grid-template-columns: 1fr !important;
  }
}

.color-swatch-btn {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  outline: none;
}
.color-swatch-btn:hover {
  transform: scale(1.15);
}
.color-swatch-btn.active {
  box-shadow: 0 0 0 3px #f2601c !important;
  border-color: #fff !important;
  transform: scale(1.15);
}

/* ==========================================================================
   CINEMATIC ACTION BANNER CARDS FOR SUBCATEGORIES
   ========================================================================== */
.subcat-card-img {
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  width: 100% !important;
  background: #090e14 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  position: relative !important;
  border-bottom: 2px solid #e2e8f0 !important;
}
.subcat-card-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  padding: 0 !important;
  transition: transform 0.35s ease !important;
}
.subcat-card:hover .subcat-card-img img {
  transform: scale(1.08) !important;
}
.subcat-card {
  border: 1px solid #cbd5e1 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06) !important;
  transition: all 0.25s ease !important;
}
.subcat-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12) !important;
  border-color: var(--primary) !important;
}
.subcat-card-body {
  padding: 16px 14px !important;
  text-align: center !important;
  background: #fff !important;
}
.subcat-card-body h3 {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-bottom: 10px !important;
}
.subcat-btn {
  background: #f8fafc !important;
  color: var(--primary) !important;
  border: 1.5px solid #cbd5e1 !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  padding: 8px 12px !important;
  border-radius: 5px !important;
  transition: all 0.2s ease !important;
  display: inline-block !important;
}
.subcat-card:hover .subcat-btn {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
}


/* ==========================================================================
   AUTO-FEEDBACK & QUOTATION INQUIRY CONFIRMATION MODAL
   ========================================================================== */
.rfq-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: rfqFadeIn 0.25s ease;
}

@keyframes rfqFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.rfq-modal-card {
  background: #ffffff;
  border-radius: 12px;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  border: 1px solid #e2e8f0;
  position: relative;
  animation: rfqSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes rfqSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.rfq-modal-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 22px 24px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  position: relative;
}

.rfq-modal-header h3 {
  color: #ffffff !important;
  font-size: 19px;
  margin: 0 0 6px 0;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rfq-modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.rfq-modal-close-btn:hover {
  background: #ef4444;
}

.rfq-modal-body {
  padding: 22px 24px;
  color: #334155;
}

.rfq-badge-pill {
  display: inline-block;
  background: rgba(34, 197, 94, 0.15);
  color: #15803d;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.rfq-receipt-box {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 14px 16px;
  margin: 16px 0;
  font-size: 12.5px;
  line-height: 1.6;
}

.rfq-recipient-channel {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  margin-top: 6px;
  font-size: 12px;
}

.rfq-items-preview {
  margin: 14px 0;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  max-height: 200px;
  overflow-y: auto;
}

.rfq-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid #f1f5f9;
  background: #ffffff;
}
.rfq-item-row:last-child {
  border-bottom: none;
}
.rfq-item-row img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}


/* ==========================================================================
   FULL-WIDTH RESPONSIVE CATEGORY HERO BANNERS (100% Visible, No Cut-off)
   ========================================================================== */
.category-hero-wrap {
  width: 100%;
  display: block;
  background: #080c10;
  margin: 0;
  padding: 0;
  line-height: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  max-height: 400px;
}
.category-hero-banner-img {
  width: 100%;
  height: 400px;
  max-height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 768px) {
  .category-hero-wrap {
    max-height: 220px;
  }
  .category-hero-banner-img {
    height: auto;
    max-height: 220px;
  }
}


/* ==========================================================================
   COVER FIX SCROLLING CATEGORY HERO BANNERS (Parallax Fixed Background)
   ========================================================================== */
.category-hero-wrap {
  width: 100%;
  min-height: 380px;
  height: 420px;
  background-position: center top !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
  .category-hero-wrap {
    min-height: 220px;
    height: 240px;
    background-attachment: scroll !important; /* Mobile browsers support scroll better */
  }
}
