@charset "UTF-8";
.flex-row {
  display: flex;
}
.flex-row_center {
  justify-content: center;
}
.flex-row_between {
  justify-content: space-between;
}

.w-50 {
  width: 50%;
}
.w-100 {
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #1DB6A3;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: rgb(21.990521327, 138.009478673, 123.6018957346);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

:focus-visible {
  outline: 2px solid #1DB6A3;
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1E3A3A;
}

h1 {
  font-size: 48px;
}
@media (max-width: 767.98px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 32px;
}
@media (max-width: 767.98px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 24px;
}
@media (max-width: 767.98px) {
  h3 {
    font-size: 18px;
  }
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
  font-weight: 600;
}

h6 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: #1DB6A3;
}

.text-accent {
  color: #E63946;
}

.text-muted {
  color: rgb(127.5, 127.5, 127.5);
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.icon {
  width: 26px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
}
.icon-cart--white {
  background-image: url(/image/cart_icon--white.svg);
}
.icon-cart--dark {
  background-image: url(/image/cart_icon--dark.svg);
}

.header {
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1020;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  width: 100%;
}
@media (max-width: 991.98px) {
  .header-container {
    padding: 10px 20px;
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 575.98px) {
  .header-container {
    padding: 8px 15px 13px 15px;
  }
}
.header-top-row {
  display: none;
}
@media (max-width: 991.98px) {
  .header-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
  }
}
.header-bottom-row {
  display: none;
}
@media (max-width: 1599.98px) {
  .header-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
  }
}
.header-mobile-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1599.98px) {
  .header-left {
    display: none;
  }
}
.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1599.98px) {
  .header-right {
    display: none;
  }
}

.header-logo .logo-text {
  font-size: 32px;
  font-weight: 700;
  color: #E63946;
  text-decoration: none;
  font-style: italic;
}
.header-logo .logo-img {
  max-height: 77px;
  width: auto;
  transition: all 0.3s ease;
}
@media (max-width: 1599.98px) {
  .header-logo .logo-img {
    max-height: 57px;
  }
}
.header-logo .logo-img:hover {
  transform: scale(1.05);
}
.header-logo .logo-img.mobile {
  max-height: 40px;
}

@media (max-width: 1599.98px) {
  .header-nav {
    display: none;
  }
}
.header-nav ul {
  display: flex;
  list-style: none;
  gap: 50px;
}
.header-nav a {
  color: #333333;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}
.header-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #1DB6A3;
  transition: all 0.3s ease;
}
.header-nav a:hover {
  color: #1DB6A3;
}
.header-nav a:hover::after {
  width: 100%;
}

.header-contacts .phone {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  gap: 2px;
}
.header-contacts .phone a {
  color: #1E3A3A;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
}
.header-contacts .phone a:hover {
  color: #1DB6A3;
}

.header-social {
  display: flex;
  gap: 8px;
}
.header-social .social-link {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 14px;
  transition: all 0.3s ease;
}
.header-social .social-link .icon {
  width: 32px;
  height: 32px;
}
.header-social .social-link:hover {
  background: rgb(21.990521327, 138.009478673, 123.6018957346);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
}
.breadcrumb i {
  color: #4B5E71;
  margin: 0px 5px;
}
.breadcrumb i:last-child {
  display: none;
}
.breadcrumb-item a {
  color: #4B5E71;
}

.header-cart {
  position: relative;
  margin-right: 40px;
}
@media (max-width: 1599.98px) {
  .header-cart {
    margin-right: 20px;
  }
}
.header-cart .cart-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #333333;
  transition: all 0.3s ease;
}
.header-cart .cart-link:hover {
  background: #F8F9FA;
}
.header-cart .cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #1DB6A3;
  color: #FFFFFF;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
@media (max-width: 1599.98px) {
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #333333;
  transition: all 0.3s ease;
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-header {
  display: none;
}
@media (max-width: 1599.98px) {
  .mobile-header {
    display: block;
    padding: 8px 15px 13px 15px;
  }
}
.mobile-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-header-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1050;
  transition: left all 0.3s ease;
  padding: 20px;
}
.mobile-menu.active {
  left: 0;
}
.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E0E0E0;
}
.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: #1E3A3A;
  font-size: 24px;
  cursor: pointer;
}
.mobile-menu-close:hover {
  color: #E63946;
}
.mobile-menu ul li {
  margin-bottom: 0;
  border-bottom: 1px solid #E0E0E0;
}
.mobile-menu ul li:last-child {
  border-bottom: none;
}
.mobile-menu ul a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  color: #333333;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
}
.mobile-menu ul a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #1DB6A3;
  border-top: 2px solid #1DB6A3;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.mobile-menu ul a:hover {
  color: #1DB6A3;
}

.header-search {
  flex: 1;
  max-width: 600px;
  margin: 0 40px;
  display: flex;
  align-items: center;
  border: 1.5px solid #E0E0E0;
  border-radius: 12px;
  overflow: hidden;
  background: #FFFFFF;
  transition: all 0.3s ease;
}
.header-search:focus-within {
  border-color: #1DB6A3;
  box-shadow: 0 0 0 3px rgba(29, 182, 163, 0.1);
}
.header-search__input {
  flex: 1;
  padding: 9px 16px;
  border: none;
  outline: none;
  font-size: 14px;
  color: #333333;
  background: transparent;
  min-width: 0;
}
.header-search__input::placeholder {
  color: rgb(122.7659574468, 145, 167.2340425532);
}
.header-search__btn {
  padding: 9px 14px;
  background: #1DB6A3;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  flex-shrink: 0;
}
.header-search__btn:hover {
  background: rgb(21.990521327, 138.009478673, 123.6018957346);
}
@media (max-width: 1599.98px) {
  .header-search {
    display: none;
  }
}

.mobile-menu-search {
  padding: 0 0 16px 0;
  margin-bottom: 10px;
  border-bottom: 1px solid #E0E0E0;
}
.mobile-menu-search form {
  display: flex;
  align-items: center;
  border: 1.5px solid #E0E0E0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.mobile-menu-search form:focus-within {
  border-color: #1DB6A3;
}
.mobile-menu-search input[type=text] {
  flex: 1;
  padding: 10px 16px;
  border: none;
  outline: none;
  font-size: 14px;
  color: #333333;
  background: transparent;
  min-width: 0;
}
.mobile-menu-search input[type=text]::placeholder {
  color: rgb(122.7659574468, 145, 167.2340425532);
}
.mobile-menu-search button {
  padding: 10px 14px;
  background: #1DB6A3;
  color: #FFFFFF;
  flex-shrink: 0;
  font-size: 14px;
  transition: all 0.3s ease;
}
.mobile-menu-search button:hover {
  background: rgb(21.990521327, 138.009478673, 123.6018957346);
}

@media (max-width: 991.98px) {
  .header-social {
    display: none;
  }
}
.prefooter {
  background-color: #032625;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: white;
  padding: 32px 0px;
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .prefooter {
    flex-direction: column;
  }
}
.prefooter p {
  margin: 0;
  font-size: 20px;
}
@media (max-width: 767.98px) {
  .prefooter p {
    margin-bottom: 10px;
  }
}

