/* Новая цветовая схема и базовые стили */
:root {
  --primary-color: #00BFA6;
  --secondary-color: #FF4B8C;
  --dark-color: #2A2B2E;
  --light-color: #F8F9FD;
  --accent-color: #FFB344;
  --success-color: #4CAF50;
  --error-color: #FF5252;
  --text-primary: #2A2B2E;
  --text-secondary: #6B7280;
  --border-radius: 16px;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Базовые стили */
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--text-primary);
  line-height: 1.7;
  background: var(--light-color);
  overflow-x: hidden;
}

/* Контейнер */
.m-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.m-container h1 {
  font-size: 2.5rem;
  margin-top: 2rem;
}

.m-container h2 {
  font-size: 2rem;
  margin-top: 3rem;
}

/* Карточки товаров */
.card {
  background: white;
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Кнопки */
.order-button {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.order-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 191, 166, 0.3);
}

.order-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.order-button:hover::before {
  left: 100%;
}

/* Шапка сайта - Новый дизайн */
.navbar-container {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

/* Верхняя часть шапки */
.top-header {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    padding: 0.5rem 0;
    color: white;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
}

.top-contact a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s ease;
}

.top-contact a:hover {
    opacity: 0.8;
}

.top-contact i {
    font-size: 1rem;
}

/* Основная часть шапки */
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-brand i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: transform 0.4s ease;
}

.navbar-brand:hover i {
    transform: rotateY(180deg);
}

/* Поиск */
.header-search {
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
    position: relative;
}

.header-search input {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 2px solid #edf2f7;
    border-radius: 30px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.header-search input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.1);
}

.header-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.header-search button:hover {
    transform: translateY(-50%) scale(1.05);
}

/* Правая часть шапки */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.header-action-btn i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    transition: transform 0.3s ease;
}

.header-action-btn:hover {
    color: var(--primary-color);
}

.header-action-btn:hover i {
    transform: translateY(-3px);
}

/* Навигация */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu .navbar-nav {
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(0, 191, 166, 0.08);
}

.nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(0, 191, 166, 0.12);
}

/* Мобильное меню */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .top-header {
        display: none;
    }

    .main-header {
        padding: 0.75rem 1rem;
    }

    .navbar-brand {
        order: 1;
        margin-right: auto;
    }

    .header-search {
        order: 3;
        width: 100%;
        margin: 0.5rem 0;
    }

    .header-actions {
        order: 2;
        display: flex;
        gap: 0.5rem;
    }

    .nav-menu {
        order: 4;
    }

    .navbar-collapse {
        width: 100%;
        background: #f8f9fa;
        padding: 0.5rem;
        border-radius: 0.5rem;
        margin-top: 0.5rem;
    }

    .nav-menu .navbar-nav {
        flex-direction: column;
        gap: 0.25rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
    }

    .header-action-btn span {
        display: none;
    }
}

@media (max-width: 576px) {
    .main-header {
        padding: 0.5rem;
    }

    .header-search input {
        font-size: 14px;
    }

    .header-search button {
        padding: 0.5rem 0.75rem;
    }

    .header-action-btn {
        padding: 0.5rem;
    }
}

@media (max-width: 768px) {
    .header-search {
        display: none !important;
    }
    
    .main-header {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 10px 15px;
        position: relative;
    }
    
    .navbar-brand {
        font-size: 20px;
        margin-right: auto;
    }

    .nav-menu {
        margin-left: auto;
        order: 3;
    }
    
    .header-actions {
        margin-right: 15px;
        order: 2;
    }
    
    .header-action-btn {
        padding: 5px;
    }
    
    .header-action-btn span {
        display: none;
    }
    
    .header-action-btn i {
        font-size: 20px;
        margin: 0;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        right: 15px;
        width: auto;
        min-width: 200px;
        background: white;
        padding: 0.5rem;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-menu .navbar-nav {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        padding: 0.75rem 1.5rem;
        white-space: nowrap;
    }

    .navbar-toggler {
        padding: 5px;
        margin: 0;
        border: none;
        background: transparent;
    }
    
    .navbar-toggler i.bi-list {
        font-size: 24px;
        color: var(--primary-color);
        transition: color 0.3s ease;
    }
}

/* Цены и статусы */
.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stock {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--success-color);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: rgba(76, 175, 80, 0.1);
}

/* Рейтинг */
.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* Спецификации */
.specifications {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  margin: 2rem 0;
}

.spec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

/* Отзывы */
.review-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--box-shadow);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* Анимации */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.card, .specifications, .review-card {
  animation: fadeIn 0.6s ease-out forwards;
}

/* Адаптивность */
@media (max-width: 768px) {
  .m-container {
    padding: 0 16px;
  }

  .m-container h1 {
    font-size: 2rem;
  }

  .m-container h2 {
    font-size: 1.5rem;
  }

  .card {
    margin-bottom: 1.5rem;
  }

  /* Мобильное меню */
  .navbar-collapse {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1rem;
    margin-top: 1rem;
  }

  .navbar-nav {
    padding: 0;
  }

  .nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-link {
    padding: 1rem !important;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-contact {
    padding: 0.5rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 0.5rem;
  }

  .row-head {
    flex-direction: column;
    gap: 0.5rem;
    margin: 0;
  }

  .col-head {
    text-align: left !important;
    padding: 0.25rem 0.5rem;
  }

  .col-head a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0;
    font-size: 0.9rem;
  }

  .col-head i {
    font-size: 1rem;
    width: 20px;
  }

  .сart-top {
    margin-top: 0.25rem;
  }

  .сart-top a {
    font-size: 0.9rem;
  }

  .bi-clock, .bi-envelope, .bi-geo-alt, .bi-send {
    font-size: 1rem;
  }
}

