@font-face {
    font-family: 'CC SuperHuman';
    src: url('../fonts/subset-CCSuperHuman.woff2') format('woff2'),
         url('../fonts/subset-CCSuperHuman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.footer-texts {
  padding: 10px 30px;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: none;

  background: #1A1A1A;
  margin: 10px 0;
  outline: red;
  color: white;
}

.footer-texts::-webkit-input-placeholder {
  color: white;
}

.footer-texts::-moz-placeholder {
  color: white;
}

.footer-texts:-ms-input-placeholder {
  color: white;
}

.footer-texts::-ms-input-placeholder {
  color: white;
}

.footer-texts::placeholder {
  color: white;
}

.promo {
  background: black;
}

/*
search
*/

.search-content {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, .7);
  z-index: 999999999999;
  top: 0;
  left: 0;
}

.search-show {
  cursor: pointer;
}

.search-content .sc {
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
}

.search-close {
  display: flex;
  flex-direction: row-reverse;
  margin: 15px 25px 0 0;
  font-size: 25px;
  color: white;
  cursor: pointer;
}

.bg-head {
  background: rgba(0, 0, 0, .4);
  padding: 20px 20px 0 20px;
}

@media screen and (max-width: 768px) {
  .bg-head {
    background: transparent;
    padding: 20px;
  }
}

@media screen and (max-width: 800px) {
  .search-hide {
    display: none;
  }
}

/*filter*/
.multiselect,
.multiselect2 {
  width: 100%;
  margin: 10px 0;
}

.selectBox,
.selectBox2 {
  position: relative;
}

.selectBox select,
.selectBox2 select {
  width: 100%;
  font-weight: bold;
  font-size: 25px;
}

.overSelect,
.overSelect2 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

#checkboxes,
#checkboxes2 {
  display: none;
  border: 1px #dadada solid;
  background: #dadada;
}

#checkboxes label,
#checkboxes2 label {
  display: block;
  padding: 0 0 0 5px;
}

#checkboxes label:hover,
#checkboxes2 label:hover {
  background-color: #1e90ff;
}


/* Release 10 Styles */
input[type="tel"], .form-control[name="phone"] {
    background-color: #ffffff !important;
    color: #333 !important;
}

.size-btn.active {
    background-color: #AD498C;
    color: #fff;
    border-width: 2px !important;
}

