body {
  font-family: "Helvetica Neue", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #111;
}

h1,
h2,
h3 {
  font-weight: 700;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

.h1-catalog{
    position: relative;
    display: block;
    text-align: center;
    font-size:2rem !important; 
    font-weight: 600;
    padding-top: 10px;
    color: #030303;
  }
.lead{
    position: relative;
    display: block;
    text-align: center;
    font-size:1rem !important; 
    font-weight: 600;
    padding-top: 0px;
    color: #030303;
  }
@media (min-width:768px){
  .lead{
    position: relative;
    display: block;
    text-align: center;
    font-size:1.5rem !important; 
    font-weight: 600;
    padding-top: 0px;
    color: #030303;
  }
  .h1-catalog{
    position: relative;
    display: block;
    text-align: center;
    font-size:2.5rem !important; 
    font-weight: 600;
    padding-top: 20px;
    color: #030303;
  }
}

/* // CATALOG SECTION // */
.catalog-preview {
  /* background: linear-gradient(135deg, #0b0f1a, #161b2b);
    color:#fff;
    position:relative; */
  width: 100%;
  height: 100%;
  /* background-image: url('../img/sh-tac-urban-style-section-fon.jpg'); */
  background-image: url('../img/catalog-fon.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  color: #fff;
  border-top: 0px solid #fff;
}
/* Добавьте в ваш CSS (один раз) */
.section-title-inline { 
  /* остаётся в линию на всех размерах; при нехватке ширины — мягкий перенос */
  flex-wrap: wrap;
}
.section-title-photo{
  width: 110px;
  height: auto;
  overflow: hidden;
}
.section-title-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Чуть крупнее заголовок на десктопе */
@media (min-width: 992px){
  .section-title-inline h2{ font-size: 2rem; }
  .section-title-photo{
  width: 200px;
  height: auto;
  overflow: hidden;
}
}

.text-catalog {
  font-size: 1.2rem;
  font-weight: 600;
  color: #18b300;
}
.catalog-heading {
  font-weight: 800;
  font-size: 2rem;
}

.catalog-desc {
  font-size: 1.1rem;
  color: #fff;
  margin-top: .8rem;
  line-height: 1.5;
}

.catalog-btn {
  border-radius: 12px;
  transition: all .3s ease;
  background-color: #ff9900;
  border-color: transparent;
}

.catalog-btn:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 12px 24px rgba(229, 32, 55, .35); */
  background-color: #ff9900;
  border-color: transparent;
}


.catalog-visual img {
  border-radius: 20px;
  transform: scale(1.02);
  transition: transform .6s ease, box-shadow .6s ease;
}

.catalog-visual img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .45);
}