/* Анимация для мобильного меню */
@media (max-width: 768px) {
  .navbar-collapse {
    transform-origin: top;
    animation: slideDown 0.3s ease forwards;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .navbar-toggler {
    position: relative;
    border: none;
    padding: 0;
    margin-left: 15px;
    background: transparent;
  }
  
  .navbar-toggler i.bi-list {
    font-size: 24px;
    color: #2582df;
    transition: color 0.3s ease;
  }
  
  .navbar-toggler:hover i.bi-list {
    color: #e24636;
  }
  
  .header-actions {
    margin-left: auto;
  }
}

/* Иконки */
.bi {
  font-size: 1.2rem;
  vertical-align: middle;
}

/* Футер */
footer {
  background-color: #f8f9fa;
  color: #6c757d;
  margin-top: 4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer h6 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
  background: none;
  -webkit-text-fill-color: initial;
}

.footer p {
  margin-bottom: 0.8rem;
}

.footer .social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #6c757d;
  background: rgba(108, 117, 125, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer .social a:hover {
  color: #fff;
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer .social a i {
  font-size: 1.2rem;
}

.footer a.text-reset {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a.text-reset:hover {
  color: var(--primary-color) !important;
}

.f-col {
  background-color: rgba(0, 0, 0, 0.025);
}

.footer .bi {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .footer .social {
    justify-content: center;
    margin-top: 1rem;
  }
  
  section.d-flex {
    flex-direction: column;
    text-align: center;
  }
  
  .me-5 {
    margin-right: 0 !important;
    margin-bottom: 1rem;
  }
}

/* Existing code */
.m-container h3 {
    font-weight: bold;
	font-size: 18px;
    font-family: var(--bs-body-font-family);
	margin-top: 25px;
	margin-bottom: 15px;
}

h2.b-title  {
	margin-top: 25px !important;
}

span.vacation {
	color: #e24636;
	font-size: 14px;
	*border: 1px solid #2582df;
	*padding: 5px 10px;
	border-radius: 5px;
	border-radius: 5px;
}

span.expiration {
    color: #179e7d;
	font-weight: 600;
}

.commerce {
	margin-top: 15px;
	margin-bottom: 15px;
	font-size: 15px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.commerce .price {
	margin: 0;
	display: inline-flex;
	align-items: center;
}

.commerce a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	gap: 0.3rem;
}

.commerce .order-button,
.commerce .basket,
.commerce .favme {
	display: inline-flex;
	align-items: center;
	vertical-align: middle;
	line-height: 1;
}

.commerce i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	line-height: 1;
}

@media (max-width: 768px) {
	.commerce {
		gap: 0.8rem;
	}
}

a.order {
	color: #2582df;
	text-decoration: none;
}

a.order:hover {
	color: #e24636;
	text-decoration: none;
}

a.basket {
	color: var(--bs-body-color);
	padding: 0px 7px;
	font-size: 14px;
	border-radius: 5px;
	text-decoration: none;
	word-break: break-all;
	font-weight: 600;
}

a.basket:hover {
	color: #e24636;
}

.col-3.col-head.сart-top {
	*margin-top: 10px;
	text-align: center;
}

.card-body h2 {
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	font-size: 20px !important;
	display: inline;
}

@media screen and (max-width:800px) {
.card-title {
	display: block;
}
}

.card-title {
	font-weight: bold;
	color: var(--primary-color);
	text-decoration: none;
	font-size: 20px;
	line-height: 1.2;
	margin-right: 5px;
}

.card-title a {
	font-weight: bold;
	color: var(--primary-color);
	text-decoration: none;
	font-size: 20px;
	line-height: 1.2;
	margin-right: 5px;
}

.card-title a:hover {
	color: var(--secondary-color);
}

.info {
	font-size: 14px;
	margin-bottom: 15px;
}

.rating p {
	font-size: 14px;
}

span.score {
	font-size: 14px;
	margin-left: 3px;
}

.specifications {
	margin: 0px 0 15px 0;
	border: 1px solid #d6d6d6;
	padding: 15px 10px 2px 15px;
}

span.spec {
	color: #636363;
}

.col-sm.sp {
	margin-bottom: 15px;
	line-height: 1.4;
}

.col-sm.sp p {
	margin-bottom: 8px;
}

.col-sm.sp a {
	color: var(--primary-color);
	text-decoration: none;
}

.col-sm.sp a:hover {
	color: var(--secondary-color);
	text-decoration: none;
}

.hlinks {
	font-size: 14px;
	color: var(--primary-color);
}

.hlinks a {
	color: var(--primary-color);
	text-decoration: none;
	border-bottom: 1px dotted var(--primary-color);
}

.hlinks a:hover {
	color: var(--secondary-color);
	text-decoration: none;
	border-bottom: 1px dotted var(--secondary-color);
}

i.bi.bi-cart {
	padding-right: 2px;
}

i.bi.bi-clipboard-x {
	padding-right: 2px;
}

i.bi.bi-check-square {
	padding-right: 2px;
}

i.bi.bi-hand-thumbs-up {
  padding-right: 3px;
}

i.bi.bi-hand-thumbs-down {
  padding-right: 3px;
}

.img-fluid {
	margin: 0 auto;
	display: block;
	padding: 5px;
	cursor: pointer;
	margin-top: 0px;
}


@media screen and (min-width:800px) {
.card-body {
	padding-left: 10px !important;
}
}

.table-delivery {
	display: block;
}

table.delivery {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}
table.delivery tr {
    background-color: #fff;
}

table.delivery tr:nth-child(2n) {
	background-color: #fff !important;
	box-shadow: none !important;
}

table.delivery > tbody > tr:nth-of-type(2n+1) > * {
	--bs-table-accent-bg: #f9f9f9;
}

table.delivery th,
table.delivery td {
	text-align: left;
	padding: 8px;
	border: 1px solid #ddd;
}

table.delivery td.city {
	*font-weight: bold;
}

table.delivery td.city a {
	color: var(--primary-color);
	text-decoration: none;
}

table.delivery td.city a:hover {
	color: var(--secondary-color);
	text-decoration: none;
}

@media screen and (max-width: 600px) {
  	table.delivery {
		border: 0;
  	}

  	table.delivery thead {
	    border: none;
	    clip: rect(0 0 0 0);
	    height: 1px;
	    margin: -1px;
	    overflow: hidden;
	    padding: 0;
	    position: absolute;
	    width: 1px;
  	}
  
  	table.delivery tr {
    	border-bottom: 1px solid #ddd;
    	display: block;
   		margin-bottom: 30px;
  	}
  
	table.delivery td {
    	display: block;
    	text-align: center;
		border-bottom-width: 0px;
	}
	
    table.delivery td:nth-child(2n) {
	    background-color: #f9f9f9 !important;
	    box-shadow: none !important;
    }
	
    table.delivery > tbody > tr:nth-of-type(2n+1) > * {
	    --bs-table-accent-bg: #fff;
    }
  
	table.delivery td::before {
	    content: attr(data-label);
	    float: left;
	}
	
	table.delivery td.city {
		text-align: center;
	}
  
  	table.delivery td:last-child {
    	border-bottom: 0;
  	}
}

.toc {
	background: #f9f9f9;
	padding: 12px 12px;
}

.toc a {
    color: var(--primary-color);
}

.toc a:focus {
    color: var(--primary-color);
}

.toc a:hover {
    color: var(--secondary-color);
}

/*
ul.nav {
    padding: 5px 35px 8px 35px;
    line-height: 36px;
}

li.nav-item {
    list-style-type: square;
    color: #e24636;
}

li.nav-item:hover {
    color: #e24636;
}

.nav-link {
    display: inline-block !important;
	padding: 0 !important;
}

*/

.bg-light-2 {
    background-color: #f6f8f9 !important;
}

.navbar-nav {
	padding-top: 5px;
	padding-bottom: 7px; 
}

.nav-link {
    color: var(--primary-color) !important;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.advantages {
	border: 1px solid #ddd;
}

.advantage {
	padding: 20px;
}

.video {
	display: block;
    margin: 40px auto 0 auto;
}

@media screen and (max-width: 759px){
.video {
    width: 100%;
}
}

p.dignities {
    margin-top: 20px;
    font-weight: bold;
}

p.drawback {
    margin-top: 20px;
    font-weight: bold;
}

p.remark {
    margin-top: 20px;
    font-weight: bold;
}

@media screen and (min-width:1024px) {
.row-head {
	*width: 75% !important;
}
.col-3 {
  flex: 0 0 auto !important;
  width: auto !important;
  margin-left: 30px !important;
}
}

@media screen and (max-width:800px) {
.row-head {
	width: 80% !important;
}
}

@media screen and (max-width:600px) {
.col-head {
	width: 100% !important;
	padding: 5px;
	text-align:center;
}
}

h2#reviews  {
	*display: inline-block;
	margin-top: 50px;
}

span.number {
	background: var(--secondary-color);
	color: #ffffff;
	padding: 4px 10px 5px 11px;
	border-radius: 5px;
	margin-left: 3px;
	font-weight: bold;
	font-size: 12px;
}

span.fs-4 {
	font-weight: 600;
	text-transform: uppercase;
	margin-left: 0px;
	color: var(--secondary-color);
}

@media screen and (min-width:800px) {
span.fs-4 {
	*margin-left: 70px;
}
}

a.mail {
	color: var(--primary-color);
	color: #2582df;
	text-decoration: none;
}

a.mail:hover {
	color: #e24636;
	text-decoration: none;

}

.nav-inst {
	--bs-nav-link-padding-x: 1rem;
	--bs-nav-link-padding-y: 0.5rem;
	--bs-nav-link-font-weight: ;
	--bs-nav-link-color: var(--bs-link-color);
	--bs-nav-link-hover-color: var(--bs-link-hover-color);
	--bs-nav-link-disabled-color: #6c757d;
	display: flex;
	flex-wrap: wrap;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}

.nav-link-inst {
	display: block;
	padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
	font-size: var(--bs-nav-link-font-size);
	font-weight: var(--bs-nav-link-font-weight);
	color: var(--bs-nav-link-color);
	text-decoration: none;
	transition: color 0s ease-in-out,background-color 0s ease-in-out,border-color 0s ease-in-out;
}

a.nav-link-inst {
	color: #2582df;
	font-size: 15px;
	border: 1px solid #2582df;
	padding: 5px 12px 7px 12px;
	border-radius: 5px;
	margin: 0 10px 12px 0;
	cursor: pointer;
}

a.nav-link-inst:hover {
	color: #e24636;
	border: 1px solid #e24636;
	cursor: pointer;
}

#accordionFlushExample {
	border: 1px solid #ddd;
}

a.footer {
	color: #2582df;
}

a.footer:hover {
	color: #e24636;
}

.accordion {
	--bs-accordion-active-color: #2582df !important;
}

img.logo {
	margin-right: 10px;
	margin-top: -3px;
	*width: 50px;
}

i.bi.bi-check2 {
	font-size: 16px;
	color: #1aaf8b;
}

i.bi.bi-x {
	font-size: 18px;
	color: #e24636;
}

.bold {
	font-weight: bold;
}

i.bi.bi-clipboard-x-2::before {
    content: "\f28f";
	font-size: 18px;
	color: #2582df;
}

i.bi.bi-truck-2::before {
    content: "\f5ea";
	font-size: 20px;
	color: #2582df;
}

i.bi.bi-credit-card-2-back-2::before {
    content: "\f2d8";
	font-size: 18px;
	color: #2582df;
}

i.bi.bi-check-square-2::before {
    content: "\f26d";
	font-size: 17px;
	color: #2582df;
}

.r-r {
	width: 90% !important;
	padding: 15px 5px 15px 5px !important;
	margin-top: 0px !important;
}

.fenzitat {
	width: 90% !important;
	padding: 0px !important;
}

.rybelsus {
	padding: 15px;
}

@media screen and (max-width:450px) {
.cert-1 {
	padding: 15px !important;
	border: 1px solid #ddd;
	margin-bottom: 10px;
}
}

.cert-1 {
	padding: 15px !important;
	border: 1px solid #ddd;
}

.cert-2 {
	padding: 15px !important;
	border: 1px solid #ddd;
}

.cert-3 {
	padding: 15px !important;
	border: 1px solid #ddd;
}

.cert-4 {
	padding: 15px !important;
	border: 1px solid #ddd;
}

img.avatar {
	opacity: 0.5;
}

span.verified {
	background: #0a86ff !important;
}

span.real {
	background: #13c77d !important;
}

i.bi.bi-star::before {
    content: "\f588";
    color: #ffba3b;
}

i.bi.bi-star-half::before {
    content: "\f587";
    color: #ffba3b;
}

i.bi.bi-star-fill::before {
    content: "\f586";
    color: #ffba3b;
}

i.bi.bi-star:hover {
    cursor: pointer;
}

i.bi.bi-star-half:hover {
    cursor: pointer;
}

i.bi.bi-star-fill:hover {
	cursor: pointer;
}

.link-muted { 
    color: #8d8d8d;
	text-decoration: none;
	cursor: pointer;
}

.link-muted:hover { 
    color: #2582df;
}

.link-muted.down:hover { 
    color: #e24636;
}

.form-control.score {
	color: #6c757d;
}

.addcom {
	background: #0a86ff !important;
	border: none !important;
	padding-top: 6px !important;
	padding-bottom: 7px !important;
}

.addcom:hover {
	background: #007cf6 !important;
	border: none !important;
	transition: none !important;
}

.search {
	margin-left:5px !important;
	border-radius: 5px !important;
	background: #0a86ff !important;
	color: #fff !important;
	font-size: 15px !important;
}

.search:hover {
	margin-left:5px !important;
	border-radius: 5px !important;
	background: #007cf6 !important;
	color: #fff !important;
	font-size: 15px !important;
}

.head-form {
	font-weight: bold;
	font-size: 22px;
	font-family: var(--bs-body-font-family);
	margin-bottom: 15px;
	line-height: 20px;
}

.addorder {
	background: #0a86ff !important;
	border: none !important;
	padding-top: 5px !important;
	padding-bottom: 8px !important;
	width: 100%;
}

.addorder:hover {
	background: #007cf6 !important;
	border: none !important;
	transition: none !important;
}

@media screen and (min-width:800px) {
.fancybox__content {
    width: 500px !important;
}
}

span.head {
	font-size: 18px;
	font-weight: bold;
	display: block;
	margin-bottom: 10px;
}

.success p {
	margin-bottom: 10px;
}

i.bi.bi-check-square-3::before {
    content: "\f26d";
	font-size: 24px;
	color: #13c77d;
	margin-top: 10px;
}

table.effects {
    border: 1px solid #ddd;
}

table.effects td {
    border: 1px solid #ddd !important;
}

.table-structure {
	display: block;
}

table.structure {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
	margin-bottom: 8px;
}
table.structure tr {
    background-color: #fff;
}

table.structure tr:nth-child(2n) {
	background-color: #fff !important;
	box-shadow: none !important;
}

table.structure > tbody > tr:nth-of-type(2n+1) > * {
	--bs-table-accent-bg: #f9f9f9;
}

table.effects > tbody > tr:nth-of-type(2n+1) > * {
	--bs-table-accent-bg: #f9f9f9;
}

table.structure th,
table.structure td {
	text-align: left;
	padding: 8px;
	border: 1px solid #ddd;
}

table.structure td.city a {
	color: #2582df;
	text-decoration: none;
}

table.structure td.city a:hover {
	color: #e24636;
	text-decoration: none;
}

@media screen and (max-width: 600px) {
  	table.structure {
		border: 0;
  	}

  	table.structure thead {
	    border: none;
	    clip: rect(0 0 0 0);
	    height: 1px;
	    margin: -1px;
	    overflow: hidden;
	    padding: 0;
	    position: absolute;
	    width: 1px;
  	}
  
  	table.structure tr {
    	border-bottom: 1px solid #ddd;
    	display: block;
   		margin-bottom: 30px;
  	}
  
	table.structure td {
    	display: block;
		border-bottom-width: 0px;
	}
	
    table.structure td:nth-child(2n) {
	    background-color: #f9f9f9 !important;
	    box-shadow: none !important;
    }
	
    table.structure > tbody > tr:nth-of-type(2n+1) > * {
	    --bs-table-accent-bg: #fff;
    }
  
	table.structure td::before {
	    content: attr(data-label);
	    float: left;
	}
	
	table.structure td.city {
		text-align: center;
	}
  
  	table.structure td:last-child {
    	border-bottom: 0;
  	}
}

.nav-ml {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem;
  margin: 2rem 0;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  justify-content: space-between;
}

.nav-item-ml {
  list-style: none;
  flex: 1 1 auto;
  min-width: 200px;
  text-align: center;
}

.nav-link-ml {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  background: var(--light-color);
  color: var(--text-primary);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  width: 100%;
}

/* Адаптивность для nav-ml */
@media (max-width: 768px) {
  .nav-ml {
    padding: 1rem;
    gap: 0.8rem;
  }

  .nav-item-ml {
    min-width: 160px;
  }

  .nav-link-ml {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}

.nav-link-ml i {
  font-size: 1.1rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.nav-link-ml:hover {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-link-ml:hover i {
  color: white;
}

.nav-link-ml.active {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.nav-link-ml.active i {
  color: white;
}

/* Анимация для nav-ml */
.nav-item-ml {
  animation: fadeInRight 0.5s ease-out forwards;
  opacity: 0;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-item-ml:nth-child(1) { animation-delay: 0.1s; }
.nav-item-ml:nth-child(2) { animation-delay: 0.2s; }
.nav-item-ml:nth-child(3) { animation-delay: 0.3s; }
.nav-item-ml:nth-child(4) { animation-delay: 0.4s; }

i.bi.bi-addresses:before {
    content: "\f3e8";
}

i.bi.bi-delivery:before {
    content: "\f5ea";
}

i.bi.bi-reviews:before {
    content: "\f4e1";
}

i.bi.bi-instruction:before {
    content: "\f37d";
}

i.bi.bi-certificates:before {
    content: "\f38b";
}

i.bi.bi-analogs:before {
    content: "\f567";
	font-size: 14px;
}

i.bi.bi-slash-circle:before {
    content: "\f567";
	font-size: 14px;
}

i.bi.bi-cart-2:before {
    content: "\f242";
    color: #2582df;
    font-size: 26px;
	margin-bottom: 10px;
}

i.bi.bi-heart-2:before {
    content: "\f417";
    color: #2582df;
    font-size: 26px;
	margin-bottom: 10px;
}

li.breadcrumb-item a {
	color: #2582df !important;
    text-decoration: none !important;
}

li.breadcrumb-item a:hover {
	color: #e24636 !important;
    text-decoration: none !important;
}

.share {
	margin: 40px 0 65px 0;
}

.flexbox {
	display: flex;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.fav-btn {
	display: flex;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.favme {
	font-size: 20px;
	cursor: pointer;
	box-shadow: none;
	transition: all 0.1s ease;
	color: #afafaf;
	position: relative;
	top: 3px;
}

.favme:hover {
	color: #747474;
}

.favme.active {
	color: #e24636;
}

a.city {
	color: #2582df;
    text-decoration: none;
	*border-bottom: 1px dotted #2582df;
}

a.city:hover {
    color: #e24636;
    text-decoration: none;
	*border-bottom: 1px dotted #e24636;
}

.sticky-top {
    position: relative !important;
    top: 0;
    z-index: 1;
    background-color: #fff;
}

#faq {
	margin-top: 40px;
}

#analogs {
	margin-top: 40px;
}

#related {
	margin-top: 40px;
}

#instruction {
	margin-top: 40px;
}

@media screen and (min-width:1025px) {
.sticky-top {
    position: sticky !important;
    top: 0;
    z-index: 1;
    background-color: #fff;
}
}

#fenazepam_tab_0-5mg_n50 {
	margin-top: 5px;
}

#fenazepam_tab_1mg_n50 {
	margin-top: 5px;
}

#fenazepam_tab_2-5mg_n50 {
	margin-top: 5px;
}

#fenzitat_tab_1mg_n50 {
	margin-top: 5px;
}

#elzepam_tab_1mg_n50 {
	margin-top: 5px;
}