.size-btn {
    width: 65px;
    height: 65px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #AD498C;
    background: transparent;
    color: #AD498C;
    margin: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.size-btn.disabled {
    border-color: #ccc;
    color: #ccc;
    cursor: not-allowed;
    background-color: #f9f9f9;
}

/* Mobile Menu Sidebar */
.menu-sidebar-left {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 10000;
    transition: left 0.4s ease-in-out;
    box-shadow: 2px 0 15px rgba(0,0,0,0.5);
    border-right: 1px solid #AD498C;
}

.menu-sidebar-left.active {
    left: 0;
}

.menu-sidebar-left .menu-content {
    margin-top: 20px;
}

.menu-sidebar-left a:hover {
    color: #AD498C !important;
}
/*checkbox custom*/
/* для элемента input c type="checkbox" */
.custom-checkbox>input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

/* для элемента label, связанного с .custom-checkbox */
.custom-checkbox>span {
  display: inline-flex;
  align-items: center;
  user-select: none;
  font-size: 22px;
}

/* создание в label псевдоэлемента before со следующими стилями */
.custom-checkbox>span::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

/* стили при наведении курсора на checkbox */
.custom-checkbox>input:not(:disabled):not(:checked)+span:hover::before {
  border-color: #b3d7ff;
}

/* стили для активного чекбокса (при нажатии на него) */
.custom-checkbox>input:not(:disabled):active+span::before {
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}

/* стили для чекбокса, находящегося в фокусе */
.custom-checkbox>input:focus+span::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
.custom-checkbox>input:focus:not(:checked)+span::before {
  border-color: #80bdff;
}

/* стили для чекбокса, находящегося в состоянии checked */
.custom-checkbox>input:checked+span::before,
.custom-control-input:checked ~ .custom-control-label::before {
  border-color: #AD498C !important;
  background-color: #AD498C !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e") !important;
}

.btn-purple-accent {
    background-color: #AD498C !important;
    border-color: #AD498C !important;
    color: #fff !important;
    border-width: 2px !important;
}

/* Ensure outline secondary also has 2px border */
.btn-outline-secondary {
    border-width: 2px !important;
}

/* стили для чекбокса, находящегося в состоянии disabled */
.custom-checkbox>input:disabled+span::before {
  background-color: #e9ecef;
}


/*count basket products*/
.countProductsBasket {
  position: absolute;
  right: -10px;
  top: -10px;

  font-size: 20px;
  background: #FF3131;
  color: white;
  padding: 0 10px;
  border-radius: 50%;
}

.countProductsBasketMobile {
  position: static;
  background: #FF3131;
}

/*otz*/
.otz-item {
  margin: 10px 0;
  border: 1px solid black;
  padding: 10px;
  border-radius: 10px;
}

.otz-text {
  padding: 0 0 10px 0;
}

.otz-bottom {
  padding: 10px 0 0 0;
  border-top: 1px solid #000;
}

.otz-name {
  font-weight: bold;
  font-size: 20px;
}

.otz-name span {
  font-weight: 600;
  font-size: 14px;
}

.otz-rate i {
  color: #FAE013;
}

.otz-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.bg-head h1 {
  font-size: 60px;
}

.bg-head h4 {
  font-size: 40px;
}

.sliderDes {
  background: url('../images/header/bg.webp') no-repeat;
  background-size: cover;
  padding: 170px 0 50px 0;
  color: #fff;
  text-align: center;
}

.sliderDes h4 {
  font-weight: 100;
}

.head-form {
  display: flex;
  justify-content: center;
}

.head-form input {
  padding: 10px 0;
  border: 2px solid #AD498C;
}

.head-form input[type="submit"] {
  text-transform: uppercase;
  background: #AD498C;
  color: black;
  padding: 3px 10px;
  font-weight: bold;
  border-top-right-radius: 45%;
  border-bottom-right-radius: 45%;
  color: #fff;
}

.head-form input[type="text"] {
  width: 50%;
}

.but-open img {
  min-width: 230px;
  max-width: 230px;
  max-height: 55px;
}

.but-open {
  display: flex;
  justify-content: center;
  margin: 120px 0 0 0;
}

.name-product {
  padding: 0 0 0 5px;
  margin: -5px 0 0 .3rem;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'CC SuperHuman', Geom, sans-serif;
}

.collection {
  text-transform: uppercase;
  color: #DF2C23;
  padding: 0 0 0 5px;
  font-size: 24px;
  margin-left: .3rem;
  font-family: 'CC SuperHuman', Geom, sans-serif;
}

@media screen and (max-width: 500px) {
  .bg-head {
    padding: 0;
  }

  .otz-top {
    flex-direction: column;
    align-items: baseline;

  }

  .otz-top .title {
    color: black !important;
  }

  .otz-name {
    font-size: 14px;
  }

  .otz-mp {
    margin: 20px 0 0 0 !important;
    padding: 20px 15px 0 15px !important;
  }

  .head-form input[type="text"] {
    width: 70% !important;
    padding: 0;
  }

  .sliderDes {
    padding: 0 0 50px 0;
  }

  .logo-form {
    width: 120px;
    background: rgba(0, 0, 0, .7);
    padding: 10px;
  }

  .name-product {
    margin: 0;
  }
}

@media screen and (max-width: 340px) {
  .otz-name {
    font-size: 12px;
  }

  .head-form {
    margin-top: 10px !important;
  }

  .head-form input[type="text"] {
    width: 70% !important;
    padding: 0;
  }
}

/* Overrides for absolute paths in style.min.css */
/* .catalog-bg background removed */

.slick-active button {
  background: url('../images/mobileSliderMainPage/sn_red.png') no-repeat !important;
}

.slick-dots li {
  background: url('../images/mobileSliderMainPage/sn_white.png') no-repeat !important;
}

/* Mobile Header Fixes */
.mobile-logo {
  width: 100px;
  height: auto;
}

.mobile-cart-icon {
  width: 40px;
  height: auto;
}

/* Cart header button — enlarged (Task 2.4) */
.cart-header {
  width: 50px;
}

/* Catalog content starts below fixed navbar */
.catalog-top {
  padding-top: 120px;
}

/* === GLOBAL DESIGN (2026-02-19) === */

/* Dark background on ALL pages (mobile + desktop). Footer stays black. */
body {
  background: url('../images/background/mobileBackground.png') no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
  background-color: #1a1a1a;
  /* fallback while image loads */
}

/* Pagination Styling */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    border: none !important;
}