/* Анимация появления */
.reveal {
  opacity: 0;
  transform: translateY(20px);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: .8s ease;
}
  :root{
    --star-size: 22px;              /* размер звезды в карточке */
    --star-gap: 6px;                /* отступы между звёздами */
    --accent-a: #ff9900;            /* основной цвет */
    --accent-b: #ffbb33;            /* второй цвет градиента */
    --shine-speed: 2.6s;            /* скорость «блика» */
    --breath-speed: 2.4s;           /* скорость «дыхания» */
    --star-bg: #e6e6e6;             /* фон по краям */
  }

  /* Контейнер звёзд над фото */
  .product-stars{
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: var(--star-gap); */
    padding-top: 12px;
    padding-bottom: 8px;
    pointer-events: none; /* чистый декор */
    user-select: none;
  }
  .product-stars .star{
    width: var(--star-size);
    height: var(--star-size);
    position: relative;
    display: inline-block;
    transform-origin: 50% 55%;

    -webkit-mask: url("data:image/svg+xml;utf8,\
      <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
        <path d='M12 1.8l3.09 6.26 6.91 1-5 4.87 1.18 6.89L12 17.77 5.82 20.82 7 13.93 2 9.06l6.91-1L12 1.8z'/>\
      </svg>") center/contain no-repeat;
            mask: url("data:image/svg+xml;utf8,\
      <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
        <path d='M12 1.8l3.09 6.26 6.91 1-5 4.87 1.18 6.89L12 17.77 5.82 20.82 7 13.93 2 9.06l6.91-1L12 1.8z'/>\
      </svg>") center/contain no-repeat;
    background: var(--star-bg);
    animation: breath var(--breath-speed) ease-in-out infinite;
  }
  /* сдвиги фазы «дыхания», чтобы звезды оживали по очереди */
  .product-stars .star:nth-child(1){ animation-delay: 0s; }
  .product-stars .star:nth-child(2){ animation-delay: .08s; }
  .product-stars .star:nth-child(3){ animation-delay: .16s; }
  .product-stars .star:nth-child(4){ animation-delay: .24s; }
  .product-stars .star:nth-child(5){ animation-delay: .32s; }

  .product-stars .star::before{
    content:"";
    position:absolute; inset:0;
    background: linear-gradient(45deg, var(--accent-a), var(--accent-b) 60%, var(--accent-a));
    background-size: 200% 200%;
    animation: shine var(--shine-speed) linear infinite;
  }
  
  .product-stars .star--inactive{
    animation: none;  
    filter: grayscale(100%) opacity(.85);
  }
  .product-stars .star--inactive::before{
    content: none;                       
  }

  @keyframes shine{
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
  }
  @keyframes breath{
    0%   { transform: scale(1);     filter: drop-shadow(0 0 0 rgba(255,153,0,0)); }
    50%  { transform: scale(1.05);  filter: drop-shadow(0 2px 6px rgba(255,153,0,.25)); }
    100% { transform: scale(1);     filter: drop-shadow(0 0 0 rgba(255,153,0,0)); }
  }
/* // END CATALOG SECTION // */

/* === HEADER === */
header.hero-section {
  background-image: url('../img/sh-tac-fon-tango-black.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 1rem;
  text-align: center;
  color: #fff;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Затемнение поверх фонового изображения */
header.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(249, 243, 236, 0.6));
  z-index: -1;
}

/* Контейнер поверх фона */
.hero-section .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

/* Изображение (если будет) */
.hero-section img {
  max-width: 250px;
  height: auto;
  margin-bottom: 2rem;
}

/* Заголовок */
.hero-title {
  font-size: 8rem;
  font-weight: 800;
  text-transform: uppercase;
  /* margin-bottom: 8rem; */
  color: #000;
  letter-spacing: 0.05em;
  /* text-shadow: 0px 2px 2px #0000002e; */
  padding: 10px;
}

/* Подзаголовок */
.hero-subtitle {
  font-size: 1.25rem;
  margin: 1rem 0 2rem;
  color: #fff;
  text-shadow: 0px 2px 2px #0000002e;
}

/* Кнопки */
.hero-section .btn-catalog,
.hero-section .btn-clothing {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.5rem;
}

/* Мобильная адаптация */
@media (max-width: 576px) {
  .custom-navbar .navbar-brand img {
    height: 60px;
    width: auto;
  }

  header.hero-section {
    background-image: url('../img/sumka-takticheskaya-sh-tac-tango.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 1rem;
    text-align: center;
    color: #fff;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  header.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(249, 243, 236, 0.6));
    z-index: -1;
  }

  .hero-title {
    font-weight: 800;
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-section .btn-catalog,
  .hero-section .btn-clothing {
    width: 60%;
    margin-bottom: 0.75rem;
  }

  .hero-section .d-flex {
    flex-direction: column !important;
    align-items: center;
  }
}

/* === 768px === */
@media (min-width: 768px) {
  .hero-title {
    font-size: 2.7rem;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }
}

/* === НАВИГАЦИЯ (дополнение) === */
.custom-navbar {
  background: transparent;
  padding: 1rem 0;
  z-index: 1000;
}

.custom-navbar .navbar-brand img {
  height: 60px;
  width: auto;
}

.custom-navbar .nav-link {
  color: #fff;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover {
  color: #f9f3ec;
}

.navbar-toggler {
  filter: invert(1);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Адаптация — меню в центре и под фон */
@media (max-width: 991.98px) {
  .custom-navbar .navbar-collapse {
    background: rgba(0, 0, 0, 0.85);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 0.5rem;
  }

  .custom-navbar .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    text-align: center;
  }
}

.call-button {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ff9900;
  color: #fff;
  border: none;
  box-shadow: 0 0 15px rgba(220, 53, 69, 0.5), 0 0 25px rgba(220, 53, 69, 0.3);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  animation: pulse 2s infinite;
  cursor: pointer;
}

.call-button.visible {
  display: flex;
}

.call-button i {
  animation: shake 1s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(220, 53, 69, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
  }
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(15deg);
  }

  50% {
    transform: rotate(-15deg);
  }

  75% {
    transform: rotate(10deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

 .bc-hero{
    --bc-min-h: auto;                 /* по умолчанию авто, можно переопределить инлайн */
    position: relative;
    /* min-height: var(--bc-min-h);    */
    width: 100%;
    height: 50px;
    margin: 16px 0;
    /* border: 2px solid #000;     */
    overflow: hidden;                  /* чтобы фон не выступал за рамку */
  }

  /* Фоновая картинка отдельным слоем */
  .bc-bg{
    position: absolute;
    inset: 0;
    background: url("/img/arrows/arr-breed-mobile.svg") center center no-repeat;
    background-size: contain;           /* заполняет слой целиком */
    z-index: 0;
    pointer-events: none;
    background-position: top;
  }
  /* Планшет/десктоп — другая картинка */
  @media (min-width: 576px){
    .bc-bg{ background-image: url("/img/arrows/arr-breed.svg");background-size: cover;}
    .bc-hero{height: 120px;}
    .bc-list{padding: 60px 60px !important; font-size: 1.3rem;}
  }

  /* Контент поверх фона */
  .bc-container{
    position: relative;
    z-index: 1;
    padding: 0; margin: 0;            /* без внутренних отступов */
  }

  /* Крошки: слева, в линию */
  .bc-list{
    display: flex; align-items: center; justify-content: flex-start;
    gap: 6px; margin: 0; padding: 18px 0px; list-style: none;
  }

  /* Блоки-крошки: красная рамка, без внутреннего padding */
  .bc-item{
    padding: 0; margin: 0;
    line-height: 1.1;
    display: flex; align-items: center;
    color: #000;
    background-color: rgba(255,255,255,0.85); /* читаемость на фоне */
  }

  .bc-link, .bc-current{
    display: block; text-decoration: none; color: grey;
    padding: 2px 4px; margin: 0;       /* можно убрать вообще, если нужно "в ноль" */
  }
  .bc-link:hover{ text-decoration: underline; }

  .bc-sep{ color:#000; user-select:none; }

/* === Кнопка КАТАЛОГ СУМОК === */
.btn-catalog {
  font-weight: 500 !important;
  text-transform: uppercase !important;
  font-size: 1.1rem !important;
  letter-spacing: 0.04em !important;
  transition: all 0.3s ease;
  background-color: #000;
}

.btn-catalog:hover {
  background-color: #000;
  color: #fff;
  text-shadow: 0px 2px 2px #0000002e;
}

.btn.btn-clothing {
  font-weight: 600 !important;
  text-transform: uppercase !important;
  font-size: 1.1rem !important;
  letter-spacing: 0.04em !important;
  transition: all 0.3s ease;
  text-shadow: 0px 2px 2px #0000002e;
}

.btn.btn-clothing:hover {
  border-color: #000 !important;
  background-color: #111 !important;
  color: #fff !important;
}


/* === FEATURED PRODUCTS === */
.featured-section {
  background: #fcfbf7;
  padding: 3rem 1rem;
  text-align: center;
}

.featured-title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 2rem;
}



/* === Swiper Slider === */
.swiper {
  width: 100%;
  padding: 1rem 0;
}

.swiper-slide {
  border-radius: 8px;
  padding: 1rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  position: relative;
  height: 100%;
}

/* Центрування та збільшення фото */
.swiper-slide img {
  width: auto;
  height: 340px;
  max-height: 340px;
  object-fit: cover;
  margin-bottom: 1rem;
  display: block;
}

/* Блок знижки */
.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #dc3545;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
}

/* Назва товару */
.product-title {
  color: #111;
  font-size: 1rem !important;
  font-weight: 600;
  margin-bottom: 0.5rem;
  max-width: 260px;
}

/* Ціни */
.price-block {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

.old-price {
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
  font-size: 1rem;
}

.new-price {
  color: #28a745;
  font-size: 1.25rem;
  font-weight: 700;
}

@media (max-width: 576px) {
  .swiper-slide img {
    height: 210px;
  }

  .product-title {
    font-size: 0.9rem !important;
    max-width: 100%;
  }

  .new-price {
    font-size: 1.1rem;
  }
}



/* === about-brand === */
/* Фон для блока "Про компанію" */
  .hero-about{
    position: relative;
    min-height: 360px;           /* можно увеличить до 480–560px */
    display: grid;
    place-items: center;
    padding: 4.5rem 0;           /* эквивалент py-5, но явный */
    text-shadow: 0 2px 6px rgba(0,0,0,.35);
    background:
      linear-gradient( to bottom, rgba(0,0,0,.45), rgba(0,0,0,.55) ), /* затемнение */
      url("/img/sh-tac-urban-style-section-fon.jpg") center/cover no-repeat fixed;
    /* fixed даёт лёгкий parallax на десктопе; хотите статично — удалите "fixed" */
  }

  /* Адаптив: поменьше высота/контентные отступы на телефонах */
  @media (max-width: 575.98px){
    .hero-about{ min-height: 300px; padding: 3.5rem 0; }
  }

  /* Узкий контейнер для подзаголовка (как в вашем section-dim) */
  .section-dim{ max-width:720px; margin-inline:auto; }
#about-brand {
  background-color: #ffffff;
}

#about-brand h2 {
  font-size: 1.9rem;
}

#about-brand h6 {
  font-size: 1rem;
  font-weight: 600;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeLeft 1s ease forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeRight 1s ease forwards;
  animation-delay: 0.2s;
}
@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-logo {
  width: 100%;
}

@media (min-width: 992px) {
  .about-logo {
    max-width: 440px;
  }
}

/* === end about-brand === */


/* Video (YouTube slider) */
.section-video {
  background-color: #111;
  width: 100%;
  height: 100%;
  background-image: url('../img/sh-tac-urban-style-section-fon.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  /* z-index: 0; */
}

.section-video .section-title {
  font-weight: 800;
  padding-top: 20px;
  font-size: 1.8rem;
  color: #fff;
}

.video-swiper {
  padding: 8px 8px 32px 8px;
}

.video-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .08);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #e9eef6;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.video-play .play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(184, 20, 58, .92);
  box-shadow: 0 10px 30px rgba(184, 20, 58, .35);
  display: grid;
  place-items: center;
  transition: transform .15s ease;
}

.video-card:hover .play-btn {
  transform: scale(1.05);
}

.video-play i {
  color: #fff;
  font-size: 26px;
  margin-left: 2px;
}

.video-body {
  padding: 14px 14px 12px;
}

.video-title {
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 4px;
}

.video-meta {
  font-size: .875rem;
  color: #6b7280;
}

/* Стрілки Swiper */
.video-swiper .swiper-button-prev,
.video-swiper .swiper-button-next {
  color: #232a3a;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

.video-swiper .swiper-button-prev:after,
.video-swiper .swiper-button-next:after {
  font-size: 18px;
}

/* Пагінація */
.video-swiper .swiper-pagination-bullet {
  background: #c4c9d4;
  opacity: 1;
}

.video-swiper .swiper-pagination-bullet-active {
  background: #b8143a;
}


.section-video a.btn-outline-light:hover {
  background-color: #ff0000;
  border-color: #ff0000;
  color: #fff;
}

.section-video .bi-youtube {
  color: #ff0000;
  transition: transform 0.3s ease;
}

.section-video a.btn-outline-light:hover .bi-youtube {
  transform: scale(1.2);
  color: #fff;
}

.section-video p.text-muted {
  max-width: 600px;
  height: 100px;
  margin: 0 auto;
  padding: 10px;
  font-size: 0.95rem;
  color: #ccc !important;
}

/* End Video (YouTube slider) */




/* === ИКОНКИ / УТИЛИТЫ / ГАЛЕРЕЯ === */
.about-icons .about-ico{
  display:inline-block;
  font-size:100px; /* ~120×120px визуально */
  line-height:1;
}
@media (max-width:575.98px){
  .about-icons .about-ico{ font-size:50px; }
}

.section-dim{ max-width:720px; margin-inline:auto; }

.gallery-img{ object-fit:cover; border-radius:12px; }

.team-avatar{ width:140px; height:140px; object-fit:cover; }

/* === СЕКЦИЯ "Дізнайтесь більше про SH-TAC" (#about-link) === */
#about-link{
  background-color:#f8f9fa;
  position:relative;
  overflow:hidden;
  padding:5rem 0;
  text-align:center;
  z-index:1;
}
#about-link::before,
#about-link::after{
  content:"";
  position:absolute;
  width:300px; height:300px;
  background:radial-gradient(circle, rgba(0,0,0,0.03) 0%, transparent 45%);
  border-radius:50%;
  z-index:0;
  animation:float 10s infinite linear;
}
#about-link::before{ top:-80px; left:-80px; }
#about-link::after{ bottom:-80px; right:-80px; }

@keyframes float{
  0%{ transform:scale(1) rotate(0deg); }
  50%{ transform:scale(1.05) rotate(180deg); }
  100%{ transform:scale(1) rotate(360deg); }
}

#about-link h2{
  font-size:2.4rem; font-weight:700; color:#212529;
  margin-bottom:1rem; position:relative; z-index:1;
}
#about-link p{
  font-size:1.15rem; color:#6c757d; max-width:700px;
  margin:0 auto 2rem; position:relative; z-index:1;
}
#about-link .btn{
  padding:12px 40px;
  font-size:1.2rem; font-weight:600;
  border-radius:10px; border:1px solid #212529;
  color:#000; background:#fff;
  transition:all .3s ease;
  position:relative; z-index:1;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}