#fenorelaksan_tab_1mg_n50 {
	margin-top: 5px;
}

@media screen and (min-width:1025px) {
	
#ozempik_1-5ml {
	scroll-margin-top: 100px;
}

#ozempik_3ml {
	scroll-margin-top: 100px;
}

#rebelsas_3mg {
	scroll-margin-top: 100px;
}

#rebelsas_7mg {
	scroll-margin-top: 100px;
}

#rebelsas_14mg {
	scroll-margin-top: 100px;
}

#fenazepam_tab_0-5mg_n50 {
	scroll-margin-top: 105px;
}

#fenazepam_tab_1mg_n50 {
	scroll-margin-top: 105px;
}

#fenazepam_tab_2-5mg_n50 {
	scroll-margin-top: 105px;
}

#fenazepam_tab_disperg_0-5mg_n50 {
	scroll-margin-top: 105px;
}

#fenazepam_tab_disperg_1mg_n50 {
	scroll-margin-top: 105px;
}

#fenazepam_r-r_1mg_1ml_n10 {
	scroll-margin-top: 92px;
}

#trankvezipam_tab_1mg_n50 {
	scroll-margin-top: 90px;
}

#fenzitat_tab_1mg_n50 {
	scroll-margin-top: 95px;
}

#elzepam_tab_1mg_n50 {
	scroll-margin-top: 92px;
}