.pag-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #AD498C !important;
    border-radius: 5px;
    background: transparent;
    transition: all 0.3s;
    font-family: inherit;
}

.pag-item a {
    color: white !important;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.pag-item:hover {
    background-color: #AD498C !important;
}

.pag-active {
    background-color: #AD498C !important;
    border: 1px solid #AD498C !important;
    color: white !important;
}

.pag-item.pag-dots {
    border: none !important;
    cursor: default;
    background: transparent !important;
    color: white;
    font-size: 16px;
}

.pag-item.nav-btn {
    width: auto !important;
    min-width: 100px;
    padding: 0 15px;
    white-space: nowrap;
}

/* Category title always white (on dark background) */
.cat-title {
  color: white !important;
}

/* === CART PAGE & AUTH (2026-02-19) === */

/* Auth inputs in side panel */
.auth-section input[type="email"],
.auth-section input[type="password"],
.auth-section input[type="text"] {
  background: #1A1A1A !important;
  border: 1px solid #AD498C !important;
  color: white !important;
  font-size: 13px;
}

.auth-section input::placeholder {
  color: #888 !important;
}

.auth-section .my-btn {
  font-size: 13px;
  padding: 8px 20px;
}

/* Cart page item rows */
.cart-item-row {
  transition: background 0.2s;
}

.cart-item-row:hover {
  background: rgba(173, 73, 140, 0.1);
}

/* Cart page responsive */
@media screen and (max-width: 768px) {
  .cart-item-row {
    flex-wrap: wrap;
  }

  .cart-item-row>div {
    width: auto !important;
    flex: 1;
    font-size: 12px !important;
  }

  #cart-total-row .d-flex>div {
    width: auto !important;
    flex: 1;
  }
}

/* Product characteristics styling */
.characteristics {
  color: white !important;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.characteristics b {
  color: #AD498C !important;
}

/* === FORM STYLING (Task 1.6) === */

/* Global override for Bootstrap form-control */
.form-control {
  background: white !important;
  border: 1px solid #AD498C !important;
  color: #333 !important;
  padding: 10px 15px !important;
  height: auto !important;
  /* Allow padding to define height */
  transition: all 0.3s ease;
  font-weight: normal !important;
}

.form-control:focus {
  background: white !important;
  border-color: #AD498C !important;
  box-shadow: 0 0 10px rgba(173, 73, 140, 0.2) !important;
  color: black !important;
}

.form-control::placeholder {
  color: #999 !important;
  opacity: 1;
}

/* Specific styling for quantity input on product page */
.product-ajax input[name="count"].form-control {
  width: 80px;
  display: inline-block;
  text-align: center;
}

/* === SIZE GUIDE (Task 2.3) === */

.size-guide-btn {
  display: inline-flex;
  align-items: center;
  padding: 5px 20px;
  background: black;
  color: white !important;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid #AD498C;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  margin-top: 8px;
}

.size-guide-btn:hover {
  background: #AD498C;
  border-color: #AD498C;
  color: white !important;
}

.size-guide-modal {
  border-radius: 8px;
  overflow: hidden;
}

.size-guide-header {
  background: #fff;
  border-bottom: 2px solid #AD498C;
  padding: 20px 25px;
}

.size-guide-header .modal-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #333;
}