#about-link .btn:hover{
  background:#212529; color:#fff; border-color:#212529;
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(0,0,0,.1);
}
@media (max-width:768px){
  #about-link h2{ font-size:1.75rem; }
  #about-link p{ font-size:1rem; padding:0 15px; }
  #about-link .btn{ padding:10px 24px; font-size:1.05rem; }
}

/* ----- HERO ABOUT (фон + мобильный параллакс) ----- */
.hero-about{
  --bg-y: 0px; /* управляемая переменная для мобильного «сдвига» фона */
  position:relative;
  min-height:360px;
  display:grid;
  place-items:center;
  padding:4.5rem 0;
  text-shadow:0 2px 6px rgba(0,0,0,.35);
  color:#fff;

  background-image:
    linear-gradient(to bottom, rgba(0,0,0,.01), rgba(0,0,0,.05)),
    url("/img/sh-tac-urban-style-section-fon.jpg");
  background-repeat:no-repeat;
  background-size:cover;

  /* Мобильный режим: фон «двигается» переменной */
  background-position:center var(--bg-y);
  background-attachment:scroll;
}

/* Десктоп: реальный fixed (где поддерживается) */
@media (min-width:992px){
  .hero-about{
    background-position:center center;
    background-attachment:fixed;
  }
}

/* Чуть компактнее на XS */
@media (max-width:575.98px){
  .hero-about{ min-height:300px; padding:3.5rem 0; }
}