#fenorelaksan_tab_1mg_n50 {
	scroll-margin-top: 92px;
}
	
#pharmacies {
	scroll-margin-top: 95px;
}

#delivery {
	scroll-margin-top: 95px;
}

#faq {
	scroll-margin-top: 95px;
}

#reviews {
	scroll-margin-top: 95px;
}

#instruction {
	scroll-margin-top: 95px;
}

#certificates {
	scroll-margin-top: 95px;
}

#analogs {
	scroll-margin-top: 95px;
}

#related {
	scroll-margin-top: 95px;
}
	
#block_1 {
	scroll-margin-top: 95px;
}

#block_2 {
	scroll-margin-top: 95px;
}

#block_3 {
	scroll-margin-top: 95px;
}

#block_4 {
	scroll-margin-top: 95px;
}

#block_5 {
	scroll-margin-top: 95px;
}

#block_6 {
	scroll-margin-top: 95px;
}

#block_7 {
	scroll-margin-top: 95px;
}

#block_8 {
	scroll-margin-top: 95px;
}

#block_9 {
	scroll-margin-top: 95px;
}

#block_10 {
	scroll-margin-top: 95px;
}

#block_11 {
	scroll-margin-top: 95px;
}

#block_12 {
	scroll-margin-top: 95px;
}

