/*

Tooplate 2129 Crispy Kitchen

https://www.tooplate.com/view/2129-crispy-kitchen

*/


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #FFFFFF;
  --primary-color:                #f44749;
  --secondary-color:              #f3af24;
  --section-bg-color:             #F9F9F9;
  --dark-color:                   #000000;
  --title-color:                  #565758;
  --news-title-color:             #292828;
  --p-color:                      #717275;
  --border-color:                 #eaeaea;
  --border-radius-default:        .25rem;

  --body-font-family:             'Montserrat', sans-serif;

  --h1-font-size:                 76px;
  --h2-font-size:                 56px;
  --h3-font-size:                 42px;
  --h4-font-size:                 28px;
  --h5-font-size:                 26px;
  --h6-font-size:                 22px;

  --p-font-size:                  18px;
  --menu-font-size:               18px;
  --category-font-size:           14px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
    background: var(--white-color);
    font-family: var(--body-font-family);    
    position: relative;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
}

h1,
h2 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
  line-height: normal;
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p,
.list .list-item {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

.form-label {
  color: var(--p-color);
  font-weight: var(--font-weight-semibold);
}

a {
  color: var(--secondary-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

::selection {
  background: var(--primary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white-color);
}

.section-padding {
  padding-top: 3rem;
  padding-bottom: 1rem;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  CUSTOM BUTTON              
-----------------------------------------*/
.custom-btn {
  border: 0;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  padding: 10px 35px;
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  background: var(--white-color);
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar-logo {
    height: 40px;
    width: auto;
}

.navbar-brand {
  color: var(--dark-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
  margin-right: 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.navbar-expand-lg .nav-link {
  color: var(--p-color);
  font-weight: var(--font-weight-normal);
  font-size: var(--menu-font-size);
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.nav-link:focus, 
.nav-link:hover {
  color: var(--primary-color);
}

.nav-link:focus {
  color: var(--p-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 10rem;
  padding-bottom: 10rem;
  text-align: center;
  position: relative;
}

.site-header .container {
  position: relative;
  z-index: 2;
}

.site-news-detail-header {
  background: transparent;
  text-align: left;
   padding-top: 6rem;
  padding-bottom: 6rem;
}

.site-about-header {
  background-image: url('../images/backgrounds/primery-sborochnyh-chertezhej-pechatnyh-plat.jpg');
}

.site-menu-header {
  background-image: url('../images/backgrounds/osnovnye-tipy-naplavki-sravnenie.jpg');
}

.site-news-header {
  background-image: url('../images/header/priscilla-du-preez-W3SEyZODn8U-unsplash.jpg');
}

.site-contact-header {
  background-image: url('../images/backgrounds/pexels-pixabay-267507.jpg');
}

.overlay {
  background: linear-gradient(to top, var(--dark-color), transparent 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}


/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 20.542rem;
  padding-bottom: 20.542rem;
}

.hero .container {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.custom-title {
  margin-left: -140px;
}


/*---------------------------------------
  HERO SLIDE               
-----------------------------------------*/
.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-right: 15px;
}

.custom-carousel {
  margin-right: 16px;
}

.carousel-thumb {
  position: relative;
}

.carousel-caption {
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  text-align: left;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 40px;
}

.hero-carousel .reviews-text,
.hero-text {
  color: var(--white-color);
}

.price-tag {
  background: var(--white-color);
  border-radius: 100px;
  color: var(--secondary-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-semibold);
  display: inline-block;
  width: 84px;
  height: 64px;
  line-height: 64px;
  text-align: center;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  position: absolute;
  top: auto;
  bottom: 0;
  opacity: 1;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  background: var(--secondary-color);
  width: 60px;
  height: 60px;
  text-align: center;
}

.hero-carousel .carousel-control-prev {
  left: auto;
  right: 60px;
}

.hero-carousel .carousel-control-next {
  background: var(--primary-color);
  right: 0;
}

.hero-carousel .carousel-control-prev:hover, 
.hero-carousel .carousel-control-next:hover {
  background: var(--dark-color);
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  background-image: none;
  width: inherit;
  height: inherit;
  line-height: 60px;
}

.hero-carousel .carousel-control-prev-icon::before,
.hero-carousel .carousel-control-next-icon::before {
  font-family: bootstrap-icons;
  display: block;
  margin: auto;
  font-size: var(--h5-font-size);
  color: var(--white-color);
}

.hero-carousel .carousel-control-prev-icon::before {
  content: "\f13f";
}

.hero-carousel .carousel-control-next-icon::before {
  content: "\f144";
}

.reviews-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  MENU               
-----------------------------------------*/
.menu {
  background: #FFFFFF;
}

.about,
.news,
.related-news,
.newsletter,
.comments {
  background: var(--section-bg-color);
}

.menu-thumb {
    position: relative;
    height: 420px;
    overflow: hidden;
    /* box-shadow: inset 0 0 2px rgba(0,0,0,0.1); */
}

/* experemental */

.menu-thumb:hover .fade-text {
    transform: translateY(0);
    opacity: 1;
    max-height: 100%;
}

.menu-thumb:hover .fade-text::after {
    display: none;
}

.fade-text {
    position: relative;
    max-height: 100%;
    overflow: hidden;
    line-height: 1.5;
    font-size: 15px;
}
/* Градиент снизу */
.fade-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 200px;
    pointer-events: none;
}

.menu-hover {
    position: absolute;
    inset: 0;
    padding: 16px;

    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);

    transform: translateY(calc(100%));
    transition: transform 1s cubic-bezier(.2,.8,.2,1);
}

.menu-thumb:hover .menu-hover {
    transform: translateY(0);
}

.menu-thumb:hover .menu-hover {
    transform: translateY(0);
}

.menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* ВВЕРХ */
    text-align: left;

    padding-top: 8px;

    transform: translateY(0);
    transition:
      transform 0.35s ease-out 0.15s;
}

.menu-thumb:hover .menu-content {
    justify-content: center;        /* ЦЕНТР */
    transform: translateY(-8px);   /* компенсация движения плашки */
}

.menu-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* experemental */
.menu-info {
  padding: 20px 20px 30px 20px;
}

.menu-image {
  display: block;
  
  /* смещаем изображение */
  transform: translate(10px, 20px); /* X = вправо, Y = вниз */
  transition: transform 0.3s ease; /* плавное движение, если hover будет */
}

.menu-image-wrap {
  position: relative;
  height: 290px;             /* фикс высоты картинки */
  overflow: hidden;
  justify-content: center;
  align-items: center;
  display: flex;
}

.menu-tag {
  position: absolute;
  top: 20px;
  right: 10px;
}

.newsletter-image {
  border-radius: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  max-width: 450px;
  max-height: 450px;
}

/* --------------------------------------
  carosel
-----------------------------------------*/

.carousel-collection {
    display: flex;
    flex-direction: column; 
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    background-color: #f7f7f7;
    padding: 50px 20px;
}

/* кнопки */
.carousel-collection .text-selector {
    display: flex;          
    justify-content: center; 
    width: 100%;
    margin-bottom: 30px;
}

.carousel-collection .text-selector button {
    flex: 0 0 21.25%; /* чуть уже чем 25% */
    margin: 0 10px;
    padding: 15px 0;
    font-size: 18px;
    cursor: pointer;
    background: none; /* убрали фон */
    border: none;     /* убрали границы */
    position: relative;
    overflow: hidden;
}

/* линия анимации */
.carousel-collection .text-selector button::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #333;
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

/* при наведении, если не активная */
.carousel-collection .text-selector button:not(.active):hover::after {
    width: 100%;
    left: 0;
    transform: none;
}

/* активная кнопка */
.carousel-collection .text-selector button.active::after {
    width: 100%;
    left: 0;
    transform: none;
}

/* блоки текста */
.carousel-collection .carousel-text {
    display: none;
    width: 100%;
    max-width: 1000px;
    text-align: center;
    padding: 25px 30px;
    border-radius: 10px;
    background-color: #fff;
    margin: 0 auto;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


/*---------------------------------------
  CATALOG
-----------------------------------------*/
.catalog-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #212529;
    min-width: 240px;
    padding: 12px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);

    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1000;
}

.catalog-panel a {
    display: block;
    padding: 8px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}

.catalog-panel a:hover {
    background: rgba(255,255,255,0.08);
}

.catalog-panel hr {
    margin: 8px 0;
    border-color: rgba(255,255,255,0.15);
}

/* Активное состояние */
.catalog-panel.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* -------------------------------------
SPECS
---------------------------------------*/
/* ------------------------------------
gallery
--------------------------------------- */


/* Десктоп */
.product-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Основное изображение */
.gallery-main {
    position: relative;
    width: 625px;
    height: 525px;
    overflow: hidden;

    display: flex;
    align-items: center;      /* вертикаль */
    justify-content: center;  /* горизонталь */
}

.gallery-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gallery-track-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
}

/* Слайды */
.gallery-track img {
    min-width: 100%;
    height: 100%;
    object-fit: contain;

    display: block;
    margin: auto; /* страховка */
}

/* Стрелки */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 28px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 2;
}

.gallery-arrow.prev { left: 10px; }
.gallery-arrow.next { right: 10px; }

/* Миниатюры */
.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.gallery-thumbs .thumb {
    width: 90px;
    height: 90px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
}

.gallery-thumbs .thumb.active {
    border-color: #0d6efd; /* синий */
}



/* --------------------------------------
gallery
---------------------------------------- */


/* ---------------------------------------
LINK-BAR
------------------------------------------*/

.product-breadcrumbs-wrapper {
    width: 100%;
    background-color: #f7c600;
}

.product-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    background-color: #f7c600;
    padding: 10px 16px;
    font-size: 14px;
}

.product-breadcrumbs__link,
.product-breadcrumbs__current {
    position: relative;
    padding-right: 18px;
    margin-right: 8px;
    white-space: nowrap;
}

/* стрелка */
.product-breadcrumbs__link::after {
    content: "›";
    position: absolute;
    right: 0;
    color: #555;
}

/* у последнего элемента стрелки нет */
.product-breadcrumbs__current {
    padding-right: 0;
    margin-right: 0;
    font-weight: 600;
    color: #000;
}

/* ссылки */
.product-breadcrumbs__link {
    color: #333;
    text-decoration: none;
}

.product-breadcrumbs__link:hover {
    text-decoration: underline;
}




/* ----------------------------------------
LINK BAR
------------------------------------------- */
.spec-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px 0;
    font-size: 16px;
}

.spec-name {
    white-space: nowrap;
}

.spec-value {
    white-space: nowrap;
    margin-left: 10px;
    font-weight: bold;
}

.spec-separator {
    flex-grow: 1; /* растягиваем линию между названием и значением */
    border-bottom: 1px dashed #999; /* декоративная линия */
    margin: 0 10px;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
    text-align: left;
}

.spec-list li {
    padding: 8px 0 8px 15px;
    position: relative;
    font-size: 16px;
}

.spec-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background-color: #333;
    transform: translateY(-50%);
    border-radius: 50%;
}