.footer {
  background: #2E2423;
  color: #FFFFFF;
  padding: 60px 0 20px;
}
.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767.98px) {
  .footer-container {
    padding: 0 20px;
  }
}
.footer-logo {
  margin-bottom: 1rem;
}
.footer-logo .logo-text {
  font-size: 28px;
  font-weight: 700;
  color: #E63946;
  text-decoration: none;
  font-style: italic;
}
.footer-desc {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 18px;
}
.footer-section .phone-link {
  color: #1DB6A3;
  font-size: 20px;
  font-weight: bold;
}
.footer-section ul li {
  margin-bottom: 0.5rem;
}
.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}
.footer-section ul li a:hover {
  color: #1DB6A3;
}
.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.footer-contacts p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contacts p i {
  color: #1DB6A3;
  width: 16px;
}
.footer-contacts p a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}
.footer-contacts p a:hover {
  color: #1DB6A3;
}
.footer-bottom {
  border-top: 1px solid rgb(64.7727272727, 125.2272727273, 125.2272727273);
  padding-top: 20px;
}
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767.98px) {
  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.footer-legal {
  display: flex;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .footer-legal {
    justify-content: center;
  }
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all 0.3s ease;
}
.footer-legal a:hover {
  color: #1DB6A3;
}
.footer-social {
  display: flex;
  gap: 15px;
  margin-bottom: 1.5rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgb(47.3863636364, 91.6136363636, 91.6136363636);
  border-radius: 50%;
  color: #FFFFFF;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: #1DB6A3;
  transform: translateY(-2px);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.section {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

.btn-consult {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 20px 0 20px 0;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-consult:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.btn-consult:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(29, 182, 163, 0.3);
}
.btn-consult {
  background: linear-gradient(135deg, #00E5E1 0%, #00A6A3 100%);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--primary-color);
  border-radius: 20px 0 20px 0;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #00E5E1 0%, #00A6A3 100%);
}
.btn-consult:hover {
  background: linear-gradient(135deg, #159A89 0%, #0F8275 100%);
  color: #FFFFFF;
}
.btn-consult {
  font-size: 16px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 20px 0 20px 0;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-cta:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.hero-cta:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(29, 182, 163, 0.3);
}
.hero-cta {
  background: #E63946;
  color: #FFFFFF;
}
.hero-cta:hover {
  background: rgb(209.5426008969, 26.4573991031, 40.2152466368);
  color: #FFFFFF;
}
.hero-cta {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 20px 0 20px 0;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-submit:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.btn-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(29, 182, 163, 0.3);
}
.btn-submit {
  background: #1E3A3A;
  color: #FFFFFF;
  padding: 15px 30px;
  gap: 10px;
}
.btn-submit:hover {
  background: rgb(12.6136363636, 24.3863636364, 24.3863636364);
  color: #FFFFFF;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 20px 0 20px 0;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(29, 182, 163, 0.3);
}
.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 20px 0 20px 0;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn--primary:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.btn--primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(29, 182, 163, 0.3);
}
.btn--primary {
  background: linear-gradient(135deg, #00E5E1 0%, #00A6A3 100%);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--primary-color);
  border-radius: 20px 0 20px 0;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #00E5E1 0%, #00A6A3 100%);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #159A89 0%, #0F8275 100%);
  color: #FFFFFF;
}
.btn--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 20px 0 20px 0;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn--secondary:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.btn--secondary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(29, 182, 163, 0.3);
}
.btn--secondary {
  background: #E63946;
  color: #FFFFFF;
}
.btn--secondary:hover {
  background: rgb(209.5426008969, 26.4573991031, 40.2152466368);
  color: #FFFFFF;
}
.btn--outline {
  background: transparent;
  color: #1DB6A3;
  border: 2px solid #1DB6A3;
}
.btn--outline:hover {
  background: #1DB6A3;
  color: #FFFFFF;
}
.btn--sm {
  padding: 8px 16px;
  font-size: 14px;
}
.btn--lg {
  padding: 16px 32px;
  font-size: 18px;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}
.btn:disabled:hover {
  transform: none !important;
}

@media (max-width: 767.98px) {
  .btn-consult {
    font-size: 12px;
  }
  .hero-cta {
    padding: 12px 24px;
    font-size: 14px;
  }
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #1E3A3A;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #1DB6A3;
  box-shadow: 0 0 0 3px rgba(29, 182, 163, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
  color: #999999;
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-container {
  width: 100%;
  display: flex;
  padding: 50px 35px;
  background-size: contain;
  background-repeat: no-repeat;
}
.form-container .consult-form {
  display: flex;
  justify-content: space-between;
}
.form-container .consult-form input {
  height: 60px;
}
.form-container .consult-form .btn-submit {
  width: 32%;
  padding: 0;
}
.form-container .consult-form .form-group {
  width: 32%;
  margin: 0;
}

.contact-form {
  background-image: url(/image/contact/contact_bg.jpg);
  background-size: cover;
  background-position: center;
}
.contact-form .btn-submit {
  background: linear-gradient(135deg, #FC506C 0%, #DF062A 100%);
}
@media (max-width: 767.98px) {
  .contact-form {
    background-image: url(/image/contact/contact_bg.jpg);
    border-radius: 16px;
  }
  .contact-form .consult-form {
    flex-direction: column;
  }
  .contact-form .consult-form .form-group {
    width: 100%;
    margin-bottom: 16px;
  }
  .contact-form .consult-form .btn-submit {
    width: 100%;
    padding: 17px 0px;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal,
.modal-content {
  position: relative;
  transform: scale(0.8);
  background: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.modal-overlay.active .modal,
.modal-overlay.active .modal-content {
  transform: scale(1);
}
.modal h2,
.modal-content h2 {
  color: #1E3A3A;
  margin-bottom: 0.5rem;
  text-align: center;
  font-size: 24px;
}
.modal p,
.modal-content p {
  color: #666666;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-align: center;
}
.modal-header,
.modal-content-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.modal-header h3,
.modal-content-header h3 {
  color: #1E3A3A;
  margin-bottom: 0.5rem;
}
.modal-header p,
.modal-content-header p {
  color: #666666;
  line-height: 1.5;
  margin: 0.5rem 0;
}
.modal-close,
.modal-content-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  color: rgb(127.5, 127.5, 127.5);
  font-size: 18px;
  cursor: pointer;
}
.modal-close:hover,
.modal-content-close:hover {
  color: #E63946;
}

.consult-form .form-group {
  position: relative;
  margin-bottom: 1.5rem;
}
.consult-form .form-group input, .consult-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.consult-form .form-group input:focus, .consult-form .form-group textarea:focus {
  outline: none;
  border-color: #1DB6A3;
  box-shadow: 0 0 0 3px rgba(29, 182, 163, 0.1);
}
.consult-form .form-group input::placeholder, .consult-form .form-group textarea::placeholder {
  color: #999999;
}
.consult-form .form-group input, .consult-form .form-group textarea {
  padding-left: 45px;
}
.consult-form .form-group input::placeholder, .consult-form .form-group textarea::placeholder {
  color: #999;
}
.consult-form .form-group textarea {
  min-height: 100px;
  resize: vertical;
  padding-left: 16px;
}
.consult-form .form-group i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #1DB6A3;
  font-size: 14px;
  z-index: 1;
}
.consult-form .form-note {
  color: #666666;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  text-align: center;
  background: rgba(29, 182, 163, 0.05);
  padding: 15px;
  border-radius: 8px;
}
.consult-form .btn-submit {
  width: 100%;
  justify-content: center;
}
.consult-form .btn-submit i {
  margin-left: 8px;
  transition: all 0.3s ease;
}
.consult-form .btn-submit:hover i {
  transform: translateX(4px);
}

.mobile-contacts {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.mobile-contacts a {
  color: #333333;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 0;
}
.mobile-contacts a:hover {
  color: #1DB6A3;
}
.mobile-contacts .btn-consult.mobile {
  margin-top: 10px;
  width: 100%;
  justify-content: center;
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  background: #28A745;
  color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1070;
  transform: translateX(100%);
  transition: all 0.3s ease;
}
.notification.show {
  transform: translateX(0);
}
.notification.error {
  background: #DC3545;
}
.notification.warning {
  background: #FFC107;
  color: #333333;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767.98px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 575.98px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-item {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.product-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.product-item {
  text-align: center;
  padding: 15px;
  cursor: pointer;
}
.product-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.product-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin: 0 auto 0.5rem;
  border-radius: 8px;
}
.product-item h3 {
  font-size: 14px;
  font-weight: 600;
  color: #1E3A3A;
  margin-bottom: 0.25rem;
}
.product-item p {
  font-size: 12px;
  color: #666666;
  line-height: 1.3;
  margin-bottom: 0;
}

.btn-add-to-cart {
  transition: transform 0.2s ease;
}
.btn-add-to-cart:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.product-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease;
  color: #FFFFFF;
  font-weight: 500;
}
.product-notification--success {
  background: #28A745;
}
.product-notification--error {
  background: #DC3545;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
.product-card {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-color: #1DB6A3;
}
.product-card .product-thumb {
  position: relative;
  width: 100%;
  padding-top: 75%;
  background: #F8F9FA;
  overflow: hidden;
}
.product-card .product-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}
.product-card .product-thumb .product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #E63946;
  color: #FFFFFF;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}
.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}
.product-card .product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card .product-info .product-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}
.product-card .product-info .product-name a {
  color: black;
  height: 50px;
  display: block;
}
.product-card .product-info .product-name:hover {
  color: #1DB6A3;
}
.product-card .product-info .product-model {
  color: #999;
  font-size: 12px;
  margin-bottom: 12px;
}
.product-card .product-info .product-description {
  color: #333333;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.product-card .product-info .product-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-card .product-info .product-price .price-current {
  color: #095351;
  font-size: 18px;
  font-weight: 700;
}
.product-card .product-info .product-price .price-new {
  color: #E63946;
  font-size: 24px;
  font-weight: 700;
}
.product-card .product-info .product-price .price-old {
  color: #999;
  font-size: 14px;
  text-decoration: line-through;
}
.product-card .product-info .product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}
.product-card .product-info .product-footer .btn-add-cart {
  padding: 10px 20px;
  background: #1DB6A3;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-card .product-info .product-footer .btn-add-cart i {
  font-size: 14px;
}
.product-card .product-info .product-footer .btn-add-cart:hover {
  background: rgb(21.990521327, 138.009478673, 123.6018957346);
  transform: translateY(-2px);
}
.product-card .product-info .product-footer .btn-add-cart:active {
  transform: translateY(0);
}
.product-card .product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.product-card .product-rating .stars {
  display: flex;
  gap: 2px;
}
.product-card .product-rating .stars i {
  font-size: 12px;
  color: #ffc107;
}
.product-card .product-rating .stars i.empty {
  color: #ddd;
}
.product-card .product-rating .rating-count {
  color: #999;
  font-size: 12px;
}

.products-grid .product-card .product-image a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.products-grid .product-card .product-actions {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.products-grid .product-card .product-actions a {
  background: #1DB6A3;
  padding: 9px 17px;
  color: white;
  border-radius: 10px;
}
.products-grid .product-card .product-actions .action-btn {
  background-color: #1DB6A3;
  padding: 8px 13px;
  border-radius: 10px;
}

.products-list .product-card {
  flex-direction: row;
}
.products-list .product-card .product-thumb {
  width: 200px;
  padding-top: 0;
  height: 200px;
  flex-shrink: 0;
}
.products-list .product-card .product-info .product-description {
  -webkit-line-clamp: 4;
}

@media (max-width: 767.98px) {
  .products-list .product-card {
    flex-direction: column;
  }
  .products-list .product-card .product-thumb {
    width: 100%;
    padding-top: 75%;
    height: auto;
  }
}
.advantages-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 130px;
  padding-top: 50px;
}
.advantages-container .section-header {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.advantages-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
@media (max-width: 767.98px) {
  .advantages-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 767.98px) {
  .advantages-list-container {
    background-image: none !important;
  }
}

.advantages-list-image {
  width: 100%;
  padding-bottom: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .advantages-list-image {
    display: none;
  }
}

.advantages-list-vertical {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 100px;
  width: 70%;
}
@media (max-width: 767.98px) {
  .advantages-list-vertical {
    gap: 20px;
    width: 100%;
  }
}

.advantage-item {
  display: flex;
  gap: 20px;
  background-color: #F1FCFC;
  padding: 21px 15px;
  border-radius: 20px 0px 20px 0px;
}
@media (max-width: 767.98px) {
  .advantage-item {
    gap: 15px;
  }
}
.advantage-item .advantage-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 24px;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .advantage-item .advantage-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}
.advantage-item .advantage-icon .icon {
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
}
.advantage-item .advantage-content {
  flex: 1;
}
.advantage-item .advantage-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #095351;
  margin-bottom: 0.25rem;
}
@media (max-width: 767.98px) {
  .advantage-item .advantage-content h3 {
    font-size: 16px;
  }
}
.advantage-item .advantage-content p {
  color: black;
  line-height: 1.3;
  margin-bottom: 0;
  margin-top: 20px;
  font-size: 15px;
}

@media (max-width: 767.98px) {
  .whywe.mobile-column {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767.98px) {
  .whywe.mobile-column .section_bg {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .about.flex-row.mobile-column {
    flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .about.flex-row.mobile-column .section_bg {
    width: 100%;
    padding-bottom: 100%;
  }
}

@media (max-width: 767.98px) {
  .advantages-container {
    width: 100%;
    padding: 0px 15px;
    margin-top: 20px;
  }
}

.about-container {
  padding-left: 130px;
  padding-top: 50px;
  padding-bottom: 120px;
  width: 620px;
  font-size: 16px;
  font-family: Montserrat, sans-serif;
}
@media (max-width: 767.98px) {
  .about-container {
    width: 100%;
    padding: 0px 15px;
    margin-top: 20px;
  }
}
.about-container h2 {
  color: #095351;
  font-size: 33px;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .about-container h2 {
    font-size: 26px;
  }
}
.about-container p {
  line-height: 1.5;
}
.about-container p.question {
  color: #1DB6A3;
  text-transform: uppercase;
  margin: 0;
  font-weight: 600;
}
.about-container .list {
  list-style-type: disc; /* стандартная точка */
  padding-left: 20px; /* отступ слева */
  margin: 0; /* убираем лишние отступы */
  color: #2e2e2e; /* цвет текста */
  /* размер шрифта */
  line-height: 1.5; /* межстрочный интервал */
}
.about-container .list li {
  margin-bottom: 8px; /* расстояние между пунктами */
}

.rectangle {
  width: 100%;
  margin: auto;
  height: 65%;
  position: absolute;
  background: #F1FCFC;
  z-index: -1;
}
@media (max-width: 767.98px) {
  .rectangle {
    display: none;
  }
}

.contact-row {
  display: flex;
  padding: 100px 0px;
}
@media (max-width: 767.98px) {
  .contact-row {
    flex-direction: column;
  }
}
.contact-row iframe {
  width: 100%;
}
.contact-row .contact-info {
  width: 50%;
}
@media (max-width: 767.98px) {
  .contact-row .contact-info {
    width: 100%;
  }
}
.contact-row .contact-info h2 {
  margin-bottom: 50px;
}
.contact-row .contact-info-row {
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
  align-items: baseline;
}
.contact-row .contact-info-row p {
  width: 60%;
}
@media (max-width: 767.98px) {
  .contact-row .contact-info-row p {
    width: 100%;
  }
}

.blog-latest {
  padding: 80px 0;
  background-color: var(--light-gray);
  position: relative;
}
@media (max-width: 767.98px) {
  .blog-latest {
    margin-top: 100px;
  }
}
.blog-latest__header {
  text-align: left;
  margin-bottom: 60px;
}
.blog-latest__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 0;
}
.blog-latest__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.blog-latest__footer {
  text-align: center;
}
.blog-latest__view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--primary-color);
  border-radius: 20px 0 20px 0;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #00E5E1 0%, #00A6A3 100%);
}
.blog-latest__view-all:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  color: white;
}
.blog-latest__view-all i {
  transition: transform 0.3s ease;
}
.blog-latest__view-all:hover i {
  transform: translateX(5px);
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .blog-card:not(:first-child) {
    display: none;
  }
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.blog-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-card__image a {
  display: block;
  height: 100%;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-card__image:hover img {
  transform: scale(1.05);
}
.blog-card__content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__meta {
  margin-bottom: 15px;
}
.blog-card__date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1DB6A3;
  font-size: 0.9rem;
  font-weight: 500;
}
.blog-card__date i {
  color: #1DB6A3;
}
.blog-card__title {
  margin-bottom: 15px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}
.blog-card__title a {
  color: var(--dark-green);
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-card__title a:hover {
  color: var(--primary-color);
}
.blog-card__excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .blog-latest {
    padding: 60px 0;
  }
  .blog-latest__title {
    font-size: 2rem;
  }
  .blog-latest__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .blog-latest__header {
    margin-bottom: 40px;
  }
  .blog-card__image {
    height: 180px;
  }
  .blog-card__content {
    padding: 20px;
  }
  .blog-card__title {
    font-size: 1.15rem;
  }
}
@media (max-width: 480px) {
  .blog-latest {
    padding: 40px 0;
  }
  .blog-latest__view-all {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  .blog-card__image {
    height: 160px;
  }
  .blog-card__content {
    padding: 15px;
  }
}
.testimonials {
  padding: 80px 0;
  position: relative;
}
@media (max-width: 767.98px) {
  .testimonials {
    margin-top: 100px;
  }
}
.testimonials__header {
  text-align: left;
  margin-bottom: 60px;
}
.testimonials__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 15px;
}
.testimonials__subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.testimonials__footer {
  text-align: center;
}
.testimonials__view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--primary-color);
  border-radius: 20px 0 20px 0;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #00E5E1 0%, #00A6A3 100%);
}
.testimonials__view-all:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  color: white;
}
.testimonials__view-all i {
  transition: transform 0.3s ease;
}
.testimonials__view-all:hover i {
  transform: translateX(5px);
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 30px 30px 150px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.testimonial-card:before {
  content: url(/image/quotes.svg);
  position: absolute;
  top: -40px;
  right: 20px;
  font-size: 4rem;
  color: var(--primary-color);
  font-family: Georgia, serif;
  line-height: 1;
  width: 34px;
  height: 34px;
}
.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.testimonial-card__rating {
  display: flex;
  gap: 3px;
}
.testimonial-card__rating .fa-star {
  color: #ffc107;
  font-size: 0.9rem;
}
.testimonial-card__rating .far.fa-star {
  color: #e0e0e0;
}
.testimonial-card__date {
  font-size: 0.85rem;
  color: #1DB6A3;
  font-weight: 500;
}
.testimonial-card__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.testimonial-card__name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 5px;
}
.testimonial-card__position {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card__text {
  flex-grow: 1;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-top: 24px;
  font-style: normal;
  position: relative;
}
.testimonial-card__text:before, .testimonial-card__text:after {
  color: var(--primary-color);
  font-size: 1.2em;
  font-weight: bold;
}
.testimonial-card__text:before {
  content: '"';
  margin-right: 5px;
}
.testimonial-card__text:after {
  content: '"';
  margin-left: 5px;
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }
  .testimonials__title {
    font-size: 2rem;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .testimonials__header {
    margin-bottom: 40px;
  }
  .testimonial-card {
    padding: 25px;
  }
}
@media (max-width: 768px) and (max-width: 767.98px) {
  .testimonial-card:not(:first-child) {
    display: none;
  }
}
@media (max-width: 768px) {
  .testimonial-card__header {
    margin-bottom: 15px;
  }
  .testimonial-card__name {
    font-size: 1.1rem;
  }
  .testimonial-card__text {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .testimonials {
    padding: 40px 0;
  }
}
@media (max-width: 480px) and (max-width: 767.98px) {
  .testimonials {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .testimonials__view-all {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  .testimonial-card {
    padding: 20px;
  }
  .testimonial-card:before {
    font-size: 3rem;
    top: -5px;
  }
}
.events {
  padding: 80px 0;
  position: relative;
}
.events__header {
  text-align: left;
  margin-bottom: 60px;
}
.events__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 15px;
}
.events__subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
}
.events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.events__footer {
  text-align: center;
}
.events__view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--accent-color);
  border-radius: 20px 0 20px 0;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #00E5E1 0%, #00A6A3 100%);
}
.events__view-all:hover {
  transform: translateY(-2px);
  color: white;
}
.events__view-all i {
  transition: transform 0.3s ease;
}
.events__view-all:hover i {
  transform: translateX(5px);
}