#block_13 {
	scroll-margin-top: 95px;
}

#block_14 {
	scroll-margin-top: 95px;
}

#block_15 {
	scroll-margin-top: 95px;
}

#block_16 {
	scroll-margin-top: 95px;
}

#block_17 {
	scroll-margin-top: 95px;
}

#block_18 {
	scroll-margin-top: 95px;
}

#block_19 {
	scroll-margin-top: 95px;
}

#block_20 {
	scroll-margin-top: 95px;
}

}

#button-top {
	display: inline-block;
	background-color: #bbbbbb;
	width: 50px;
	height: 50px;
	text-align: center;
	border-radius: 100px;
	position: fixed;
	bottom: 50px;
	right: 50px;
	transition: background-color .1s,opacity .1s, visibility .1s;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
}

i.bi.bi-chevron-up:before {
	font-size: 24px;
	color: #ffffff;
	margin-top: 12px;
}

#button-top:hover {
	cursor: pointer;
	background-color: #949494;
}

#button-top.show {
	opacity: 1;
	visibility: visible;
}

.source p {
	margin-top: 25px;
}

.source a {
	color: #2582df;
	text-decoration: none;
}

.source a:hover {
	color: #e24636;
	text-decoration: none;
}

.sort a {
	color: #2582df;
	text-decoration: none;
	border-bottom: 1px dotted #2582df;
	margin-left: 10px;
}