/* -------------------------------------
SPECS
---------------------------------------- */
/*---------------------------------------
  NEWS               
-----------------------------------------*/
.news-thumb {
  position: relative;
  overflow: hidden;
}

.news-thumb > a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-out;
}

.news-thumb > a:hover {
  transform: scale(1.2);
}

.news-text-info {
  background: var(--section-bg-color);
  position: relative;
  z-index: 2;
  padding: 20px;
  transition: all 0.3s ease-out;
}

.related-news .news-text-info {
  background: var(--white-color);
}

.news-text-info-large {
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  pointer-events: none;
}

.news-text-info-large .news-title-link {
  color: var(--white-color);
}

.news-title-link {
  color: var(--news-title-color);
}

.news-image {
  display: block;
  width: 100%;
  transition: all 0.3s ease-out;
}

.news-image:hover {
  transform: scale(1.2);
}

.category-tag,
.menu-tag {
  background: var(--dark-color);
  border-radius: var(--border-radius-default);
  color: var(--white-color);
  font-size: var(--category-font-size);
  display: inline-block;
  padding: 4px 12px;
}

.category-tag {
  margin-bottom: 5px;
}

.comment-form {
  margin-bottom: 60px;
}

.news-author {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  margin-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
}

.news-author:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.news-author-image {
  border-radius: 100px;
  object-fit: cover;
  width: 70px;
  height: 70px;
}