.size-guide-header .close {
  font-size: 28px;
  color: #AD498C;
  opacity: 1;
}

.size-guide-body {
  padding: 20px;
  background: #fff;
}

.size-guide-table {
  font-size: 13px;
  text-align: center;
  margin-bottom: 0;
}

.size-guide-table thead th {
  background: #f5f0f3;
  color: #333;
  font-weight: 600;
  border-bottom: 2px solid #AD498C;
  padding: 8px 6px;
  font-size: 13px;
}

.size-guide-table tbody td {
  padding: 6px 5px;
  border: 1px solid #eee;
  white-space: nowrap;
}

.size-guide-table tbody tr:nth-child(even) {
  background: #faf7f9;
}

.size-guide-table .row-label {
  text-align: left;
  font-weight: 600;
  color: #555;
  white-space: nowrap;
  min-width: 110px;
}

/* Footer: SVG + instructions side by side */
.size-guide-footer {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.size-guide-foot-svg {
  flex: 0 0 80px;
}

.foot-illustration {
  width: 80px;
  height: auto;
}

.svg-cm-label {
  font-size: 8px;
  fill: #666;
  font-family: Arial, sans-serif;
}

.svg-cm-unit {
  font-size: 8px;
  fill: #AD498C;
  font-family: Arial, sans-serif;
  font-weight: 600;
}

.size-guide-instructions {
  flex: 1;
  padding-top: 10px;
}

.size-guide-instructions ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.size-guide-instructions li {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .size-guide-footer {
    flex-direction: column;
    align-items: center;
  }

  .size-guide-table {
    font-size: 11px;
  }

  .size-guide-table .row-label {
    min-width: 80px;
    font-size: 11px;
  }
}

/* Footer title accent color */
.footer-title {
    border-bottom: 1px solid #AD498C !important;
}

/* Scrolled Navbar States */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.8) !important;
}

.navbar.scrolled .logo, 
.navbar.scrolled .cart-icon {
    width: 70px !important;
}

.navbar.scrolled .cart-header {
    width: 70px !important;
    height: 70px !important;
}

.navbar.scrolled .cart-icon {
    width: 45px !important;
}

.navbar.scrolled .nav-item a,
.navbar.scrolled .search-show,
.navbar.scrolled .open-menu-sidebar .fa-bars {
    color: black !important;
}

/* Reset for top state */
.navbar:not(.scrolled) .cart-header {
    width: 100px;
    height: 100px;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
}

.navbar:not(.scrolled) .cart-icon {
    width: 65px;
    transition: width 0.3s ease-in-out;
}

/* Scrolled state — shrink cart (overrides :not(.scrolled)) */
.navbar.scrolled .cart-header {
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
}

.navbar.scrolled .cart-icon {
    transition: width 0.3s ease-in-out;
}

/* Price Styling */
.price {
    font-family: Geom;
    font-weight: bold;
    text-transform: uppercase;
    color: white !important;
    font-size: 40px !important;
}

.price .symbol {
    font-size: 0.6em;
    margin-left: 5px;
}

/* Brand Filter Container Adjustment */
.brand-filter-content {
    max-height: none !important;
}

.filter-title i {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.filter-title.collapsed i {
    transform: rotate(-90deg);
}

/* White styling for size buttons */
.filter-section .btn-outline-light {
    color: #fff !important;
    border-color: #fff !important;
    border-width: 2px !important;
    background-color: transparent !important;
}

.filter-section .btn-outline-light:hover {
    background-color: #fff !important;
    color: #000 !important;
}