.sort a:hover {
	color: #e24636;
	text-decoration: none;
	border-bottom: 1px dotted #e24636;
	margin-left: 10px;
}

a[href^="tel:"] {
	color: #2582df;
	text-decoration: none;
}

a[href^="tel:"]:hover {
	color: #e24636;
	text-decoration: none;
}

.float-block {
	margin-top: 10px;
	margin-left: 85px;
	background-color: #f6f8f9;
	float: left;
	padding: 10px;
	width: 300px;
	height: 300px;
	display: block;
}

#float-block {
    margin-top: 105px;
	display: block;
}

p.description {
	font-size: 14px;
}

ul.error {
	margin-top: 20px;
	margin-bottom: 30px;
}

a.error {
	color: #2582df;
	text-decoration: none;
}

a.error:hover {
	color: #e24636;
	text-decoration: none;
}

.nav-rx {
	--bs-nav-link-padding-x: 1rem;
	--bs-nav-link-padding-y: 0.5rem;
	--bs-nav-link-font-weight: ;
	--bs-nav-link-color: var(--bs-link-color);
	--bs-nav-link-hover-color: var(--bs-link-hover-color);
	--bs-nav-link-disabled-color: #6c757d;
	display: flex;
	flex-wrap: wrap;
	padding-left: 0;
	margin-bottom: 20px;
	list-style: none;
	background-color: #f8f9fa;
	padding: 18px 0px 10px 20px;
	border-radius: 10px;
}

.nav-link-rx {
	display: block;
	padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
	font-size: var(--bs-nav-link-font-size);
	font-weight: var(--bs-nav-link-font-weight);
	color: var(--bs-nav-link-color);
	text-decoration: none;
	transition: color 0s ease-in-out,background-color 0s ease-in-out,border-color 0s ease-in-out;
}

a.nav-link-rx {
	color: #2582df;
	font-size: 15px;
	*border-bottom: 1px dotted #2582df;
	padding: 0;
	border-radius: 0;
	margin: 0 15px 10px 0;
	cursor: pointer;
}

a.nav-link-rx:hover {
	color: #e24636;
	cursor: pointer;
	*border-bottom: 1px dotted #e24636;
}

.b-search {
	font-size: 14px;
	margin-top: 3px;
	margin-bottom: 30px;
}

.b-search a {
	color: #2582df;
	font-size: 14px;
	cursor: pointer;
	border-bottom: 1px dotted #2582df;
	text-decoration: none;
}

.b-search a:hover {
	color: #e24636;
	cursor: pointer;
	border-bottom: 1px dotted #e24636;
	text-decoration: none;
}

span.city {
	color: #2582df;
	cursor: pointer;
}

span.city:hover {
	color: #e24636;
	cursor: pointer;
}

.top-menu {
	line-height: 20px;
}

.top-menu a {
	color: #2582df;
	font-size: 14px;
	text-decoration: none;
	padding-right: 10px;
    text-align: center;
}

@media screen and (max-width:800px) {
.top-menu a {
	font-size: 15px;
}
}

.top-menu a:hover {
	color: #e24636;
}

.nosology {
	margin: 32px 0 -10px 0;
}

.nosology p {
	font-weight: bold;
}

.nosology ul {
	padding: 0 !important;
}

.nosology li {
	color: #818181 !important;
	font-size: 14px;
	border: 1px solid #a8a8a8 !important;
	border-radius: 5px;
    padding: 5px 12px 7px 12px;
    cursor: pointer;
	margin-right: 3px;
	margin-bottom: 9px;
	display: inline-block;
}