/*---------------------------------------
  CUSTOM FORM            
-----------------------------------------*/
.custom-form .form-control {
  margin-bottom: 20px;
  padding: 14px 10px;
  transition: all 0.3s;
}

.custom-form button[type="submit"] {
  background: var(--dark-color);
  border: 0;
  color: var(--white-color);
  text-transform: uppercase;
}

.custom-form button[type="submit"]:hover {
  background: var(--primary-color);
}

.custom-padding {
    padding-left: 180px;
    padding-right: 180px;
}

/*---------------------------------------
  SUBSCRIBE FORM            
-----------------------------------------*/
.subscribe-form .form-control {
  margin-top: 20px;
  margin-bottom: 10px;
}


/*---------------------------------------
  BOOKING FORM            
-----------------------------------------*/
#BookingModal .modal-content {
  border: 0;
  overflow: hidden;
}

#BookingModal .modal-content::before {
  content: "";
  background-color: var(--white-color);
  background-image: url('../images/sincerely-media-HoEYgBL_Gcs-unsplash.jpg');
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  width: 60%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

#BookingModal .modal-header {
  border-bottom: 0;
  position: relative;
  padding: 26px 32px 0 32px;
}

#BookingModal .modal-body {
  padding: 38px 32px;
  padding-right: 35%;
}