.event-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .event-card:not(:first-child) {
    display: none;
  }
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.event-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.event-card__image a {
  display: block;
  height: 100%;
}
.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.event-card__image:hover img {
  transform: scale(1.05);
}
.event-card__content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.event-card__date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1DB6A3;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  padding: 8px 12px;
  border-radius: 8px;
  width: fit-content;
}
.event-card__date i {
  color: var(--primary-color);
}
.event-card__title {
  margin-bottom: 15px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}
.event-card__title a {
  color: var(--dark-green);
  text-decoration: none;
  transition: color 0.3s ease;
}
.event-card__title a:hover {
  color: var(--primary-color);
}
.event-card__location {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.event-card__location i {
  color: var(--accent-color);
  margin-top: 2px;
  flex-shrink: 0;
}
.event-card__footer {
  margin-top: auto;
}
.event-card__btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.event-card__btn:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  color: white;
}

.btn-accent {
  background: var(--accent-color);
}
@media (max-width: 768px) {
  .events {
    padding: 60px 0;
    height: auto;
  }
  .events__title {
    font-size: 2rem;
  }
  .events__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .events__header {
    margin-bottom: 40px;
  }
  .event-card__image {
    height: 180px;
  }
  .event-card__content {
    padding: 20px;
  }
  .event-card__title {
    font-size: 1.15rem;
  }
}
@media (max-width: 480px) {
  .events {
    padding: 40px 0;
  }
  .events__view-all {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  .event-card__image {
    height: 160px;
  }
  .event-card__content {
    padding: 15px;
  }
  .event-card__date {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
}
.section {
  padding: 80px 0;
}
@media (max-width: 767.98px) {
  .section {
    padding: 60px 0;
  }
}

.section_bg {
  background-size: cover;
  background-repeat: no-repeat;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.section-header.mw {
  max-width: 100%;
}
.section-header h2 {
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 18px;
  color: rgb(76.5, 76.5, 76.5);
}
@media (max-width: 767.98px) {
  .section-header p {
    font-size: 16px;
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 991.98px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}
.hero-text h1 span {
  color: #E63946;
}
.hero-text p {
  font-size: 18px;
  color: rgb(76.5, 76.5, 76.5);
  margin-bottom: 3rem;
  line-height: 1.6;
}
@media (max-width: 767.98px) {
  .hero-text p {
    font-size: 16px;
  }
}

.hero-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.hero-image .hero-main-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image .hero-main-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
}

.search-container {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}
.search-container input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.search-container input:focus {
  outline: none;
  border-color: #1DB6A3;
  box-shadow: 0 0 0 3px rgba(29, 182, 163, 0.1);
}
.search-container input::placeholder {
  color: #999999;
}
.search-container input {
  padding-right: 50px;
}
.search-container button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #1DB6A3;
  border: none;
  border-radius: 8px;
  color: #FFFFFF;
  cursor: pointer;
}
.search-container button:hover {
  background: rgb(21.990521327, 138.009478673, 123.6018957346);
}

.cart-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  width: 300px;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.cart-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cart-dropdown .cart-empty {
  text-align: center;
  color: rgb(127.5, 127.5, 127.5);
  padding: 20px 0;
}
.cart-dropdown .cart-item {
  display: flex;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #E0E0E0;
}
.cart-dropdown .cart-item:last-child {
  border-bottom: none;
}
.cart-dropdown .cart-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}
.cart-dropdown .cart-item .item-info {
  flex: 1;
}
.cart-dropdown .cart-item .item-info h5 {
  font-size: 14px;
  margin-bottom: 0.25rem;
}
.cart-dropdown .cart-item .item-info .price {
  color: #1DB6A3;
  font-weight: 600;
}
.cart-dropdown .cart-total {
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #E0E0E0;
  font-weight: 600;
  font-size: 18px;
}

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.loading::after {
  content: "";
  width: 30px;
  height: 30px;
  border: 3px solid #E0E0E0;
  border-top-color: #1DB6A3;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
html {
  scroll-behavior: smooth;
}

.hero {
  position: relative;
  padding: 1px;
  text-align: center;
  background-repeat: no-repeat;
  background-color: #e1eef4;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  margin-top: -80px;
}
@media (max-width: 575.98px) {
  .hero {
    margin-top: 0px;
  }
}
.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateX(100%);
  transition: all 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hero-bg.active {
  opacity: 1;
  transform: translateX(0);
}
.hero-bg.exit {
  opacity: 0;
  transform: translateX(-100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 315px auto 500px;
  text-align: left;
  background-color: rgba(225, 238, 244, 0.6);
  padding: 40px;
  border-radius: 16px;
}
@media (max-width: 575.98px) {
  .hero__content {
    margin: 95px auto 325px;
  }
}
.hero__title {
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #15554f;
}
.hero__subtitle {
  font-size: 20px;
  color: #333;
  margin-bottom: 30px;
  width: 70%;
}
.hero__button {
  display: inline-block;
  background: linear-gradient(135deg, #FC506C 0%, #DF062A 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 20px 0px 20px 0px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.hero__button:hover {
  background: #c62828;
}
.hero__image {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.hero__instrument {
  width: 35px;
  height: 90px;
  background: #ccc;
  border-radius: 4px;
}
.hero__categories {
  display: flex;
  margin-top: -120px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hero__category {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  max-width: 16%;
  width: 16%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
@media (max-width: 575.98px) {
  .hero__category {
    width: 48%;
    max-width: 48%;
    margin-bottom: 15px;
  }
}
.hero__category-img {
  width: 100%;
  height: 130px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto 10px;
  border-radius: 6px;
}
.hero__category p {
  font-size: 1em;
  color: #333;
  font-weight: 600;
  word-wrap: break-word;
}
.hero {
  /* Адаптив */
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 22px;
  }
  .hero__subtitle {
    font-size: 16px;
    width: 100%;
  }
  .hero__categories {
    grid-template-columns: 1fr;
  }
  .hero__instrument {
    width: 30px;
    height: 70px;
  }
}

.section-header {
  text-align: left;
  width: 100%;
  margin: 0.25rem 0;
}
.section-header .underline {
  width: 100px;
  background-color: #1DB6A3;
  height: 5px;
}
.section-header h2 {
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 18px;
  color: rgb(76.5, 76.5, 76.5);
}
@media (max-width: 767.98px) {
  .section-header p {
    font-size: 16px;
  }
}

.catalog-header {
  background-color: #F1F1F4;
  position: relative;
  text-align: center;
  padding: 60px 0px 30px 0px;
  background-position: bottom;
}
.catalog-header h1 {
  color: #095351;
  margin-bottom: 15px;
  font-size: 64px;
  font-weight: 600;
}

.categories .container {
  padding-top: 50px;
}
.categories p.info {
  text-align: center;
}
.categories p.info a {
  text-decoration: underline;
  cursor: pointer;
}
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
.categories-grid .category-card {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  .categories-grid .category-card {
    width: 100%;
  }
}
.categories-grid .category-card .category-image {
  width: 80%;
}
@media (max-width: 767.98px) {
  .categories-grid .category-card .category-image {
    min-width: 30%;
  }
}
.categories-grid .category-card .category-image img {
  object-fit: contain;
  height: 165px;
  width: 100%;
}
.categories-grid .category-card .category-content h3 {
  color: black;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .categories-grid .category-card .category-content h3 {
    word-break: break-word;
  }
}
.categories-grid .category-card .category-content p {
  font-size: 14px;
  color: black;
}

.catalog-category-page {
  background: #FFFFFF;
  min-height: 100vh;
}

.catalog-header {
  background-size: cover;
  background-position: center;
  padding: 60px 20px 40px;
  text-align: center;
  margin-top: -80px;
  padding-top: 140px;
}
.catalog-header h1 {
  color: #095351;
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .catalog-header h1 {
    font-size: 40px;
  }
}
.catalog-header .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.catalog-header .breadcrumb .breadcrumb-item a {
  color: #095351;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.catalog-header .breadcrumb .breadcrumb-item a:hover {
  color: #1DB6A3;
}
.catalog-header .breadcrumb i {
  color: #1DB6A3;
  font-size: 12px;
}

.categories-grid .category-header-block {
  width: 100%;
  grid-column: 1/-1;
  padding: 30px 0 20px;
  text-align: center;
}
.categories-grid .category-header-block h2 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.category-intro {
  display: flex;
  gap: 30px;
  margin: 40px 0;
  align-items: center;
}
@media (max-width: 767.98px) {
  .category-intro {
    flex-direction: column;
  }
}
.category-intro .category-thumb {
  flex-shrink: 0;
}
.category-intro .category-thumb img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
.category-intro .category-description {
  flex: 1;
  color: #333333;
  line-height: 1.8;
}

.subcategories-section {
  margin: 40px 0;
}
.subcategories-section h3 {
  color: #095351;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.subcategories-section .subcategories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}
@media (max-width: 767.98px) {
  .subcategories-section .subcategories-grid {
    grid-template-columns: 1fr;
  }
}
.subcategories-section .subcategory-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #F8F9FA;
  border-radius: 4px;
  text-decoration: none;
  color: #333333;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.subcategories-section .subcategory-card:hover {
  background: #F1FCFC;
  border-color: #1DB6A3;
  transform: translateX(5px);
}
.subcategories-section .subcategory-card:hover i {
  transform: translateX(5px);
  color: #1DB6A3;
}
.subcategories-section .subcategory-card span {
  font-weight: 500;
}
.subcategories-section .subcategory-card i {
  color: #333333;
  transition: all 0.3s ease;
}

.catalog-main-content {
  margin: 40px 0;
}

.catalog-sidebar .sidebar-section {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}
.catalog-sidebar .sidebar-section h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #095351;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1DB6A3;
  cursor: pointer;
}
.catalog-sidebar .sidebar-section h3 i {
  color: #1DB6A3;
  font-size: 14px;
}
.catalog-sidebar .categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.catalog-sidebar .categories-list li {
  margin-bottom: 8px;
}
.catalog-sidebar .categories-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  color: #333333;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 14px;
}
.catalog-sidebar .categories-list li a:hover, .catalog-sidebar .categories-list li a.active {
  background: #F1FCFC;
  color: #1DB6A3;
}
.catalog-sidebar .categories-list li a:hover i, .catalog-sidebar .categories-list li a.active i {
  color: #1DB6A3;
  transform: translateX(5px);
}
.catalog-sidebar .categories-list li a i {
  font-size: 12px;
  color: transparent;
  transition: all 0.3s ease;
}
.catalog-sidebar .categories-list li a.active i {
  color: #1DB6A3;
}
.catalog-sidebar .filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.catalog-sidebar .filter-list li {
  margin-bottom: 10px;
}
.catalog-sidebar .filter-list li label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #333333;
}
.catalog-sidebar .filter-list li label input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #1DB6A3;
}
.catalog-sidebar .filter-list li label:hover {
  color: #1DB6A3;
}
.catalog-sidebar .param-group {
  margin-bottom: 20px;
}
.catalog-sidebar .param-group .param-label {
  display: block;
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.catalog-sidebar .param-group .param-select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-size: 14px;
  color: #333333;
  background: #FFFFFF;
  cursor: pointer;
}
.catalog-sidebar .param-group .param-select:focus {
  outline: none;
  border-color: #1DB6A3;
}
.catalog-sidebar .param-group .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.catalog-sidebar .param-group .checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #333333;
}
.catalog-sidebar .param-group .checkbox-group label input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #1DB6A3;
}
.catalog-sidebar .param-group .checkbox-group label:hover {
  color: #1DB6A3;
}