/* Пользователям с reduced motion — без сдвига */
@media (prefers-reduced-motion: reduce){
  .hero-about{ background-position:center center !important; }
}

.hero-philosophy{
  position: relative;
  color:#fff;
  text-shadow: 0 2px 6px rgba(0,0,0,.35);

  background-image:
    linear-gradient(to bottom, rgba(0,0,0,.01), rgba(0,0,0,.05)),
    url("/img/sh-tac-urban-style-section-fon.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;

  /* На десктопе – фиксированный фон */
  background-attachment: fixed;
}

/* На мобилках чаще всего fixed не поддерживается — делаем scroll,
   чтобы избежать «дребезга» при скролле */
@media (max-width: 991.98px){
  .hero-philosophy{
    background-attachment: scroll;
  }
}
 
.hero-cta{
  color:#fff;
  text-shadow: 0 2px 6px rgba(0,0,0,.35);

  background-image:
    linear-gradient(to bottom, rgba(0,0,0,.01), rgba(0,0,0,.05)),
    url("/img/sh-tac-urban-style-section-fon.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;

  /* фиксация на десктопе */
  background-attachment: fixed;
}

/* на мобильных — scroll, чтобы избежать рывков */
@media (max-width: 991.98px){
  .hero-cta{
    background-attachment: scroll;
  }
}







/* Swiper: Відгуки */
.reviewsSwiper {
  padding: 20px 10px;
}

.reviewsSwiper .swiper-slide {
  height: auto;
}

.reviewsSwiper .card {
  transition: transform 0.3s ease;
}

.reviewsSwiper .card:hover {
  transform: translateY(-5px);
}

#faq .accordion-button {
  font-weight: 500;
  font-size: 1rem;
}

#faq form .form-control {
  border-radius: 0.3rem;
}