#BookingModal .modal-footer {
  border-top: 0;
  padding: 0;
}

.booking-form .form-control {
  font-weight: var(--font-weight-normal);
  padding-top: 12px;
  padding-bottom: 12px;
  margin-bottom: 25px;
  transition: all 0.3s;
}

.booking-form button[type="submit"] {
  background: var(--dark-color);
  border: 0;
  font-weight: var(--font-weight-semibold);
  color: var(--white-color);
  text-transform: uppercase;
  margin-bottom: 0;
}

.booking-form button[type="submit"]:hover {
  background: var(--primary-color);
}

.BgImage {
  background-image: url('../images/backgrounds/pexels-lucian-pirvu-2565857-4400533.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 500px;
}

/* --------------------------------------
product
---------------------------------------- */

.product-meta {
    margin-top: 10px;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 10px;        /* скруглённые углы */
    background-color: #e6f6ea;  /* светлый зелёный фон */
    color: #1f7a3f;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.price-line {
    margin-top: 6px;
}

.price-label {
    font-weight: 700;           /* жирная "Цена:" */
    color: #000;
    margin-right: 6px;
}

.price-value {
    font-weight: 700;
    color: #000;
    text-decoration: underline; /* подчёркнуто */
}


/* -------------------------------------
product
---------------------------------------- */

/*---------------------------------------
  FOOTER              
-----------------------------------------*/
.site-footer {
  background-image: url('../images/backgrounds/thumb-1920-42479.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 7rem;
  padding-bottom: 7rem;
  position: relative;
}

.site-footer::before {
  content: "";
  background: linear-gradient(to top, var(--dark-color), transparent 200%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.site-footer .container {
  position: relative;
}

.tooplate-mt30 {
	margin-top: 30px;
}
.tooplate-mt60 {
	margin-top: 60px;
}

.copyright-text {
  font-size: var(--menu-font-size);
}

.tel-link {
  color: var(--p-color);
}

.site-footer a:hover {
  color: var(--white-color);
}

.site-footer a {
  	color: #AAA;;
}

.site-footer p {
	color: #AAA;
}

/* ---------------------------------------
monile top bar
------------------------------------------ */

.mobile-top-bar {
    display: none;
}

.product-title {
    text-align: left;       /* выравнивание по левому краю */
    order: -1;              /* можно управлять порядком, если нужно сверху */
}

.accordion-mobile {
    display: none; /* по умолчанию скрыт */
}

/* --------------------------------------
monile top-bar
---------------------------------------- */
/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
  transition: all 0.3s;
}

.social-icon:hover li:not(:hover) {
  opacity: 0.65;
}

.social-icon-link {
  color: var(--p-color);
  font-size: var(--p-font-size);
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 15px;
}

.social-icon-link:hover {
  color: var(--primary-color);
}


/* mobile hero */

.hero-mobile-title{
    text-align: center;
}

.hero-mobile-heading{
    text-align: left;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-mobile-small{
    display: block;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 5px;
    color:#f44749;
}

.hero-mobile-word{
    display: block;
}

/* mobile hero */

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1180px) {
  h1 {
    font-size: 62px;
  }
}

@media screen and (max-width: 1170px) {
  h1 {
    font-size: 56px;
  }
}


@media screen and (max-width: 991px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .site-header,
  .section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar-nav .nav-link {
    padding-top: 5px;
    padding-bottom: 10px;
  }

  #BookingModal .modal-content {
    padding-bottom: 200px;
  }

  #BookingModal .modal-content::before {
    background-image: url('../images/sincerely-media-HoEYgBL_Gcs-unsplash-mobile.jpg');
    background-position: bottom;
    top: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 200px;
    transform: rotate(180deg);
  }

  #BookingModal .modal-body {
    padding-top: 18px;
    padding-right: 32px;
  }
}

