@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');

@font-face {
    font-family: 'Futura Std Book';
    src: url('/static/fonts/101clothing/futurastd-book-webfont.eot');
    src: url('/static/fonts/101clothing/futurastd-book-webfont.eot?#iefix') format('embedded-opentype'),
         url('/static/fonts/101clothing/futurastd-book-webfont.woff') format('woff'),
         url('/static/fonts/101clothing/futurastd-book-webfont.ttf') format('truetype'),
         url('/static/fonts/101clothing/futurastd-book-webfont.svg#futura_stdbook') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Futura Std Book', sans-serif;
    background-color: #e5e5e5;
}

h1, h2, h3, h4 { text-transform: uppercase; }

/* ── HEADER CONTAINER (skyline background, sticky) ───────────────── */
.clothing-header-container {
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ── LOGO / SEARCH / SOCIAL ROW ──────────────────────────────────── */
.clothing-logo-row {
    padding: 16px 0 14px;
    display: flex;
    align-items: center;
}
.clothing-logo-col { display: flex; align-items: center; }
.clothing-logo { max-height: 70px; }
.clothing-logo-text {
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
}
.clothing-search-col { display: flex; align-items: center; justify-content: center; }
.clothing-header-search { width: 100%; max-width: 420px; }
.clothing-header-search .form-control {
    height: 36px;
    border-radius: 0;
    border: 1px solid #555;
    background-color: rgba(255,255,255,0.9);
    color: #000;
    font-family: Montserrat, sans-serif;
    font-size: 13px;
}
.clothing-header-search .form-control::placeholder { color: #888; }
.clothing-header-search .form-control:focus {
    background-color: #fff;
    border-color: #3b72c9;
    box-shadow: none;
    color: #000;
}
.clothing-search-btn {
    background-color: #3b72c9;
    color: #fff;
    border: none;
    border-radius: 0;
    height: 36px;
    padding: 0 14px;
}
.clothing-search-btn:hover { background-color: #2d5aa0; color: #fff; }
.clothing-header-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}
.clothing-header-social a { color: #fff; text-decoration: none; }
.clothing-header-social a:hover { color: #3b72c9; }
.clothing-header-phone {
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: bold;
    width: 100%;
    text-align: right;
    margin-top: 6px;
}

/* ── NAVBAR WRAPPER ──────────────────────────────────────────────── */
.clothing-navbar-wrapper { background-color: #000; }

/* ── MAIN NAV ────────────────────────────────────────────────────── */
.clothing-navbar {
    background-color: #000;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
}
.clothing-navbar .nav > li > a {
    color: #fff !important;
    font-family: Montserrat, sans-serif;
    font-size: 13px;
    font-weight: bold;
    padding: 14px 14px;
    text-transform: uppercase;
}
.clothing-navbar .nav > li > a:hover,
.clothing-navbar .nav > li.active > a { color: #3b72c9 !important; background: transparent !important; }

/* Keep parent item dark when dropdown is open or hovered — override Bootstrap's .open state */
.clothing-navbar .dropdown.open > a,
.clothing-navbar .dropdown:hover > a,
.clothing-navbar .dropdown.open > a:hover,
.clothing-navbar .dropdown.open > a:focus { color: #3b72c9 !important; background: transparent !important; }

/* Caret sits inline inside the label link */
.clothing-navbar .dropdown > a .caret { margin-left: 3px; }

.clothing-navbar .dropdown-menu {
    background-color: #111;
    border: none;
    border-radius: 0;
    min-width: 180px;
    margin-top: 0;
}
.clothing-navbar .dropdown-menu li a {
    color: #fff !important;
    font-size: 12px;
    font-family: Montserrat, sans-serif;
    padding: 8px 16px;
    background: transparent !important;
}
.clothing-navbar .dropdown-menu li a:hover,
.clothing-navbar .dropdown-menu li a:focus { background-color: #3b72c9 !important; color: #fff !important; }
.clothing-navbar .navbar-toggle { border-color: #3b72c9; }
.clothing-navbar .navbar-toggle .icon-bar { background-color: #fff; }

/* ── HEADER ICON BAR ─────────────────────────────────────────────── */
.clothing-icon-bar {
    background: transparent;
    padding: 10px 0;
}
.clothing-icon-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.clothing-icon-bar-inner a { display: inline-block; }
.clothing-icon-bar-inner img {
    display: block;
    max-width: 320px;
    height: auto;
    transition: opacity 0.15s;
}
.clothing-icon-bar-inner a:hover img { opacity: 0.8; }

/* ── MAIN CONTENT WRAPPER ────────────────────────────────────────── */
.clothing-main {
    background-color: #fff;
    min-height: 600px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    margin-bottom: 0;
}

/* ── CAROUSEL ────────────────────────────────────────────────────── */
.clothing-carousel {
    padding: 16px 0 20px;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}
.clothing-slide-item { position: relative; min-height: 100px; max-height: 400px; overflow: hidden; }
.clothing-slide-img { width: 100%; display: block; max-height: 400px; object-fit: cover; }
/* Product image on left of slide */
.clothing-fp-image-wrap {
    position: absolute;
    left: 4%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 12;
    max-width: 38%;
}
.clothing-fp-image {
    max-height: 360px;
    width: auto;
    max-width: 100%;
    display: block;
    border: 1px solid #000;
    background: #fff;
}

/* Product info overlay box */
.clothing-product-info-box {
    position: absolute;
    bottom: 8%;
    right: 3%;
    background-color: #3b72c9;
    padding: 14px 18px;
    min-width: 210px;
    max-width: 290px;
    z-index: 13;
}
.clothing-fp-brand {
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    opacity: 0.85;
}
.clothing-fp-name {
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}
.clothing-fp-price {
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}
.clothing-shopnow-btn {
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #fff;
    border-radius: 3px;
    padding: 6px 14px;
    background: transparent;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, color 0.2s;
}
.clothing-shopnow-btn:hover { background: #fff; color: #3b72c9; text-decoration: none; }
/* Owl nav arrows */
.clothing-carousel .owl-nav .owl-prev,
.clothing-carousel .owl-nav .owl-next {
    background: rgba(0,0,0,0.5) !important;
    color: #fff !important;
    font-size: 20px !important;
    border-radius: 0 !important;
    padding: 10px 16px !important;
}
.clothing-carousel .owl-nav .owl-prev:hover,
.clothing-carousel .owl-nav .owl-next:hover { background: #3b72c9 !important; }
.clothing-carousel .owl-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}
.clothing-carousel .owl-dots .owl-dot span {
    background: rgba(255,255,255,0.5) !important;
    width: 10px;
    height: 10px;
}
.clothing-carousel .owl-dots .owl-dot.active span { background: #fff !important; }

/* ── CATEGORY SIDEBAR LIST ───────────────────────────────────────── */
.clothing-sidebar-heading {
    background-color: #3b72c9;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    padding: 12px 15px;
    border-radius: 0;
    margin-bottom: 0;
    text-transform: uppercase;
}
.clothing-sidebar-heading + .list-group .list-group-item {
    font-size: 13px;
    border-radius: 0;
}
.clothing-sidebar-heading + .list-group .list-group-item:hover { background-color: #f5f5f5; }
.clothing-sidebar-category {
    background-color: #2d5aa0;
    color: #fff !important;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    padding: 8px 15px;
    display: block;
    border-bottom: 1px solid #244d8c;
}
.clothing-sidebar-category:hover { background-color: #244d8c; text-decoration: none; color: #fff !important; }

/* ── PRODUCT GRID ────────────────────────────────────────────────── */
.clothing-product-box {
    border: 1px solid #000;
    margin-bottom: 20px;
    width: 244px;
    height: 375px;
    overflow: hidden;
    position: relative;
    display: inline-block;
    margin-right: 16px;
    vertical-align: top;
}
.clothing-product-box img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}
.clothing-product-caption {
    background-color: #000;
    height: 80px;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 6px 10px;
}
.clothing-product-caption p { color: #fff; font-size: 12px; margin: 0; }
.clothing-product-brand {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #000;
    color: #fff;
    font-size: 11px;
    padding: 5px 8px;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 11;
}
.clothing-product-brand:hover { color: #e5e5e5; text-decoration: none; }
.clothing-product-category {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    color: #fff;
    font-size: 11px;
    padding: 5px 8px;
}
.clothing-view-details {
    position: absolute;
    bottom: 85px;
    right: 10px;
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 11px;
    padding: 5px 8px;
    text-decoration: none;
    z-index: 10;
}
.clothing-view-details:hover { background-color: #000; color: #fff; text-decoration: none; opacity: 1; }

/* ── BREADCRUMB ──────────────────────────────────────────────────── */
.clothing-breadcrumb a { font-size: 11px; color: #555; }

/* ── FOOTER ──────────────────────────────────────────────────────── */
.clothing-footer { background-color: #000; color: #fff; margin-top: 0; }
.clothing-footer h4 { color: #fff; text-transform: uppercase; font-size: 13px; }
.clothing-footer ul { list-style: none; padding-left: 0; margin-top: 10px; }
.clothing-footer ul li a { color: #ccc; font-size: 13px; }
.clothing-footer ul li a:hover { color: #3b72c9; text-decoration: none; }
.clothing-footer-top { padding: 35px 0 20px; border-bottom: 1px solid #3b72c9; }
.clothing-footer-bottom { padding: 20px 0; background-color: #000; border-top: 1px solid #3b72c9; }
.clothing-footer-copy {
    background-color: #000;
    color: #aaa;
    text-align: center;
    padding: 12px 0;
    font-size: 12px;
    border-top: 1px solid #333;
}
.clothing-footer-copy a { color: #ddd; text-decoration: underline; }
.clothing-footer-copy a:hover { color: #3b72c9; }
.clothing-payment-icons li { display: inline-block; margin-right: 8px; margin-top: 8px; }
.clothing-payment-icons li i { color: #ccc; }
.clothing-payment-icons li i:hover { color: #fff; }

/* ── NEWSLETTER ──────────────────────────────────────────────────── */
.clothing-newsletter-btn {
    background-color: #3b72c9 !important;
    border-color: #3b72c9 !important;
    color: #fff !important;
}

/* ── PAGE CONTENT ────────────────────────────────────────────────── */
.clothing-page-content { padding: 30px 15px; }

/* ══════════════════════════════════════════════════════════════════
   SHOP / AFFILIATE PRODUCT CATALOG STYLES
   ══════════════════════════════════════════════════════════════════ */

.shop-container { padding-top: 16px; padding-bottom: 40px; }

/* ── Filter sidebar ─────────────────────────────────────────────── */
.shop-sidebar {
    padding-right: 20px;
    position: sticky;
    top: 155px;
    max-height: calc(100vh - 155px);
    overflow-y: auto;
    align-self: flex-start;
}
.shop-filter-section {
    border-bottom: 1px solid #e5e5e5;
    padding: 14px 0;
}
.shop-filter-title {
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: .5px;
}
.shop-filter-list { max-height: 260px; overflow-y: auto; }
.shop-filter-label {
    display: block;
    font-size: 13px;
    font-weight: normal;
    cursor: pointer;
    padding: 3px 0;
    color: #333;
}
.shop-filter-label input { margin-right: 7px; cursor: pointer; }
.shop-filter-label:hover { color: #3b72c9; }
.shop-filter-label small { color: #999; font-size: 11px; }
.shop-sale-toggle {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    color: #3b72c9;
    padding: 4px 0;
    font-family: Montserrat, sans-serif;
}
.shop-sale-toggle input { margin-right: 8px; width: 16px; height: 16px; cursor: pointer; }
.shop-price-range { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.shop-price-range input { width: calc(50% - 20px); min-width: 60px; }
.shop-price-range span { color: #999; }
.shop-show-more {
    font-size: 12px;
    color: #3b72c9;
    display: block;
    margin-top: 6px;
    text-decoration: none;
}
.shop-show-more:hover { text-decoration: underline; color: #2d5aa0; }
.shop-clear-filters {
    display: block;
    margin-top: 14px;
    font-size: 12px;
    color: #666;
    text-decoration: underline;
}
.shop-clear-filters:hover { color: #3b72c9; }

/* ── Sort / count bar ───────────────────────────────────────────── */
.shop-sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 16px;
    border-bottom: 2px solid #3b72c9;
    margin-bottom: 20px;
}
.shop-result-count {
    font-family: Montserrat, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #333;
}
.shop-sort-right { display: flex; align-items: center; gap: 8px; }
.shop-sort-right label { font-size: 13px; margin: 0; color: #555; }
.shop-sort-select { width: auto; display: inline-block; font-size: 13px; }

/* ── Product card grid ──────────────────────────────────────────── */
.shop-product-row {
    margin-left: -8px;
    margin-right: -8px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.shop-product-col {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}
.shop-product-card {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none;
    color: inherit;
    border: 1px solid #ddd;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}
.shop-product-card:hover {
    border-color: #3b72c9;
    box-shadow: 0 2px 10px rgba(234,58,60,.15);
    text-decoration: none;
    color: inherit;
}
.shop-product-img-wrap {
    position: relative;
    background: #f8f8f8;
    overflow: hidden;
    padding-top: 120%;  /* 5:6 aspect ratio */
}
.shop-product-img-wrap img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 8px;
}
.shop-no-image {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex; align-items: center; justify-content: center;
    background: #111;
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 18px;
}
.shop-no-image-lg { font-size: 28px; }
.shop-sale-badge {
    position: absolute;
    top: 8px; left: 8px;
    background: #3b72c9;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    font-family: Montserrat, sans-serif;
    padding: 3px 7px;
    letter-spacing: .5px;
}
.shop-sale-badge-lg {
    position: static;
    display: inline-block;
    font-size: 12px;
    padding: 4px 10px;
    margin-left: 10px;
    vertical-align: middle;
}
.shop-product-info {
    padding: 10px 10px 12px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.shop-product-brand {
    font-size: 10px;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #3b72c9;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.shop-product-name {
    font-size: 12px;
    color: #222;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.shop-product-price { font-size: 13px; font-weight: 700; }
.shop-price-sale { color: #3b72c9; margin-right: 6px; }
.shop-price-was { color: #999; text-decoration: line-through; font-size: 11px; font-weight: normal; }
.shop-price-regular { color: #000; }

/* ── Pagination ─────────────────────────────────────────────────── */
.shop-pagination { text-align: center; margin-top: 30px; }
.shop-pagination .pagination > li > a,
.shop-pagination .pagination > li > span {
    color: #000;
    border-color: #ddd;
    font-family: Montserrat, sans-serif;
    font-size: 13px;
}
.shop-pagination .pagination > .active > a,
.shop-pagination .pagination > .active > span {
    background-color: #3b72c9;
    border-color: #3b72c9;
    color: #fff;
}
.shop-pagination .pagination > li > a:hover { color: #3b72c9; }

/* ── Empty state ────────────────────────────────────────────────── */
.shop-empty { text-align: center; padding: 60px 20px; color: #666; }
.shop-empty p { font-size: 16px; margin-bottom: 20px; }

/* ── Product detail ─────────────────────────────────────────────── */
.shop-detail-row { padding: 10px 0 40px; }
.shop-detail-img-wrap {
    background: #f8f8f8;
    border: 1px solid #eee;
    padding: 20px;
    text-align: center;
    min-height: 380px;
    display: flex; align-items: center; justify-content: center;
}
.shop-detail-img { max-height: 460px; width: auto; max-width: 100%; }
.shop-detail-brand {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: #3b72c9;
    letter-spacing: .5px;
    margin-bottom: 8px;
}
.shop-detail-brand a { color: inherit; text-decoration: none; }
.shop-detail-brand a:hover { text-decoration: underline; }
.shop-detail-name {
    font-size: 22px;
    font-family: Montserrat, sans-serif;
    color: #111;
    margin-top: 0;
    margin-bottom: 14px;
    line-height: 1.3;
}
.shop-detail-price-block { margin-bottom: 18px; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.shop-detail-sale { font-size: 26px; font-weight: 700; color: #3b72c9; }
.shop-detail-was { font-size: 16px; color: #999; text-decoration: line-through; }
.shop-detail-regular { font-size: 26px; font-weight: 700; color: #000; }
.shop-detail-attrs { margin-bottom: 18px; }
.shop-detail-attr { font-size: 14px; color: #555; margin-bottom: 5px; }
.shop-detail-attr a { color: #3b72c9; text-decoration: none; }
.shop-detail-attr a:hover { text-decoration: underline; }
.shop-detail-description { font-size: 14px; color: #444; line-height: 1.7; margin-bottom: 24px; }
.shop-now-btn {
    display: block;
    width: 100%;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 14px;
    margin-bottom: 10px;
}
.shop-affiliate-note { color: #999; margin-top: 6px; }

/* ── Related products ───────────────────────────────────────────── */
.shop-related { border-top: 2px solid #3b72c9; padding-top: 30px; margin-top: 30px; }
.shop-related-title {
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #000;
}

/* ── Brands directory ───────────────────────────────────────────── */
.shop-brands-title {
    font-family: Montserrat, sans-serif;
    margin-bottom: 20px;
}
.shop-alpha-index {
    background: #000;
    padding: 10px 14px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.shop-alpha-link {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 14px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    border-radius: 2px;
}
.shop-alpha-link.active:hover { background: #3b72c9; color: #fff; }
.shop-alpha-link.disabled { color: #555; cursor: default; }
.shop-brand-letter-group { margin-bottom: 28px; }
.shop-brand-letter {
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: #3b72c9;
    display: inline-block;
    padding: 4px 14px;
    margin-bottom: 14px;
}
.shop-brand-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.shop-brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    padding: 12px 16px;
    min-width: 140px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: border-color .2s;
    text-align: center;
}
.shop-brand-card:hover { border-color: #3b72c9; color: inherit; text-decoration: none; }
.shop-brand-name {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: #000;
    letter-spacing: .3px;
}
.shop-brand-count { font-size: 11px; color: #999; margin-top: 3px; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 767px) {
    .shop-sidebar { margin-bottom: 20px; border-bottom: 2px solid #3b72c9; padding-bottom: 10px; }
    .shop-detail-name { font-size: 18px; }
    .shop-detail-img-wrap { min-height: 260px; }
}