#faq form button.btn {
  font-weight: 600;
  transition: background-color 0.3s ease;
}

#faq form button.btn:hover {
  background-color: #212529;
}





#instagram {
  background-color: #111;
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: auto;
}

.instagram-bg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  z-index: 1;
}

@media (min-width: 992px) {
  .instagram-bg-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.insta-bg-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}

.insta-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.3s ease;
  display: block;
}

.insta-bg-img:hover img {
  transform: scale(1.05);
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.0);
  z-index: 2;
}

.instagram-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  padding: 2rem;
  max-width: 600px;
}

@media (max-width: 576px) {
  .instagram-content {
    width: 80%;
  }
}




.footer {
  background-color: #0d0d0d !important;
  color: #fff;
  padding: 3rem 1rem 1.5rem;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.footer-heading {
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.footer-description {
  color: #999;
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer .footer-link {
  color: #bbb;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer .footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer .social-icons {
  margin-top: 1rem;
}

.footer .social-icons a {
  font-size: 1.7rem;
  color: #aaa;
  margin: 0 0.6rem;
  display: inline-block;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer .social-icons a:hover {
  color: #fff;
  transform: scale(1.1);
}

.text-muted {
  color: #aaa !important;
}

/* Мобильная адаптация */
@media (max-width: 576px) {
  .footer {
    text-align: center;
  }

  .footer-heading {
    text-align: center;
  }

  .footer .social-icons {
    justify-content: center;
    margin-top: 1rem;
  }
}




 .catalog-header {
  height: 400px;
  position: relative;
  overflow: hidden;
}
/* чтоб внутренности Swiper реально занимали 100% высоты хедера */
.catalog-header .catalogSwiper .swiper-wrapper{ height: 100%; }

/* чтобы точки точно были поверх видео и затемнения */
.catalog-header .swiper-pagination{ z-index: 2; position: absolute; left: 0; right: 0; bottom: 10px; }


/* Лёгкий затемняющий градиент для читаемости текста */
.catalog-header::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.25));
  z-index: 1; /* между видео и текстом */
  pointer-events: none;
}

/* Слайдер контейнер */
.catalog-header .catalogSwiper {
  height: 100%;
  border-radius: 0 !important;
  padding: 0;
  margin: 0;
}

/* Слайды и видео */
.catalog-header .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0 !important;
  overflow: hidden;
  will-change: transform, opacity;
  background: #000; /* фон на случай, если у видео другие пропорции */
}