.catalog-products {
  width: 100%;
}
.catalog-products .products-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 15px 20px;
  background: #F8F9FA;
  border-radius: 8px;
}
@media (max-width: 767.98px) {
  .catalog-products .products-controls {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
.catalog-products .products-controls .products-count {
  color: #333333;
  font-size: 14px;
}
.catalog-products .products-controls .sort-control {
  display: flex;
  align-items: center;
  gap: 10px;
}
.catalog-products .products-controls .sort-control label {
  color: #333333;
  font-size: 14px;
  font-weight: 500;
}
.catalog-products .products-controls .sort-control select {
  padding: 8px 15px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-size: 14px;
  color: #333333;
  background: #FFFFFF;
  cursor: pointer;
}
.catalog-products .products-controls .sort-control select:focus {
  outline: none;
  border-color: #1DB6A3;
}
.catalog-products .products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .catalog-products .products-grid {
    gap: 15px;
  }
}
.catalog-products .product-card-container {
  width: 30%;
}
@media (max-width: 767.98px) {
  .catalog-products .product-card-container {
    width: 100%;
  }
}
.catalog-products .pagination-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
.catalog-products .pagination-wrapper .pagination {
  display: flex;
  gap: 7px;
}

.catalog-cta {
  background: linear-gradient(135deg, rgba(29, 182, 163, 0.1) 0%, rgba(21, 154, 137, 0.1) 100%);
  background-image: url("/image/catalog/catalogbg.png");
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  margin: 60px 0 40px;
}
@media (max-width: 767.98px) {
  .catalog-cta {
    padding: 40px 20px;
  }
}
.catalog-cta h2 {
  color: #095351;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  .catalog-cta h2 {
    font-size: 24px;
  }
  .catalog-cta h2 br {
    display: none;
  }
}
.catalog-cta p {
  color: #333333;
  font-size: 18px;
  margin-bottom: 30px;
}
.catalog-cta .cta-form {
  display: flex;
  gap: 15px;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .catalog-cta .cta-form {
    flex-direction: column;
  }
}
.catalog-cta .cta-form input {
  flex: 1;
  padding: 15px 20px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-size: 16px;
}
.catalog-cta .cta-form input:focus {
  outline: none;
  border-color: #1DB6A3;
}
.catalog-cta .cta-form input::placeholder {
  color: #999;
}
.catalog-cta .cta-form .btn-submit {
  padding: 15px 40px;
  background: #E63946;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.catalog-cta .cta-form .btn-submit:hover {
  background: rgb(209.5426008969, 26.4573991031, 40.2152466368);
  transform: translateY(-2px);
}

.no-products {
  text-align: center;
  padding: 80px 20px;
}
.no-products .no-products-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  background: #F8F9FA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.no-products .no-products-icon i {
  font-size: 48px;
  color: #ccc;
}
.no-products h3 {
  color: #095351;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}
.no-products p {
  color: #333333;
  font-size: 16px;
  margin-bottom: 30px;
}
.no-products .btn-consult {
  display: inline-block;
  padding: 15px 40px;
  background: #1DB6A3;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.no-products .btn-consult:hover {
  background: rgb(21.990521327, 138.009478673, 123.6018957346);
  transform: translateY(-2px);
}

.product-page {
  background: #FFFFFF;
  min-height: 100vh;
}
.product-page .alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  animation: slideDown 0.3s ease-out;
}
.product-page .alert i {
  font-size: 18px;
  margin-top: 2px;
}
.product-page .alert strong {
  display: block;
  margin-bottom: 5px;
}
.product-page .alert ul {
  margin: 5px 0 0 0;
  padding-left: 20px;
}
.product-page .alert ul li {
  margin-bottom: 3px;
}
.product-page .alert.alert-success {
  background: rgb(195.7028985507, 240.7971014493, 206);
  color: #28A745;
  border: 1px solid #28A745;
}
.product-page .alert.alert-danger {
  background: rgb(246.3607594937, 205.1392405063, 209.0886075949);
  color: #DC3545;
  border: 1px solid #DC3545;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-header {
  background-color: #F1FCFC;
  background-size: cover;
  background-position: center;
  padding: 60px 20px 40px;
  text-align: center;
  margin-top: -80px;
  padding-top: 140px;
}
.product-header h1 {
  color: #095351;
  font-size: 33px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .product-header h1 {
    font-size: 24px;
  }
}
.product-header .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.product-header .breadcrumb .breadcrumb-item a {
  color: #095351;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.product-header .breadcrumb .breadcrumb-item a:hover {
  color: #1DB6A3;
}
.product-header .breadcrumb i {
  color: #1DB6A3;
  font-size: 12px;
}

.product-content {
  padding: 40px 20px;
}

.product-main {
  display: grid;
  grid-template-columns: 300px 1fr 280px;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 991.98px) {
  .product-main {
    grid-template-columns: 1fr 280px;
  }
}
@media (max-width: 767.98px) {
  .product-main {
    grid-template-columns: 1fr;
  }
}