.nosology li:hover {
	color: #e24636 !important;
	border: 1px solid #e24636 !important;
	cursor: pointer;
	border-radius: 5px;
    padding: 5px 12px 7px 12px;
	margin-right: 3px;
	margin-bottom: 9px;
	display: inline-block;
}

.bi-envelope::before {
  content: "\f32f";
  padding-right: 1px;
}

.symptoms {
	margin: 30px 0 0 0;
}

.symptoms p {
	font-weight: bold;
}

.symptoms ul {
	padding: 0 !important;
}

.symptoms li {
	color: #818181 !important;
	font-size: 14px;
	border: 1px solid #a8a8a8 !important;
	border-radius: 5px;
    padding: 5px 12px 7px 12px;
    cursor: pointer;
	margin-right: 3px;
	margin-bottom: 9px;
	display: inline-block;
}

.symptoms li:hover {
	color: #e24636 !important;
	border: 1px solid #e24636 !important;
	cursor: pointer;
	border-radius: 5px;
    padding: 5px 12px 7px 12px;
	margin-right: 3px;
	margin-bottom: 9px;
	display: inline-block;
}

.navbar-toggler {
	padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
	font-size: var(--bs-navbar-toggler-font-size);
	line-height: 1;
	color: var(--bs-navbar-color);
	background-color: transparent;
	border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
	border-radius: var(--bs-navbar-toggler-border-radius);
	transition: var(--bs-navbar-toggler-transition);
	border-color: #949494 !important;
}

.navbar-toggler:hover {
    *color: #2582df !important;
	*border-color: #2582df !important;
}

.navbar-toggler:focus {
	text-decoration: none;
	outline: 0;
	box-shadow: none !important;
	border: 1px solid #e24636 !important;
	color: #e24636 !important;
}

.bi.bi-list {
	display: inline-block;
	vertical-align: middle;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	font-size: 24px;
	*color: #2582df;
	width: 23px;
	height: 26px;
	border-radius: 5px !important;
}

.bi-list::before {
  content: "\f479";
}

.col-sm.sp.delivery {
	border: 1px solid #d6d6d6;
	padding: 12px 5px 10px 18px;
	margin: 0 10px 20px 0;
}

.col-sm.sp.pickup {
	border: 1px solid #d6d6d6;
	padding: 12px 5px 10px 18px;
	margin-bottom: 20px;
}

.col-sm.sp.delivery p {
	margin-bottom: 5px;
}

.col-sm.sp.pickup p {
	margin-bottom: 5px;
}

.col-sm.sp.delivery.bold {
	margin-bottom: 25px;
}

.col-sm.sp.pickup.bold {
	margin-bottom: 25px;
}

p.delivery {
	font-weight: bold;
	margin-bottom: 5px;
}

p.pickup {
	font-weight: bold;
	margin-bottom: 5px;
}

i.bi.bi-courier::before {
	content: "\f5ea";
	color: #000000;
}

i.bi.bi-pickup::before {
	content: "\f3e8";
	color: #000000;
}

#certificates {
	margin-bottom: 15px;
}

@media screen and (min-width:1000px) {
.container.pharmacy {
	padding-right: calc(var(--bs-gutter-x) * .08) !important;
}
}

.col-sm.sp.pharmacy {
	border: 1px solid #d6d6d6;
	padding: 17px 5px 10px 18px;
	margin: 0 10px 12px 0;
}

.col-sm.sp.pharmacy p {
	margin-bottom: 10px;
}

p.address {
	font-size: 16px;
    font-weight: bold;
	color: #2582df;
}

span.rating {
	font-size: 13px;
}

i.bi.bi-geo-alt-2::before {
	content: "\f3e8";
	color: var(--bs-body-color);
}

i.bi.bi-check-lg::before {
	content: "\f633";
	color: #1aaf8b;
}

.footer a {
	text-decoration: none;
	color: rgba(var(--bs-body-color-rgb),.75) !important
}

.footer a:hover {
	text-decoration: none;
	color: #e24636 !important;
}