.catalog-header .slide-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;      /* КЛЮЧ: заполняет весь слайд без «пустот» */
  object-position: center;
  display: block;
  filter: saturate(1.05) contrast(1.02);
  transform: translateZ(0); /* сглаживает на мобильных, без масштабирования */
}

/* Текст поверх видео */
.catalog-header .header-caption{
  position: absolute;
  left: 0; right: 0; bottom: 24px;
  z-index: 2; /* выше затемнения */
  color: #fff;
}
.catalog-header .header-caption h1,
.catalog-header .header-caption p{
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
  margin: 0;
}
.catalog-header .header-caption p{ margin-top: 6px; }

/* Пагинация (точки) */
.catalog-header .swiper-pagination-bullets .swiper-pagination-bullet{
  background: rgba(255,255,255,.8);
  opacity: .9;
}
.catalog-header .swiper-pagination-bullet-active{
  background: #ff9900;
}

/* Адаптив */
@media (max-width: 768px) {
  .catalog-header {
    /* Если нужно строго больше — можно поставить 60vh */
    height: 240px;
  }
}

/* Дополнительно (необязательное улучшение): гибкая высота на разных экранах */
@media (min-width: 992px){
  .catalog-header { height: 480px; }
}

/* Пагинация — центрируем и поднимаем слой (у тебя уже есть базовый z-index) */
.catalog-header .swiper-pagination{
  display:flex; justify-content:center; gap:10px;
  bottom:12px; /* можно 10–16px */
}