.product-gallery .gallery-main {
  width: 100%;
  aspect-ratio: 1;
  background: #F8F9FA;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.product-gallery .gallery-main .main-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.product-gallery .gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.product-gallery .gallery-thumbs .thumb-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #F8F9FA;
  border-radius: 4px;
  padding: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.product-gallery .gallery-thumbs .thumb-image:hover {
  border-color: #1DB6A3;
}
.product-gallery .gallery-thumbs .thumb-image.active {
  border-color: #1DB6A3;
  background: #F1FCFC;
}
.product-gallery .product-price-mobile {
  display: none;
  margin-top: 20px;
  padding: 20px;
  background: #F8F9FA;
  border-radius: 8px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .product-gallery .product-price-mobile {
    display: block;
  }
}
.product-gallery .product-price-mobile .price-value {
  font-size: 32px;
  font-weight: 700;
  color: #095351;
}
.product-gallery .product-price-mobile .price-old {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
  margin-top: 5px;
}
.product-gallery .product-price-mobile .quantity-selector-mobile {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #E0E0E0;
}
.product-gallery .product-price-mobile .quantity-selector-mobile label {
  display: block;
  color: #333333;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 14px;
}
.product-gallery .product-price-mobile .quantity-selector-mobile .quantity-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.product-gallery .product-price-mobile .quantity-selector-mobile .quantity-controls .qty-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #E0E0E0;
  background: #FFFFFF;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-gallery .product-price-mobile .quantity-selector-mobile .quantity-controls .qty-btn:hover {
  background: #1DB6A3;
  color: #FFFFFF;
  border-color: #1DB6A3;
}
.product-gallery .product-price-mobile .quantity-selector-mobile .quantity-controls input[type=number] {
  width: 60px;
  height: 40px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  -moz-appearance: textfield;
}
.product-gallery .product-price-mobile .quantity-selector-mobile .quantity-controls input[type=number]::-webkit-outer-spin-button, .product-gallery .product-price-mobile .quantity-selector-mobile .quantity-controls input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-gallery .product-price-mobile .quantity-selector-mobile .quantity-controls input[type=number]:focus {
  outline: none;
  border-color: #1DB6A3;
}
.product-gallery .product-price-mobile .action-buttons-mobile {
  margin-top: 15px;
}
.product-gallery .product-price-mobile .action-buttons-mobile .btn {
  width: 100%;
  padding: 15px 25px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.product-gallery .product-price-mobile .action-buttons-mobile .btn i {
  font-size: 16px;
}
.product-gallery .product-price-mobile .action-buttons-mobile .btn.btn-cart {
  background: #1DB6A3;
  color: #FFFFFF;
}
.product-gallery .product-price-mobile .action-buttons-mobile .btn.btn-cart:hover {
  background: rgb(21.990521327, 138.009478673, 123.6018957346);
}
.product-gallery .product-price-mobile .action-buttons-mobile .btn.btn-cart:active {
  transform: scale(0.98);
}
.product-gallery .product-price-mobile .cart-quantity-info {
  margin-top: 15px;
  padding: 10px;
  background: rgba(29, 182, 163, 0.1);
  border-radius: 4px;
  color: #1DB6A3;
  font-weight: 500;
  font-size: 14px;
}

.product-info .info-section {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
}
.product-info .info-section h3 {
  color: #095351;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-info .info-section h3 i {
  color: #1DB6A3;
  font-size: 14px;
  transition: all 0.3s ease;
}
.product-info .info-section.collapsible h3 {
  cursor: pointer;
  padding-bottom: 15px;
  border-bottom: 2px solid #E0E0E0;
}
.product-info .info-section.collapsible h3:hover {
  color: #1DB6A3;
}
.product-info .info-section.collapsible .section-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.product-info .info-section.collapsible.open .section-content {
  max-height: 1000px;
  padding-top: 15px;
}
.product-info .info-section.collapsible.open h3 i {
  transform: rotate(180deg);
}
.product-info .info-section .description-text {
  color: #333333;
  line-height: 1.8;
  font-size: 16px;
}
.product-info .characteristics-table {
  width: 100%;
  border-collapse: collapse;
}
.product-info .characteristics-table tr {
  border-bottom: 1px solid #E0E0E0;
}
.product-info .characteristics-table tr:last-child {
  border-bottom: none;
}
.product-info .characteristics-table td {
  padding: 12px 0;
  font-size: 14px;
}
.product-info .characteristics-table td:first-child {
  color: #666;
  width: 40%;
}
.product-info .characteristics-table td:last-child {
  color: #333333;
  font-weight: 500;
}
.product-info .characteristics-table td a {
  color: #1DB6A3;
  text-decoration: none;
}
.product-info .characteristics-table td a:hover {
  text-decoration: underline;
}
.product-info .option-group {
  margin-bottom: 20px;
  position: relative;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.product-info .option-group.has-error {
  border-color: #DC3545;
  background: rgb(250.1265822785, 226.8734177215, 229.1012658228);
}
.product-info .option-group.has-error .option-label {
  color: #DC3545;
}
.product-info .option-group.has-error .option-label::after {
  content: " *";
  color: #DC3545;
}
.product-info .option-group .option-label {
  display: block;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
.product-info .option-group .radio-group,
.product-info .option-group .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-info .option-group .radio-group .radio-item,
.product-info .option-group .radio-group .checkbox-item,
.product-info .option-group .checkbox-group .radio-item,
.product-info .option-group .checkbox-group .checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: #F8F9FA;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.product-info .option-group .radio-group .radio-item:hover,
.product-info .option-group .radio-group .checkbox-item:hover,
.product-info .option-group .checkbox-group .radio-item:hover,
.product-info .option-group .checkbox-group .checkbox-item:hover {
  background: #F1FCFC;
  border-color: #1DB6A3;
}
.product-info .option-group .radio-group .radio-item input,
.product-info .option-group .radio-group .checkbox-item input,
.product-info .option-group .checkbox-group .radio-item input,
.product-info .option-group .checkbox-group .checkbox-item input {
  width: 18px;
  height: 18px;
  accent-color: #1DB6A3;
}
.product-info .option-group .radio-group .radio-item span,
.product-info .option-group .radio-group .checkbox-item span,
.product-info .option-group .checkbox-group .radio-item span,
.product-info .option-group .checkbox-group .checkbox-item span {
  font-size: 14px;
  color: #333333;
}
.product-info .option-group .radio-group .radio-item .option-price,
.product-info .option-group .radio-group .checkbox-item .option-price,
.product-info .option-group .checkbox-group .radio-item .option-price,
.product-info .option-group .checkbox-group .checkbox-item .option-price {
  color: #999;
  font-size: 12px;
  margin-left: auto;
}
.product-info .option-group .option-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-size: 14px;
  color: #333333;
  background: #FFFFFF;
  cursor: pointer;
}
.product-info .option-group .option-select:focus {
  outline: none;
  border-color: #1DB6A3;
}
.product-info .option-group .color-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.product-info .option-group .color-options .color-option {
  cursor: pointer;
  position: relative;
}
.product-info .option-group .color-options .color-option input[type=radio],
.product-info .option-group .color-options .color-option input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.product-info .option-group .color-options .color-option input[type=radio]:checked + .color-circle,
.product-info .option-group .color-options .color-option input[type=checkbox]:checked + .color-circle {
  border-color: #1DB6A3;
  border-width: 3px;
}
.product-info .option-group .color-options .color-option input[type=radio]:checked + .color-circle i,
.product-info .option-group .color-options .color-option input[type=checkbox]:checked + .color-circle i {
  opacity: 1;
  transform: scale(1);
}
.product-info .option-group .color-options .color-option .color-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #E0E0E0;
  background-size: 180%;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-info .option-group .color-options .color-option .color-circle:hover {
  border-color: #1DB6A3;
  transform: scale(1.1);
}
.product-info .option-group .color-options .color-option .color-circle i {
  color: #FFFFFF;
  font-size: 16px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}
.product-info .option-group .color-options .color-option.option-disabled {
  cursor: not-allowed;
  opacity: 0.4;
  pointer-events: none;
}
.product-info .option-group .color-options .color-option.option-disabled .color-circle {
  background-color: #f5f5f5;
  position: relative;
}
.product-info .option-group .color-options .color-option.option-disabled .color-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #d32f2f;
  transform: translateY(-50%) rotate(-45deg);
}
.product-info .option-group .color-options .color-option.option-disabled .color-circle:hover {
  border-color: #E0E0E0;
  transform: none;
}
.product-info .option-group .card-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-info .option-group .card-options .card-option {
  cursor: pointer;
  position: relative;
}
.product-info .option-group .card-options .card-option input[type=radio],
.product-info .option-group .card-options .card-option input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.product-info .option-group .card-options .card-option input[type=radio]:checked + .card-option-content,
.product-info .option-group .card-options .card-option input[type=checkbox]:checked + .card-option-content {
  background: #1DB6A3;
  color: #FFFFFF;
  border-color: #1DB6A3;
}
.product-info .option-group .card-options .card-option input[type=radio]:checked + .card-option-content .option-price,
.product-info .option-group .card-options .card-option input[type=checkbox]:checked + .card-option-content .option-price {
  color: rgba(255, 255, 255, 0.8);
}
.product-info .option-group .card-options .card-option .card-option-content {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 20px;
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.product-info .option-group .card-options .card-option .card-option-content:hover {
  border-color: #1DB6A3;
  background: #F1FCFC;
}
.product-info .option-group .card-options .card-option .card-option-content .option-price {
  color: #999;
  font-size: 12px;
  font-weight: 400;
}
.product-info .option-group .card-options .card-option.option-disabled {
  cursor: not-allowed;
  opacity: 0.4;
  pointer-events: none;
}
.product-info .option-group .card-options .card-option.option-disabled .card-option-content {
  background: #f5f5f5;
  color: #999;
  text-decoration: line-through;
}
.product-info .option-group .card-options .card-option.option-disabled .card-option-content:hover {
  border-color: #E0E0E0;
  background: #f5f5f5;
}

@media (max-width: 767.98px) {
  .product-actions {
    display: none;
  }
}
.product-actions .product-price {
  background: #F8F9FA;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}
.product-actions .product-price .price-value {
  font-size: 32px;
  font-weight: 700;
  color: #095351;
}
.product-actions .product-price .price-old {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
  margin-top: 8px;
}
.product-actions .quantity-selector {
  margin-bottom: 20px;
}
.product-actions .quantity-selector label {
  display: block;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
.product-actions .quantity-selector .quantity-controls {
  display: flex;
  align-items: center;
  gap: 0;
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  overflow: hidden;
}
.product-actions .quantity-selector .quantity-controls .qty-btn {
  background: #F8F9FA;
  border: none;
  padding: 12px 16px;
  font-size: 18px;
  font-weight: 700;
  color: #1DB6A3;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  min-width: 45px;
}
.product-actions .quantity-selector .quantity-controls .qty-btn:hover {
  background: #1DB6A3;
  color: #FFFFFF;
}
.product-actions .quantity-selector .quantity-controls .qty-btn:active {
  transform: scale(0.95);
}
.product-actions .quantity-selector .quantity-controls #product-quantity {
  flex: 1;
  text-align: center;
  border: none;
  padding: 12px 10px;
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  background: #FFFFFF;
  width: 100%;
  min-width: 60px;
}
.product-actions .quantity-selector .quantity-controls #product-quantity:focus {
  outline: none;
}
.product-actions .quantity-selector .quantity-controls #product-quantity::-webkit-outer-spin-button, .product-actions .quantity-selector .quantity-controls #product-quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-actions .quantity-selector .quantity-controls #product-quantity[type=number] {
  -moz-appearance: textfield;
}
.product-actions .quantity-selector .cart-quantity-info {
  margin-top: 10px;
  padding: 10px 15px;
  background: rgb(195.0521327014, 245.4478672986, 239.1895734597);
  border-left: 3px solid #1DB6A3;
  border-radius: 4px;
  font-size: 14px;
  color: #333333;
}
.product-actions .quantity-selector .cart-quantity-info #cart-quantity {
  font-weight: 700;
  color: #1DB6A3;
}
.product-actions .action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-actions .action-buttons .btn {
  padding: 15px 20px;
  border: none;
  border-radius: 10px 0px 10px 0px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.product-actions .action-buttons .btn i {
  font-size: 16px;
}
.product-actions .action-buttons .btn.btn-cart {
  background: #1DB6A3;
  color: #FFFFFF;
}
.product-actions .action-buttons .btn.btn-cart:hover {
  background: rgb(21.990521327, 138.009478673, 123.6018957346);
  transform: translateY(-2px);
}
.product-actions .action-buttons .btn.btn-favorite {
  background: #1E3A3A;
  color: #FFFFFF;
}
.product-actions .action-buttons .btn.btn-favorite:hover {
  background: rgb(47.3863636364, 91.6136363636, 91.6136363636);
  transform: translateY(-2px);
}
.product-actions .action-buttons .btn.btn-order {
  background: #1E3A3A;
  color: #FFFFFF;
}
.product-actions .action-buttons .btn.btn-order:hover {
  background: rgb(47.3863636364, 91.6136363636, 91.6136363636);
  transform: translateY(-2px);
}
.product-actions .action-buttons .btn.btn-price {
  background: #E63946;
  color: #FFFFFF;
}
.product-actions .action-buttons .btn.btn-price:hover {
  background: rgb(209.5426008969, 26.4573991031, 40.2152466368);
  transform: translateY(-2px);
}

.related-products {
  margin: 60px 0;
}
.related-products h2 {
  color: #095351;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
.related-products .related-slider {
  position: relative;
  padding: 0 50px;
}
@media (max-width: 767.98px) {
  .related-products .related-slider {
    padding: 0 30px;
  }
}
.related-products .related-slider .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #1DB6A3;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}
.related-products .related-slider .slider-arrow:hover {
  background: rgb(21.990521327, 138.009478673, 123.6018957346);
  transform: translateY(-50%) scale(1.1);
}
.related-products .related-slider .slider-arrow.prev {
  left: 0;
}
.related-products .related-slider .slider-arrow.next {
  right: 0;
}
.related-products .related-slider .products-container {
  display: flex;
  gap: 25px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.related-products .product-card-mini {
  min-width: 200px;
  flex-shrink: 0;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.related-products .product-card-mini:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-color: #1DB6A3;
}
.related-products .product-card-mini .product-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  background: #F8F9FA;
  padding: 15px;
}
.related-products .product-card-mini .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.related-products .product-card-mini .product-info-mini {
  padding: 15px;
}
.related-products .product-card-mini .product-info-mini .product-name {
  display: block;
  color: #095351;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-products .product-card-mini .product-info-mini .product-name:hover {
  color: #1DB6A3;
}
.related-products .product-card-mini .product-info-mini .product-price-mini {
  color: #E63946;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.related-products .product-card-mini .product-info-mini .product-actions-mini {
  display: flex;
  gap: 8px;
}
.related-products .product-card-mini .product-info-mini .product-actions-mini .btn-mini {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.related-products .product-card-mini .product-info-mini .product-actions-mini .btn-mini.btn-cart-mini {
  background: #1DB6A3;
  color: #FFFFFF;
}
.related-products .product-card-mini .product-info-mini .product-actions-mini .btn-mini.btn-cart-mini:hover {
  background: rgb(21.990521327, 138.009478673, 123.6018957346);
}
.related-products .product-card-mini .product-info-mini .product-actions-mini .btn-mini.btn-wishlist-mini, .related-products .product-card-mini .product-info-mini .product-actions-mini .btn-mini.btn-compare-mini {
  background: #F8F9FA;
  color: #333333;
}
.related-products .product-card-mini .product-info-mini .product-actions-mini .btn-mini.btn-wishlist-mini:hover, .related-products .product-card-mini .product-info-mini .product-actions-mini .btn-mini.btn-compare-mini:hover {
  background: #1DB6A3;
  color: #FFFFFF;
}

.product-cta {
  background: linear-gradient(135deg, rgba(29, 182, 163, 0.1) 0%, rgba(21, 154, 137, 0.1) 100%);
  background-image: url("/image/catalog/catalogbg.png");
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  margin: 60px 0 40px;
}
@media (max-width: 767.98px) {
  .product-cta {
    padding: 40px 20px;
  }
}
.product-cta h2 {
  color: #095351;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  .product-cta h2 {
    font-size: 22px;
  }
  .product-cta h2 br {
    display: none;
  }
}
.product-cta p {
  color: #333333;
  font-size: 16px;
  margin-bottom: 30px;
}
.product-cta .cta-form {
  display: flex;
  gap: 15px;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .product-cta .cta-form {
    flex-direction: column;
  }
}
.product-cta .cta-form input {
  flex: 1;
  padding: 15px 20px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-size: 16px;
}
.product-cta .cta-form input:focus {
  outline: none;
  border-color: #1DB6A3;
}
.product-cta .cta-form input::placeholder {
  color: #999;
}
.product-cta .cta-form .btn-submit {
  padding: 15px 40px;
  background: #E63946;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.product-cta .cta-form .btn-submit:hover {
  background: rgb(209.5426008969, 26.4573991031, 40.2152466368);
  transform: translateY(-2px);
}

.cart-page {
  background: #FFFFFF;
  min-height: 100vh;
}

.cart-header {
  background-color: #F1FCFC;
  background-size: cover;
  background-position: center;
  padding: 60px 20px 40px;
  text-align: center;
  margin-top: -80px;
  padding-top: 140px;
}
.cart-header h1 {
  color: #095351;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .cart-header h1 {
    font-size: 32px;
  }
}
.cart-header .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.cart-header .breadcrumb .breadcrumb-item a {
  color: #095351;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.cart-header .breadcrumb .breadcrumb-item a:hover {
  color: #1DB6A3;
}
.cart-header .breadcrumb i {
  color: #1DB6A3;
  font-size: 12px;
}

.cart-content {
  padding: 40px 20px;
}
.cart-content .alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-content .alert i {
  font-size: 18px;
}
.cart-content .alert.alert-info {
  background: rgb(167, 233.4782608696, 244);
  color: #17A2B8;
  border: 1px solid #17A2B8;
}
.cart-content .alert.alert-success {
  background: rgb(195.7028985507, 240.7971014493, 206);
  color: #28A745;
  border: 1px solid #28A745;
}
.cart-content .alert.alert-danger {
  background: rgb(246.3607594937, 205.1392405063, 209.0886075949);
  color: #DC3545;
  border: 1px solid #DC3545;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
}
@media (max-width: 991.98px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 20px;
  display: grid;
  grid-template-columns: 120px 1fr auto auto;
  gap: 20px;
  align-items: center;
  transition: all 0.3s ease;
}
@media (max-width: 767.98px) {
  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 15px;
  }
}
.cart-item:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.cart-item .btn-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #F8F9FA;
  color: #E63946;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item .btn-remove:hover {
  background: #E63946;
  color: #FFFFFF;
}
.cart-item .item-image {
  width: 120px;
  height: 120px;
  background: #F8F9FA;
  border-radius: 4px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .cart-item .item-image {
    width: 80px;
    height: 80px;
  }
}
.cart-item .item-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.cart-item .item-image i {
  font-size: 48px;
  color: #1DB6A3;
}
.cart-item .item-details .item-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.cart-item .item-details .item-name a {
  color: #095351;
  text-decoration: none;
}
.cart-item .item-details .item-name a:hover {
  color: #1DB6A3;
}
.cart-item .item-details .item-name .out-of-stock {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 8px;
  background: #DC3545;
  color: #FFFFFF;
  font-size: 12px;
  border-radius: 4px;
}
.cart-item .item-details .item-options {
  margin: 8px 0;
}
.cart-item .item-details .item-options .option {
  font-size: 14px;
  color: #666;
  margin-bottom: 4px;
}
.cart-item .item-details .item-reward,
.cart-item .item-details .item-subscription {
  font-size: 14px;
  color: #1DB6A3;
  margin-top: 5px;
}
.cart-item .item-details .item-price {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin-top: 10px;
}
@media (max-width: 767.98px) {
  .cart-item .item-quantity {
    grid-column: 2;
  }
}
.cart-item .item-quantity .quantity-control {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #F8F9FA;
  border-radius: 4px;
  padding: 5px;
}
.cart-item .item-quantity .quantity-control .qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #FFFFFF;
  color: #333333;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.cart-item .item-quantity .quantity-control .qty-btn:hover {
  background: #1DB6A3;
  color: #FFFFFF;
}
.cart-item .item-quantity .quantity-control .qty-input {
  width: 50px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
}
.cart-item .item-quantity .voucher-qty {
  display: block;
  text-align: center;
  padding: 8px 16px;
  background: #F8F9FA;
  border-radius: 4px;
  font-weight: 500;
}
.cart-item .item-total {
  font-size: 24px;
  font-weight: 700;
  color: #095351;
  text-align: right;
}
@media (max-width: 767.98px) {
  .cart-item .item-total {
    grid-column: 2;
    text-align: left;
    margin-top: 10px;
  }
}

