/*
Theme Name: ClothingStop
Theme URI: https://abqclothingstop.com
Description: Premium 1:1 streetwear store theme
Version: 1.0
Author: Clothing Stop
Text Domain: clothingstop
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700;900&family=Barlow+Condensed:wght@400;600;700;800;900&display=swap');

:root {
  --black: #000000;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --border: #222222;
  --orange: #ff6b00;
  --orange-light: #ff8c33;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #cccccc;
  --text: #e0e0e0;
  --green: #00d084;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--orange); }
img { max-width: 100%; display: block; }

/* ANNOUNCEMENT BAR */
.announcement-bar {
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
  text-align: center;
  font-size: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
}
.announcement-bar span.dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s infinite;
}
.announcement-bar .sep { margin: 0 12px; color: var(--border); }
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* HEADER */
.site-header {
  background: var(--black);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 40px;
}
.site-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.site-logo span { color: var(--orange); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.main-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 6px 10px;
  color: var(--gray-light);
  transition: color 0.2s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--orange); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.header-actions a {
  color: var(--gray-light);
  font-size: 18px;
  transition: color 0.2s;
}
.header-actions a:hover { color: var(--orange); }
.cart-icon { position: relative; }
.cart-count {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HERO */
.hero-section {
  background: var(--black);
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center top, rgba(255,107,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--orange);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 12vw, 140px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.hero-title .glitch {
  position: relative;
  display: inline-block;
  color: var(--orange);
}
.hero-title .glitch::before,
.hero-title .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0; width: 100%;
  opacity: 0.7;
}
.hero-title .glitch::before {
  color: #ff0040;
  animation: glitch1 3s infinite;
}
.hero-title .glitch::after {
  color: #00ffff;
  animation: glitch2 3s infinite;
}
@keyframes glitch1 {
  0%,90%,100% { clip-path: none; transform: none; opacity: 0; }
  92% { clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%); transform: translate(-3px); opacity: 0.7; }
  94% { clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%); transform: translate(3px); opacity: 0.7; }
  96% { clip-path: none; transform: none; opacity: 0; }
}
@keyframes glitch2 {
  0%,91%,100% { clip-path: none; transform: none; opacity: 0; }
  93% { clip-path: polygon(0 40%, 100% 40%, 100% 60%, 0 60%); transform: translate(3px); opacity: 0.7; }
  95% { clip-path: polygon(0 0%, 100% 0%, 100% 20%, 0 20%); transform: translate(-3px); opacity: 0.7; }
  97% { clip-path: none; transform: none; opacity: 0; }
}

.hero-sub {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-search {
  max-width: 580px;
  margin: 0 auto 28px;
  display: flex;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.hero-search:focus-within { border-color: var(--orange); }
.hero-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 20px;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
}
.hero-search input::placeholder { color: var(--gray); }
.hero-search button {
  background: var(--orange);
  border: none;
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: 0 28px;
  cursor: pointer;
  transition: background 0.2s;
}
.hero-search button:hover { background: var(--orange-light); }

.trending-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.trending-tags span {
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-right: 4px;
}
.trending-tags a {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-light);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 20px;
  transition: all 0.2s;
}
.trending-tags a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* WHY SHOP US */
.why-section {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 44px 24px;
}
.why-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.why-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--orange);
  margin-bottom: 6px;
}
.why-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.05em;
  margin-bottom: 36px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-item { text-align: center; }
.why-item .icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.why-item strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.why-item p { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* SECTION HEADERS */
.section-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 24px;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  letter-spacing: 0.03em;
  line-height: 1;
}
.view-all {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.view-all:hover { color: var(--orange); border-color: var(--orange); }

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  cursor: pointer;
}
.product-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}
.product-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--dark3);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-img img { transform: scale(1.05); }

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 2px;
}
.badge-bestseller { background: var(--orange); color: white; }
.badge-new { background: var(--dark3); border: 1px solid var(--border); color: var(--gray-light); }

.product-info { padding: 14px 16px 16px; }
.product-category {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.product-name {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--white);
}
.product-stars {
  color: var(--orange);
  font-size: 12px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.product-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.add-to-cart {
  width: 100%;
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 10px 0;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.add-to-cart:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* SHIPPING BANNER */
.shipping-banner {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 24px;
}
.banner-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 48px 40px;
}
.banner-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--orange);
  margin-bottom: 12px;
}
.banner-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.banner-sub {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.6;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid var(--white);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 13px 32px;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--white);
  color: var(--black);
}

/* FOOTER */
.site-footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 60px 24px 24px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--orange); }
.footer-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 240px;
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--gray);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-support li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 10px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 12px; color: var(--gray); }
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: var(--gray);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--orange); }