@media screen and (max-width: 480px) {
  .newsletter-image {
    max-width: 310px;
    max-height: 310px;
  }

  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
  }
}

/* @media (max-width: 991.98px) {
    .product-breadcrumbs-wrapper {
        display: none;
    }
} */

/* МОБИЛЬНАЯ ВЕРСИЯ ГАЛЕРЕИ */
@media (max-width: 767.98px) {
    .product-gallery {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .gallery-main {
        width: 100%;     /* растягиваем на всю ширину колонки */
        height: auto;
    }

    .gallery-main .main-image {
        width: 100%;
        height: auto;
    }

    .gallery-thumbs {
        display: none; /* ❗ скрываем миниатюры */
    }

    .gallery-thumbs .thumb {
        width: 80px;
        height: 80px;
        margin-right: 8px;
        flex-shrink: 0;
    }
}

/* МОБИЛЬНАЯ ВЕРСИЯ */
@media (max-width: 991px) {
    .navbar {
        position: relative;
        padding-top: 9px; /* высота navbar */
    }

    .navbar-logo {
        position: relative;
        top: 3px;
        left: 40%;
        transform: translateX(-50%);
        height: 25px; /* твои 50% */
        z-index: 1051;
    }
}


@media (max-width: 991px) {
    .mobile-top-bar {
        position: fixed;       /* фиксируем */
        top: 0;                /* вверху экрана */
        left: 0;
        width: 100%;           /* растягиваем по всей ширине */
        z-index: 2050;         /* чтобы перекрывала контент */
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 12px;
        background: #000;      /* чёрная полоса */
        color: #fff;
        font-size: 14px;
    }

    /* Слева: дом + инста */
    .social-icon-left {
        display: flex;
        gap: 6px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .social-icon-link {
        font-size: 16px;
        color: #fff;
        display: flex;
        align-items: center;
    }

    /* Справа: локация */
    .location-right {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .location-right i {
        font-size: 16px;
    }

    /* Чтобы контент не уходил под полоску */
    body {
        padding-top: 45px; /* чуть больше, чем высота полоски */
    }
}


@media (max-width: 991px) {
    .product-title {
        text-align: center; /* по центру */
        order: 1;           /* если используешь flex-контейнер для порядка */
        margin-top: auto;   /* если нужно расположить внизу блока */
    }
}

@media (max-width: 991px) {
    .accordion-mobile {
        display: block;
        font-size: 14px; /* основной размер текста, можно 13px или 12px */
    }

    .accordion-btn {
        width: 100%;
        text-align: left;
        padding: 10px;
        font-weight: 600;
        background: #f8f8f8;
        border: none;
        outline: none;
        cursor: pointer;
        border-bottom: 1px solid #ddd;
    }
    .accordion-mobile h3 {
        font-size: 15px;
    }

    .accordion-btn.active {
        background: #e0e0e0;
    }

    .accordion-content {
        display: none;  /* скрыто по умолчанию */
        padding: 10px 15px;
        border-top: 1px solid #ddd;
    }

    .accordion-mobile a {
        font-size: 14px;
    }

    .accordion-mobile ul li {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .menu-tag {
      display: none;
    }

}

@media (max-width: 991px) {
    .carousel-collection {
        display: none; /* скрыть на мобилке */
    }
}

@media (max-width: 991px) {
    .spec-row {
        font-size: 70%;
    }
}

@media (max-width: 991px) {
    .spec-list {
        font-size: 40%;
    }
}

.menu-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}

/* карточка */
.menu-col {
    padding: 8px;
    box-sizing: border-box;
}

/* ПК — 5 в строке */
@media (min-width: 992px) {
    .menu-col {
        width: 20%;
    }
}

/* Мобильный — 3 в строке */
@media (max-width: 991px) {
    .menu-col {
        width: 33.3333%;
    }
}

/* Заголовок карточки товара */
.menu-title {
    font-size: 18px;        /* нормальный размер для ПК */
    line-height: 1.25;
    font-weight: 600;
}

/* Мобильные устройства */
@media (max-width: 768px) {
    .menu-title {
        font-size: 14px;    /* уменьшенный размер */
    }
}