.social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #6c757d;
  background: rgba(108, 117, 125, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social a:hover {
  color: #fff;
  background: var(--primary-color);
  transform: translateY(-3px);
}

.social a i {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .social {
    justify-content: center;
    margin-top: 1rem;
  }
  
  section.d-flex {
    flex-direction: column;
    text-align: center;
  }
  
  .me-5 {
    margin-right: 0 !important;
    margin-bottom: 1rem;
  }
}

.f-col {
  background-color: rgba(0, 0, 0, 0.05);
}

a.privacy {
  color: #2582df;
}

a.privacy:hover {
  color: #e24636;
}

.privacy h1 {
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 15px;
}

.privacy h2 {
  font-size: 21px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 15px;
}

p.info {
  padding: 16px 18px 18px 18px;
  font-size: 16px;
  background-color: #fbe2e0;
  border-radius: 10px;
  margin-bottom: 20px;
}

i.bi-exclamation-triangle-fill {
  font-size: 17px;
  color: #e24636;
}

p.card-price {
  font-weight: bold;
  font-size: 17px;
}

.related {
  padding: 10px;
}

.card-group {
  margin-bottom: 15px;
}

img.related {
  *padding: 0 15px 0 15px;
}

img.related-1 {
  *padding: 0 21px 0 15px;
  width: 75%;
}

img.related-2 {
  *padding: 0px;
  width: 85%;
}

img.related-3 {
  *margin-bottom: 25px;
  width: 95%;
}

img.related-4 {
  *margin-bottom: 25px;
  width: 80%;
}

img.related-5 {
  *margin-bottom: 25px;
  width: 77%;
}

img.related-6 {
  *margin-bottom: 25px;
  width: 94%;
}

p.manufacturer {
  font-size: 14px;
  margin-bottom: 5px;
}

p.substance {
  font-size: 14px;
}

a.button-instruction {
  background: #f9f9f9;
  padding: 10px 24px 12px 24px;
  margin: 15px 5px 0 0;
  display: inline-block;
  color: var(--bs-body-color);
  text-decoration: none;
  border-radius: 8px;
}

a.button-application {
  background: #f9f9f9;
  padding: 10px 24px 12px 24px;
  margin: 15px 5px 0 0;
  display: inline-block;
  color: var(--bs-body-color);
  text-decoration: none;
  border-radius: 8px;
}

a.button-instruction:hover {
  color: #e24636;
}

a.button-application:hover {
  color: #e24636;
}

span.ozempik_1-5 {
  color: #d22f1e;
}

span.ozempik_3 {
  color: #107071;
}

/* Icon styling */
.bi {
  display: inline-block;
  vertical-align: -0.125em;
  fill: currentColor;
}

.bi-cart,
.bi-heart,
.bi-geo-alt,
.bi-clock,
.bi-envelope,
.bi-send,
.bi-check-square,
.bi-list,
.bi-star,
.bi-star-fill,
.bi-star-half {
  margin-right: 0.5rem;
}

/* Stock indicator icon */
span.stock .bi {
  color: var(--success-color);
  font-size: 1.1em;
}

/* Navigation icons */
.nav-link .bi {
  font-size: 1.2em;
  vertical-align: -0.2em;
}

/* Cart and favorites icons */
.сart-top .bi {
  font-size: 1.25em;
  color: var(--primary-color);
}

.сart-top:hover .bi {
  color: var(--secondary-color);
}

/* Rating stars */
.rating .bi-star-fill,
.rating .bi-star-half,
.rating .bi-star {
  color: #F6AD55;
  font-size: 1em;
}

/* Success/check icons */
.bi-check-square,
.bi-check2 {
  color: var(--success-color);
}

/* Error/warning icons */
.bi-x,
.bi-exclamation-triangle {
  color: var(--secondary-color);
}

/* Delivery icons */
.bi-truck-2,
.bi-credit-card-2-back-2 {
  color: var(--primary-color);
  font-size: 1.25em;
  margin-right: 0.5rem;
}

.modal-content {
  border-radius: var(--border-radius);
  border: none;
  box-shadow: var(--box-shadow);
}

.modal-header {
  border-bottom: none;
  padding: 1.5rem 1.5rem 0.5rem;
}

.modal-title {
  font-weight: 600;
  color: var(--text-primary);
}

.modal-body {
  padding: 1.5rem;
}

.modal-body .form-label {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.modal-body .form-control {
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  transition: all 0.3s ease;
}

.modal-body .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.1);
}

.modal-body select.form-control {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  appearance: none;
}

.modal-body .order-button {
  margin-top: 1rem;
  padding: 1rem;
  font-weight: 600;
  font-size: 1rem;
}

.btn-close:focus {
  box-shadow: none;
  opacity: 0.75;
}

/* Анимация появления модального окна */
.modal.fade .modal-dialog {
  transform: scale(0.95);
  transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
  transform: scale(1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0d6efd;
    background: linear-gradient(135deg, #e6f0ff 0%, #ffffff 100%);
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-card i {
        font-size: 1.75rem;
        width: 56px;
        height: 56px;
    }
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.delivery-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.delivery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.delivery-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.delivery-icon i {
    font-size: 2rem;
    color: white;
}

.delivery-content h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.delivery-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.delivery-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.delivery-list li i {
    color: var(--primary-color);
    font-size: 1rem;
}

.delivery-notes {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.delivery-note {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 191, 166, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.delivery-note i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.delivery-note p {
    margin: 0;
    color: var(--text-primary);
}

.delivery-disclaimer {
    background: rgba(255, 75, 140, 0.1);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.delivery-disclaimer p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
}

.delivery-disclaimer i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .delivery-card {
        padding: 1.25rem;
    }
    
    .delivery-icon {
        width: 56px;
        height: 56px;
    }
    
    .delivery-icon i {
        font-size: 1.75rem;
    }
    
    .delivery-note {
        flex: 1 1 100%;
    }
}

.banner-container {
    max-width: 1280px;
    margin: 0 auto 2rem;
    padding: 0 24px;
    position: relative;
}

.banner-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.banner-label {
    position: absolute;
    top: 20px;
    right: 44px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
    z-index: 1;
}

@media (max-width: 768px) {
    .banner-container {
        padding: 0 16px;
        margin-bottom: 1.5rem;
    }
    
    .banner-label {
        right: 36px;
        font-size: 1rem;
        padding: 6px 12px;
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-brand:hover {
    color: var(--secondary-color);
}

.navbar-brand i {
    font-size: 32px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.navbar-brand:hover i {
    transform: scale(1.1);
}

@media screen and (max-width:800px) {
    .row-head {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width:600px) {
    .col-head {
        width: 100%;
        text-align: center;
    }
}

@media screen and (min-width:1000px) {
    .container.pharmacy {
        width: 75%;
    }
}

.telegram-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
    padding: 0 15px;
}

.telegram-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 280px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.telegram-button i {
    font-size: 24px;
    margin-right: 12px;
}

.channel-button {
    background: #27A7E7;
    color: white;
}

.support-button {
    background: #2AABEE;
    color: white;
}

.telegram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: white;
}

.channel-button:hover {
    background: #229ad6;
}

.support-button:hover {
    background: #229ad6;
}

@media (max-width: 768px) {
    .telegram-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin: 30px 0;
    }
    
    .telegram-button {
        width: 100%;
        max-width: 320px;
    }
}