/* MOBILE */
@media (max-width: 768px) {
  .hero-title { font-size: 72px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .main-nav { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .banner-title { font-size: 36px; }
  .section-title { font-size: 30px; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
}

/* === 4-COLUMN GRID FIX === */
.product-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    padding: 20px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}
.product-grid .product-card {
    width: 100% !important;
    max-width: 100% !important;
    background: #111 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
}
.product-grid .product-img {
    position: relative !important;
    overflow: hidden !important;
}
.product-grid .product-img img,
.product-grid .product-card img {
    width: 100% !important;
    height: 260px !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}
.product-grid .product-info {
    padding: 12px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}
.product-grid .product-name {
    font-size: 13px !important;
    color: #fff !important;
    font-weight: 600 !important;
    margin-bottom: 4px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.product-grid .product-price {
    color: #ff6600 !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    margin-bottom: 10px !important;
}
.product-grid .add-to-cart {
    display: block !important;
    background: #ff6600 !important;
    color: #fff !important;
    border: none !important;
    padding: 10px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    cursor: pointer !important;
    width: 100% !important;
    text-align: center !important;
    text-decoration: none !important;
    margin-top: auto !important;
}
.product-grid .add-to-cart:hover { background: #e55a00 !important; }
.brand-filters { display: flex; flex-wrap: wrap; gap: 8px; padding: 16px 20px; border-bottom: 1px solid #222; }
.brand-filters a { background: #111; color: #fff; border: 1px solid #333; padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; }
.brand-filters a:hover { background: #ff6600; border-color: #ff6600; color: #fff; }
@media(max-width:900px){.product-grid{grid-template-columns:repeat(3,1fr) !important;}}
@media(max-width:600px){.product-grid{grid-template-columns:repeat(2,1fr) !important;}}
/* === END GRID FIX === */
/* === LAYOUT WIDTH FIX === */
.section-wrap {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
.site-main, main, .main-content {
    max-width: 100% !important;
    width: 100% !important;
}
.product-grid {
    max-width: 100% !important;
    width: 100% !important;
    grid-template-columns: repeat(4, 1fr) !important;
}
/* === END LAYOUT WIDTH FIX === */

/* BRANDS DROPDOWN MENU */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown > a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 6px 10px;
  color: var(--gray-light);
  transition: color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.nav-dropdown:hover > a { color: var(--orange); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 6px;
  min-width: 200px;
  max-height: 70vh;
  overflow-y: auto;
  padding: 6px 0;
  z-index: 9999;
  column-count: 3;
  column-gap: 0;
  width: 640px;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: #ccc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  break-inside: avoid;
}
.dropdown-menu a:hover { color: var(--orange); background: #111; }

/* ANNOUNCEMENT BAR LINK */
.announcement-bar a { color: inherit; }
.announcement-bar a:hover { color: var(--orange); }


/* ===== BRAND SHOWCASE SECTION ===== */
.brands-section {
  width: 100% !important;
  padding: 40px 20px !important;
  background: #111111 !important;
  border-top: 1px solid #222 !important;
  border-bottom: 1px solid #222 !important;
  box-sizing: border-box !important;
}
.brands-section .section-head {
  max-width: 1380px !important;
  margin: 0 auto 24px !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  padding: 0 0 !important;
}
.brand-grid {
  max-width: 1380px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
  box-sizing: border-box !important;
}
.brand-card {
  display: block !important;
  background: #1a1a1a !important;
  border: 1px solid #333 !important;
  border-radius: 8px !important;
  padding: 28px 20px !important;
  text-align: center !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  cursor: pointer !important;
}
.brand-card:hover {
  border-color: #ff6b00 !important;
  transform: translateY(-4px) !important;
  background: #1f1f1f !important;
}
.brand-name {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 26px !important;
  letter-spacing: 0.05em !important;
  color: #ffffff !important;
  margin-bottom: 6px !important;
  display: block !important;
}
.brand-desc {
  font-size: 12px !important;
  color: #888 !important;
  margin-bottom: 8px !important;
  display: block !important;
  font-style: italic !important;
}
.brand-count {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  color: #ff6b00 !important;
  text-transform: uppercase !important;
  display: block !important;
}
@media (max-width: 900px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
/* ===== END BRAND SHOWCASE ===== */

/* ===== WHY SECTION ICON FIX ===== */
.why-item .icon {
  font-size: 28px !important;
  display: block !important;
  margin-bottom: 12px !important;
}
/* ===== END WHY SECTION FIX ===== */