.cart-summary {
  background: #F8F9FA;
  border-radius: 8px;
  padding: 30px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
@media (max-width: 991.98px) {
  .cart-summary {
    position: static;
  }
}
.cart-summary h3 {
  color: #095351;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.cart-summary .summary-details {
  margin-bottom: 20px;
}
.cart-summary .summary-details .summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #E0E0E0;
}
.cart-summary .summary-details .summary-row .summary-label {
  color: #666;
  font-size: 16px;
}
.cart-summary .summary-details .summary-row .summary-value {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
}
.cart-summary .summary-details .summary-row.summary-total {
  border-bottom: none;
  padding-top: 15px;
  margin-top: 10px;
  border-top: 2px solid #1DB6A3;
}
.cart-summary .summary-details .summary-row.summary-total .summary-label,
.cart-summary .summary-details .summary-row.summary-total .summary-value {
  color: #095351;
  font-size: 24px;
  font-weight: 700;
}
.cart-summary .promo-code {
  margin-bottom: 20px;
}
.cart-summary .promo-code .promo-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 10px;
}
.cart-summary .promo-code .promo-input:focus {
  outline: none;
  border-color: #1DB6A3;
}
.cart-summary .promo-code .btn-promo {
  width: 100%;
  padding: 12px 20px;
  background: #FFFFFF;
  color: #333333;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cart-summary .promo-code .btn-promo:hover {
  background: #1DB6A3;
  color: #FFFFFF;
  border-color: #1DB6A3;
}
.cart-summary .btn-checkout {
  width: 100%;
  padding: 15px 20px;
  background: #E63946;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}
.cart-summary .btn-checkout i {
  font-size: 20px;
}
.cart-summary .btn-checkout:hover {
  background: rgb(209.5426008969, 26.4573991031, 40.2152466368);
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.cart-summary .cart-links {
  display: flex;
  gap: 10px;
}
.cart-summary .cart-links .cart-link {
  flex: 1;
  padding: 12px;
  background: #FFFFFF;
  color: #333333;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.cart-summary .cart-links .cart-link i {
  font-size: 16px;
}
.cart-summary .cart-links .cart-link:hover {
  background: #1DB6A3;
  color: #FFFFFF;
  border-color: #1DB6A3;
}

.empty-cart {
  text-align: center;
  padding: 80px 20px;
}
.empty-cart .empty-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  background: #F8F9FA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.empty-cart .empty-icon i {
  font-size: 48px;
  color: #1DB6A3;
}
.empty-cart h2 {
  color: #095351;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}
.empty-cart p {
  color: #333333;
  font-size: 16px;
  margin-bottom: 30px;
}
.empty-cart .btn-continue-shopping {
  display: inline-block;
  padding: 15px 40px;
  background: #1DB6A3;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.empty-cart .btn-continue-shopping:hover {
  background: rgb(21.990521327, 138.009478673, 123.6018957346);
  transform: translateY(-2px);
}

.checkout-page {
  background: #FFFFFF;
  min-height: 100vh;
}

.checkout-header {
  background-color: #F1FCFC;
  background-size: cover;
  background-position: center;
  padding: 60px 20px 40px;
  text-align: center;
  margin-top: -80px;
  padding-top: 140px;
}
.checkout-header h1 {
  color: #095351;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .checkout-header h1 {
    font-size: 32px;
  }
}
.checkout-header .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.checkout-header .breadcrumb .breadcrumb-item a {
  color: #095351;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.checkout-header .breadcrumb .breadcrumb-item a:hover {
  color: #1DB6A3;
}
.checkout-header .breadcrumb i {
  color: #1DB6A3;
  font-size: 12px;
}

.checkout-content {
  padding: 40px 20px;
}
.checkout-content #alert .alert {
  margin-bottom: 20px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 30px;
}
@media (max-width: 991.98px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

.checkout-forms {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.checkout-summary {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkout-section {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 25px;
  transition: all 0.3s ease;
}
.checkout-section:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.checkout-section h3 {
  color: #095351;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1DB6A3;
}
.checkout-section fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.checkout-section fieldset legend {
  color: #095351;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1DB6A3;
  width: 100%;
}
.checkout-section .form-label {
  color: #333333;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}
.checkout-section .form-control,
.checkout-section .form-select {
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  padding: 12px 15px;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}
.checkout-section .form-control:focus,
.checkout-section .form-select:focus {
  outline: none;
  border-color: #1DB6A3;
  box-shadow: 0 0 0 3px rgba(29, 182, 163, 0.1);
}
.checkout-section .form-control.is-invalid,
.checkout-section .form-select.is-invalid {
  border-color: #DC3545;
}
.checkout-section .form-control.is-invalid:focus,
.checkout-section .form-select.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.checkout-section textarea.form-control {
  resize: vertical;
  min-height: 100px;
}
.checkout-section .invalid-feedback {
  color: #DC3545;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}
.checkout-section .invalid-feedback.d-block {
  display: block;
}
.checkout-section .required .form-label::after {
  content: " *";
  color: #DC3545;
}
.checkout-section .form-check {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkout-section .form-check .form-check-input {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
}
.checkout-section .form-check .form-check-input:checked {
  background-color: #1DB6A3;
  border-color: #1DB6A3;
}
.checkout-section .form-check .form-check-label {
  cursor: pointer;
  color: #333333;
  font-size: 16px;
  margin: 0;
}
.checkout-section .form-switch {
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
}
.checkout-section .form-switch .form-check-input {
  width: 50px;
  height: 25px;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.checkout-section .form-switch .form-check-label {
  order: -1;
  margin: 0;
}
.checkout-section .btn {
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.checkout-section .btn.btn-primary {
  background: #1DB6A3;
  color: #FFFFFF;
}
.checkout-section .btn.btn-primary:hover {
  background: rgb(21.990521327, 138.009478673, 123.6018957346);
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.checkout-section .btn.btn-primary:disabled {
  background: rgb(129.0663507109, 234.9336492891, 221.7867298578);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.checkout-section .btn.btn-light {
  background: #F8F9FA;
  color: #333333;
}
.checkout-section .btn.btn-light:hover {
  background: rgb(233.125, 236.25, 239.375);
}
.checkout-section .input-group {
  display: flex;
  width: 100%;
}
.checkout-section .input-group .input-group-text {
  background: #F8F9FA;
  border: 1px solid #E0E0E0;
  border-right: none;
  border-radius: 4px 0 0 4px;
  padding: 12px 15px;
  color: #333333;
  display: flex;
  align-items: center;
}
.checkout-section .input-group .input-group-text i {
  font-size: 18px;
}
.checkout-section .input-group .form-control {
  border-radius: 0;
  flex: 1;
}
.checkout-section .input-group .btn {
  border-radius: 0 4px 4px 0;
  margin-left: -1px;
}
.checkout-section .table {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
}
.checkout-section .table thead {
  background: #F8F9FA;
}
.checkout-section .table thead tr th, .checkout-section .table thead tr td {
  padding: 12px;
  font-weight: 600;
  color: #095351;
  border-bottom: 2px solid #E0E0E0;
}
.checkout-section .table tbody tr {
  border-bottom: 1px solid #E0E0E0;
}
.checkout-section .table tbody tr td {
  padding: 12px;
  color: #333333;
}
.checkout-section .table tbody tr td a {
  color: #095351;
  text-decoration: none;
  font-weight: 500;
}
.checkout-section .table tbody tr td a:hover {
  color: #1DB6A3;
}
.checkout-section .table tbody tr td small {
  color: #666666;
}
.checkout-section .table tbody tr:hover {
  background: white;
}
.checkout-section .table tfoot tr td {
  padding: 12px;
  font-weight: 600;
  border-top: 2px solid #E0E0E0;
}
.checkout-section .table tfoot tr td:last-child {
  color: #095351;
  font-size: 18px;
}
.checkout-section .table tfoot tr:last-child td {
  background: rgb(195.0521327014, 245.4478672986, 239.1895734597);
  color: #095351;
  font-size: 24px;
  border-top: 3px solid #1DB6A3;
}
.checkout-section .text-start {
  text-align: left;
}
.checkout-section .text-end {
  text-align: right;
}

@media (max-width: 575.98px) {
  .checkout-section {
    padding: 20px;
  }
  .checkout-section .row.row-cols-1.row-cols-md-2 .col {
    width: 100%;
  }
  .checkout-layout {
    gap: 20px;
  }
}
.confirm-order-summary h3 {
  color: #095351;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.confirm-order-summary .product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.confirm-order-summary .product-info strong {
  color: #1DB6A3;
  margin-right: 5px;
}

.checkout-payment-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #E0E0E0;
}

.success-page {
  background: #FFFFFF;
  min-height: 100vh;
}

.success-header {
  background-color: #F1FCFC;
  background-size: cover;
  background-position: center;
  padding: 60px 20px 40px;
  text-align: center;
  margin-top: -80px;
  padding-top: 140px;
}
.success-header h1 {
  color: #095351;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .success-header h1 {
    font-size: 32px;
  }
}
.success-header .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.success-header .breadcrumb .breadcrumb-item a {
  color: #095351;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.success-header .breadcrumb .breadcrumb-item a:hover {
  color: #1DB6A3;
}
.success-header .breadcrumb i {
  color: #1DB6A3;
  font-size: 12px;
}

.success-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  text-align: center;
}

.success-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #1DB6A3, rgb(21.990521327, 138.009478673, 123.6018957346));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 10px 40px rgba(29, 182, 163, 0.3);
  animation: successPulse 2s ease-in-out infinite;
}
.success-icon i {
  font-size: 50px;
  color: #FFFFFF;
}

@keyframes successPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 40px rgba(29, 182, 163, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(29, 182, 163, 0.4);
  }
}
.success-content h2 {
  color: #095351;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 575.98px) {
  .success-content h2 {
    font-size: 26px;
  }
}

.success-message {
  color: #333333;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
}
@media (max-width: 575.98px) {
  .success-message {
    font-size: 16px;
  }
}

.success-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.success-info .info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #F8F9FA;
  padding: 20px 25px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.success-info .info-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.success-info .info-item i {
  font-size: 24px;
  color: #1DB6A3;
}
.success-info .info-item div {
  text-align: left;
}
.success-info .info-item div span {
  display: block;
  font-size: 14px;
  color: #666666;
  margin-bottom: 3px;
}
.success-info .info-item div a, .success-info .info-item div p {
  color: #095351;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  margin: 0;
}
.success-info .info-item div a:hover, .success-info .info-item div p:hover {
  color: #1DB6A3;
}
@media (max-width: 575.98px) {
  .success-info {
    flex-direction: column;
    gap: 15px;
  }
  .success-info .info-item {
    width: 100%;
    justify-content: flex-start;
  }
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.success-actions .btn {
  padding: 15px 35px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.success-actions .btn.btn-primary {
  background: #1DB6A3;
  color: #FFFFFF;
  border: 2px solid #1DB6A3;
}
.success-actions .btn.btn-primary:hover {
  background: rgb(21.990521327, 138.009478673, 123.6018957346);
  border-color: rgb(21.990521327, 138.009478673, 123.6018957346);
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.success-actions .btn.btn-outline {
  background: transparent;
  color: #095351;
  border: 2px solid #E0E0E0;
}
.success-actions .btn.btn-outline:hover {
  border-color: #1DB6A3;
  color: #1DB6A3;
  transform: translateY(-2px);
}
.success-actions .btn i {
  font-size: 16px;
}
@media (max-width: 575.98px) {
  .success-actions {
    flex-direction: column;
  }
  .success-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert i {
  font-size: 18px;
}
.alert.alert-success {
  background: rgb(195.7028985507, 240.7971014493, 206);
  color: #28A745;
  border: 1px solid #28A745;
}
.alert.alert-danger {
  background: rgb(246.3607594937, 205.1392405063, 209.0886075949);
  color: #DC3545;
  border: 1px solid #DC3545;
}
.alert.alert-info {
  background: rgb(167, 233.4782608696, 244);
  color: #17A2B8;
  border: 1px solid #17A2B8;
}
.alert.alert-dismissible {
  position: relative;
  padding-right: 50px;
}
.alert .btn-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 20px;
  line-height: 1;
  opacity: 0.5;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
}
.alert .btn-close:hover {
  opacity: 1;
}
.alert .btn-close::before {
  content: "×";
  font-size: 24px;
}

.delivery-page {
  background: #FFFFFF;
  min-height: 100vh;
}

.delivery-header {
  background-color: #F1FCFC;
  background-size: cover;
  background-position: center;
  padding: 60px 20px 40px;
  text-align: center;
  margin-top: -80px;
  padding-top: 140px;
}
.delivery-header h1 {
  color: #095351;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .delivery-header h1 {
    font-size: 32px;
  }
}
.delivery-header .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.delivery-header .breadcrumb .breadcrumb-item a {
  color: #095351;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.delivery-header .breadcrumb .breadcrumb-item a:hover {
  color: #1DB6A3;
}
.delivery-header .breadcrumb i {
  color: #1DB6A3;
  font-size: 12px;
}

.delivery-content {
  padding: 60px 20px;
}
@media (max-width: 767.98px) {
  .delivery-content {
    padding: 40px 20px;
  }
}

.delivery-info-card {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 50px 60px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .delivery-info-card {
    padding: 30px 20px;
  }
}

.delivery-section {
  margin-bottom: 40px;
}
.delivery-section:last-child {
  margin-bottom: 0;
}
.delivery-section h2 {
  color: #095351;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  .delivery-section h2 {
    font-size: 18px;
  }
}
.delivery-section .delivery-text {
  color: #333333;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.delivery-section .delivery-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.delivery-section .delivery-list li {
  color: #333333;
  font-size: 16px;
  line-height: 1.8;
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}
.delivery-section .delivery-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1DB6A3;
  font-size: 20px;
  line-height: 1.6;
}
.delivery-section .delivery-list li:last-child {
  margin-bottom: 0;
}

.blog-page {
  background: #FFFFFF;
  min-height: 100vh;
}

.blog-header {
  background-color: #F1F1F4;
  background-size: cover;
  background-position: center;
  padding: 60px 20px 40px;
  text-align: center;
  margin-top: -80px;
  padding-top: 140px;
}
.blog-header h1 {
  color: #095351;
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .blog-header h1 {
    font-size: 32px;
  }
}
.blog-header .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.blog-header .breadcrumb .breadcrumb-item a {
  color: #095351;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.blog-header .breadcrumb .breadcrumb-item a:hover {
  color: #1DB6A3;
}
.blog-header .breadcrumb i {
  color: #1DB6A3;
  font-size: 12px;
}

.blog-content {
  padding: 60px 20px;
}
@media (max-width: 767.98px) {
  .blog-content {
    padding: 40px 20px;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
@media (max-width: 991.98px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (max-width: 767.98px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.blog-card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}
.blog-card .blog-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #F8F9FA;
}
.blog-card .blog-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.blog-card .blog-image:hover img {
  transform: scale(1.05);
}
.blog-card .blog-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card .blog-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}
.blog-card .blog-title a {
  color: #095351;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-card .blog-title a:hover {
  color: #1DB6A3;
}
.blog-card .blog-excerpt {
  color: #333333;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}
.blog-card .blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 12px;
  color: #999;
  margin-bottom: 15px;
  padding-top: 15px;
  border-top: 1px solid #E0E0E0;
}
.blog-card .blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-card .blog-meta span i {
  color: #1DB6A3;
}
.blog-card .blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1DB6A3;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-card .blog-read-more i {
  transition: all 0.3s ease;
}
.blog-card .blog-read-more:hover {
  color: #E63946;
}
.blog-card .blog-read-more:hover i {
  transform: translateX(3px);
}

.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.blog-pagination .pagination {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-pagination .pagination li a,
.blog-pagination .pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: #FFFFFF;
  color: #333333;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.blog-pagination .pagination li a:hover,
.blog-pagination .pagination li span:hover {
  background: #1DB6A3;
  color: #FFFFFF;
  border-color: #1DB6A3;
}
.blog-pagination .pagination li.active span {
  background: #1DB6A3;
  color: #FFFFFF;
  border-color: #1DB6A3;
}
.blog-pagination .pagination li.disabled a {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.no-articles {
  text-align: center;
  padding: 80px 20px;
}
.no-articles .no-articles-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  background: #F8F9FA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.no-articles .no-articles-icon i {
  font-size: 48px;
  color: #1DB6A3;
}
.no-articles h3 {
  color: #095351;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}
.no-articles p {
  color: #333333;
  font-size: 16px;
}

.blog-single-page {
  background: #FFFFFF;
  min-height: 100vh;
}

.blog-single-header {
  background-color: #F1FCFC;
  background-size: cover;
  background-position: center;
  padding: 60px 20px 40px;
  text-align: center;
  margin-top: -80px;
  padding-top: 140px;
}
.blog-single-header h1 {
  color: #095351;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .blog-single-header h1 {
    font-size: 28px;
  }
}
.blog-single-header .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.blog-single-header .breadcrumb .breadcrumb-item a {
  color: #095351;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.blog-single-header .breadcrumb .breadcrumb-item a:hover {
  color: #1DB6A3;
}
.blog-single-header .breadcrumb i {
  color: #1DB6A3;
  font-size: 12px;
}

.blog-single-content {
  padding: 60px 20px;
}
@media (max-width: 767.98px) {
  .blog-single-content {
    padding: 40px 20px;
  }
}

.article {
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
}
.article .article-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}
.article .article-image img {
  width: 100%;
  height: auto;
  display: block;
}
.article .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E0E0E0;
  font-size: 14px;
  color: #999;
}
.article .article-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.article .article-meta span i {
  color: #1DB6A3;
  font-size: 14px;
}
.article .article-body {
  color: #333333;
  font-size: 16px;
  line-height: 1.8;
}
.article .article-body h2, .article .article-body h3, .article .article-body h4 {
  color: #095351;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.4;
}
.article .article-body h2 {
  font-size: 24px;
}
.article .article-body h3 {
  font-size: 18px;
}
.article .article-body h4 {
  font-size: 16px;
}
.article .article-body p {
  margin-bottom: 20px;
}
.article .article-body ul, .article .article-body ol {
  margin: 20px 0;
  padding-left: 30px;
}
.article .article-body ul li, .article .article-body ol li {
  margin-bottom: 10px;
  line-height: 1.6;
}
.article .article-body ul li {
  list-style-type: disc;
}
.article .article-body img {
  max-width: 100%;
  height: auto;
  margin: 30px 0;
  border-radius: 8px;
}
.article .article-body blockquote {
  margin: 30px 0;
  padding: 20px 25px;
  background: #F8F9FA;
  border-left: 4px solid #1DB6A3;
  font-style: italic;
  color: #666;
}
.article .article-body a {
  color: #1DB6A3;
  text-decoration: none;
  transition: all 0.3s ease;
}
.article .article-body a:hover {
  color: #E63946;
  text-decoration: underline;
}
.article .article-comments {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 2px solid #E0E0E0;
}
.article .article-comments h3 {
  color: #095351;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}

.special-page {
  background: #FFFFFF;
  min-height: 100vh;
}

.special-header {
  background-size: cover;
  background-position: center;
  padding: 60px 20px 40px;
  text-align: center;
  margin-top: -80px;
  padding-top: 140px;
}
.special-header h1 {
  color: #095351;
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .special-header h1 {
    font-size: 40px;
  }
}
.special-header .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.special-header .breadcrumb .breadcrumb-item a {
  color: #095351;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.special-header .breadcrumb .breadcrumb-item a:hover {
  color: #1DB6A3;
}
.special-header .breadcrumb i {
  color: #1DB6A3;
  font-size: 12px;
}

.special-content {
  padding: 40px 0;
}

.catalog-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 15px 20px;
  background: #F8F9FA;
  border-radius: 8px;
}
@media (max-width: 767.98px) {
  .catalog-controls {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
.catalog-controls .catalog-controls-left {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .catalog-controls .catalog-controls-left {
    width: 100%;
    flex-direction: column;
    gap: 15px;
  }
}
.catalog-controls .sort-control,
.catalog-controls .limit-control {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767.98px) {
  .catalog-controls .sort-control,
  .catalog-controls .limit-control {
    width: 100%;
  }
}
.catalog-controls .sort-control label,
.catalog-controls .limit-control label {
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.catalog-controls .sort-control select,
.catalog-controls .limit-control select {
  padding: 8px 15px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-size: 14px;
  color: #333333;
  background: #FFFFFF;
  cursor: pointer;
  min-width: 150px;
}
@media (max-width: 767.98px) {
  .catalog-controls .sort-control select,
  .catalog-controls .limit-control select {
    flex: 1;
    min-width: auto;
  }
}
.catalog-controls .sort-control select:focus,
.catalog-controls .limit-control select:focus {
  outline: none;
  border-color: #1DB6A3;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .products-grid {
    gap: 15px;
  }
}
.products-grid .product-card-container {
  width: calc(33.333% - 17px);
}
@media (max-width: 991.98px) {
  .products-grid .product-card-container {
    width: calc(50% - 12.5px);
  }
}
@media (max-width: 767.98px) {
  .products-grid .product-card-container {
    width: 100%;
  }
}

.pagination-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0;
  padding: 20px 0;
  border-top: 1px solid #E0E0E0;
}
@media (max-width: 767.98px) {
  .pagination-wrapper {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.pagination-wrapper .pagination-results {
  color: #333333;
  font-size: 14px;
}
.pagination-wrapper .pagination-links .pagination {
  display: flex;
  gap: 7px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination-wrapper .pagination-links .pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  color: #333333;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}
.pagination-wrapper .pagination-links .pagination li a:hover {
  background: #1DB6A3;
  color: #FFFFFF;
  border-color: #1DB6A3;
}
.pagination-wrapper .pagination-links .pagination li.active a {
  background: #1DB6A3;
  color: #FFFFFF;
  border-color: #1DB6A3;
}

.no-results {
  text-align: center;
  padding: 80px 20px;
}
.no-results p {
  color: #333333;
  font-size: 18px;
  margin-bottom: 30px;
}
.no-results .btn-continue {
  display: inline-block;
  padding: 15px 40px;
  background: #1DB6A3;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.no-results .btn-continue:hover {
  background: rgb(21.990521327, 138.009478673, 123.6018957346);
  transform: translateY(-2px);
}

.search-page {
  background: #FFFFFF;
  min-height: 100vh;
}

.search-content {
  padding-top: 40px;
  padding-bottom: 60px;
}

.search-panel {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  padding: 24px 30px;
  margin-bottom: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.search-panel__main {
  display: flex;
  gap: 12px;
  align-items: center;
}
@media (max-width: 767.98px) {
  .search-panel__main {
    flex-direction: column;
  }
}
.search-panel__input-wrap {
  flex: 1;
  position: relative;
  min-width: 0;
}
.search-panel__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #4B5E71;
  font-size: 14px;
  pointer-events: none;
}
.search-panel__input {
  width: 100%;
  padding: 11px 16px 11px 40px;
  border: 1.5px solid #E0E0E0;
  border-radius: 8px;
  font-size: 14px;
  color: #333333;
  background: #F8F9FA;
  transition: all 0.3s ease;
  outline: none;
}
.search-panel__input:focus {
  border-color: #1DB6A3;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(29, 182, 163, 0.1);
}
.search-panel__input::placeholder {
  color: rgb(122.7659574468, 145, 167.2340425532);
}
.search-panel__select {
  padding: 11px 16px;
  border: 1.5px solid #E0E0E0;
  border-radius: 8px;
  font-size: 14px;
  color: #333333;
  background: #F8F9FA;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  min-width: 200px;
}
@media (max-width: 767.98px) {
  .search-panel__select {
    width: 100%;
  }
}
.search-panel__select:focus {
  border-color: #1DB6A3;
  background: #FFFFFF;
}
.search-panel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 20px 0 20px 0;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.search-panel__btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.search-panel__btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(29, 182, 163, 0.3);
}
.search-panel__btn {
  background: linear-gradient(135deg, #00E5E1 0%, #00A6A3 100%);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--primary-color);
  border-radius: 20px 0 20px 0;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #00E5E1 0%, #00A6A3 100%);
}
.search-panel__btn:hover {
  background: linear-gradient(135deg, #159A89 0%, #0F8275 100%);
  color: #FFFFFF;
}
.search-panel__btn {
  padding: 11px 28px;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .search-panel__btn {
    width: 100%;
    justify-content: center;
  }
}
.search-panel__options {
  display: flex;
  gap: 24px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.search-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}
.search-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.search-checkbox__box {
  width: 18px;
  height: 18px;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  background: #FFFFFF;
  flex-shrink: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-checkbox__box::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  transform: rotate(-45deg) scaleX(0);
  transition: transform 0.15s ease;
  margin-top: -2px;
}
input:checked + .search-checkbox__box {
  background: #1DB6A3;
  border-color: #1DB6A3;
}
input:checked + .search-checkbox__box::after {
  transform: rotate(-45deg) scaleX(1);
}
.search-checkbox:hover .search-checkbox__box {
  border-color: #1DB6A3;
}
.search-checkbox__label {
  font-size: 14px;
  color: #333333;
  line-height: 1;
}

.search-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #F8F9FA;
  border-radius: 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 12px;
}
.search-controls__left {
  display: flex;
  align-items: center;
}
.search-controls__results {
  font-size: 14px;
  color: #4B5E71;
}
.search-controls__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.search-controls__sort, .search-controls__limit {
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-controls__sort label, .search-controls__limit label {
  font-size: 14px;
  color: #4B5E71;
  font-weight: 500;
  white-space: nowrap;
}
.search-controls__sort select, .search-controls__limit select {
  padding: 7px 12px;
  border: 1.5px solid #E0E0E0;
  border-radius: 8px;
  font-size: 14px;
  color: #333333;
  background: #FFFFFF;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}
.search-controls__sort select:focus, .search-controls__limit select:focus {
  border-color: #1DB6A3;
}

.certificates-page {
  background: #FFFFFF;
  min-height: 100vh;
}

.certificates-header {
  background-size: cover;
  background-position: center;
  padding: 60px 20px 40px;
  text-align: center;
  margin-top: -80px;
  padding-top: 140px;
}
.certificates-header h1 {
  color: #095351;
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .certificates-header h1 {
    font-size: 40px;
  }
}
.certificates-header .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.certificates-header .breadcrumb .breadcrumb-item a {
  color: #095351;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.certificates-header .breadcrumb .breadcrumb-item a:hover {
  color: #1DB6A3;
}
.certificates-header .breadcrumb i {
  color: #1DB6A3;
  font-size: 12px;
}

.certificates-content {
  padding: 40px 0;
}

.pdf-viewer-section {
  margin: 40px 0;
}
.pdf-viewer-section .pdf-controls {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.pdf-viewer-section .pdf-controls .btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #1DB6A3;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.pdf-viewer-section .pdf-controls .btn-download i {
  font-size: 16px;
}
.pdf-viewer-section .pdf-controls .btn-download:hover {
  background: rgb(21.990521327, 138.009478673, 123.6018957346);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 182, 163, 0.3);
}
.pdf-viewer-section .pdf-container {
  width: 100%;
  height: 800px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  overflow: hidden;
  background: #F8F9FA;
}
@media (max-width: 767.98px) {
  .pdf-viewer-section .pdf-container {
    height: 600px;
  }
}
.pdf-viewer-section .pdf-container .pdf-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1600px) {
  .d-xxxl-none {
    display: none !important;
  }
  .d-xxxl-inline {
    display: inline !important;
  }
  .d-xxxl-inline-block {
    display: inline-block !important;
  }
  .d-xxxl-block {
    display: block !important;
  }
  .d-xxxl-flex {
    display: flex !important;
  }
  .d-xxxl-inline-flex {
    display: inline-flex !important;
  }
}
.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-center {
    text-align: center !important;
  }
  .text-md-right {
    text-align: right !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
}
@media (min-width: 1400px) {
  .text-xxl-left {
    text-align: left !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
  .text-xxl-right {
    text-align: right !important;
  }
}
@media (min-width: 1600px) {
  .text-xxxl-left {
    text-align: left !important;
  }
  .text-xxxl-center {
    text-align: center !important;
  }
  .text-xxxl-right {
    text-align: right !important;
  }
}
.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.ml-3 {
  margin-left: 1rem !important;
}

.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mr-4 {
  margin-right: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4 {
  margin-left: 1.5rem !important;
}

.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ml-5 {
  margin-left: 3rem !important;
}

.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pr-3 {
  padding-right: 1rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pr-4 {
  padding-right: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4 {
  padding-left: 1.5rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/*# sourceMappingURL=style.css.map */