/* Базовые круглые точки */
.catalog-header .swiper-pagination-bullets .swiper-pagination-bullet{
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  box-shadow: 0 2px 8px rgba(0,0,0,.25) inset, 0 0 0 1px rgba(255,255,255,.5);
  opacity: 1;
  transition: transform .28s ease, background-color .28s ease, box-shadow .28s ease;
  position: relative;
}

/* hover/focus */
.catalog-header .swiper-pagination-bullets .swiper-pagination-bullet:hover,
.catalog-header .swiper-pagination-bullets .swiper-pagination-bullet:focus-visible{
  transform: scale(1.15);
}

/* Активная точка — ярче и больше */
.catalog-header .swiper-pagination-bullet-active{
  background: #ff9900;
  transform: scale(1.2);
  box-shadow: 0 0 0 1px rgba(255,255,255,.85), 0 0 18px rgba(255,153,0,.55);
}

/* Прогресс-кольцо вокруг активной точки (анимация длится DELAY) */
.catalog-header .swiper-pagination-bullet-active::after{
  content:"";
  position:absolute;
  inset:-6px;                 /* толщина кольца = 6px */
  border-radius:50%;
  background: conic-gradient(#ffbb33 0deg, #ff9900 0deg 360deg);
  -webkit-mask:
    radial-gradient(circle calc(50% - 6px), #000 98%, transparent 100%),
    radial-gradient(circle 50%, transparent 98%, #000 100%);
          mask:
    radial-gradient(circle calc(50% - 6px), #000 98%, transparent 100%),
    radial-gradient(circle 50%, transparent 98%, #000 100%);
  animation: pagerProgress var(--pager-interval, 10000ms) linear forwards;
}

/* Плавное исчезновение у неактивных, чтобы не мерцало при смене */
.catalog-header .swiper-pagination-bullets .swiper-pagination-bullet::after{
  transition: opacity .2s ease;
}
.catalog-header .swiper-pagination-bullets .swiper-pagination-bullet:not(.swiper-pagination-bullet-active)::after{
  opacity: 0;
}

/* Анимация заливки по кругу */
@keyframes pagerProgress{
  from { background: conic-gradient(#ffbb33 0deg, #ff9900 0deg 0deg); }
  to   { background: conic-gradient(#ffbb33 360deg, #ff9900 360deg 360deg); }
}

/* Чуть крупнее точки на ≥768px */
@media (min-width:768px){
  .catalog-header .swiper-pagination-bullets .swiper-pagination-bullet{
    width:14px; height:14px;
  }
}

/* Уважение к reduced motion */
@media (prefers-reduced-motion: reduce){
  .catalog-header .swiper-pagination-bullets .swiper-pagination-bullet,
  .catalog-header .swiper-pagination-bullet-active{ transition:none; }
  .catalog-header .swiper-pagination-bullet-active::after{ animation:none; }
}








/* Анімація появи */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.product-card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ==== ХЛІБНІ КРОШКИ ==== */
.breadcrumb {
  background-color: transparent;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0;
  margin-bottom: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: ">";
  color: #6c757d;
  padding: 0 0.5rem;
}

.breadcrumb-item a {
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.breadcrumb-item a:hover {
  color: #a00;
  /* бренд SH-TAC */
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

@media (max-width: 576px) {
  .breadcrumb {
    font-size: 0.9rem;
  }
}

/* ==== Слайдер лише для сторінки товару ==== */
.productSwiper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  max-width: 100%;
  background-color: #fff;
  position: relative;
}

/* Анімація слайдів */
.productSwiper .swiper-wrapper {
  transition-timing-function: ease-in-out;
}

/* Слайди */
.productSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  background: #fff;
  text-align: center;
}

/* Зображення товару */
.productSwiper .swiper-slide img {
  max-height: 480px;
  width: auto;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  transition: transform 0.4s ease;
  /* box-shadow: 0 0 8px rgba(0,0,0,0.05); */
}

.productSwiper .swiper-slide img:hover {
  transform: scale(1.04);
}

/* ==== Пагінація ==== */
.productSwiper .swiper-pagination {
  position: relative;
  margin-top: 16px;
  text-align: center;
}

.productSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #000;
  opacity: 0.3;
  border-radius: 50%;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.productSwiper .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #000;
  transform: scale(1.2);
}

/* ==== Адаптив для мобільних ==== */
@media (max-width: 576px) {
  .productSwiper .swiper-slide img {
    max-height: 320px;
  }
}