/**
 * Flavor Print - Main Stylesheet
 * @package Flavor_Print
 */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2937;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem;
  font-weight: 600;
  line-height: 1.3;
}

p {
  margin: 0 0 1rem;
  text-align: justify;
}

a {
  color: #1a56db;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #1e40af;
}

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

button {
  cursor: pointer;
  font-family: inherit;
}

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

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section-header__title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  margin: 0;
}
.section-header__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #1a56db;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

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

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

.site-main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

.topbar {
  background: #1f2937;
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar__promo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar__text {
  opacity: 0.9;
}
.topbar__links {
  display: none;
  gap: 20px;
}
@media (min-width: 768px) {
  .topbar__links {
    display: flex;
  }
}
.topbar__link {
  color: #fff;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.topbar__link:hover {
  opacity: 1;
  color: #fff;
}

.header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}
.header.is-scrolled {
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__logo {
  flex-shrink: 0;
}
.header__logo-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1f2937;
  font-size: 22px;
  font-weight: 700;
}
.header__logo-text:hover {
  color: #1f2937;
}
.header__logo-icon {
  color: #1a56db;
}
.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }
}
.header__menu {
  display: flex;
  gap: 8px;
}
.header__menu-item {
  position: relative;
}
.header__menu-item.has-megamenu:hover .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__menu-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  color: #1f2937;
  font-weight: 500;
  transition: color 0.2s ease;
}
.header__menu-link:hover {
  color: #1a56db;
}
.header__search {
  flex: 1;
  max-width: 400px;
  position: relative;
  display: none;
}
@media (min-width: 1024px) {
  .header__search {
    display: block;
  }
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.header__action {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #1f2937;
  transition: color 0.2s ease;
}
.header__action:hover {
  color: #1a56db;
}
.header__action--menu {
  display: flex;
}
@media (min-width: 1024px) {
  .header__action--menu {
    display: none;
  }
}
.header__cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: #1a56db;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  border-radius: 9999px;
}
.header__wishlist-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: #1a56db;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  border-radius: 9999px;
}
.header__wishlist-count:empty {
  display: none;
}
.header__action--wishlist:hover {
  color: #1a56db;
}

.megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 100;
}
.megamenu__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.megamenu__list li a {
  display: block;
  padding: 8px 12px;
  color: #1f2937;
  transition: all 0.2s ease;
}
.megamenu__list li a:hover {
  background: #f8fafc;
  color: #1a56db;
}

.search-form {
  display: flex;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  overflow: hidden;
  border-radius: 14px;
  transition: all 0.2s ease;
}
.search-form:focus-within {
  border-color: #1a56db;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.06);
}
.search-form__input {
  flex: 1;
  padding: 12px 18px;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
}
.search-form__button {
  padding: 12px 18px;
  background: transparent;
  border: none;
  color: #6b7280;
  cursor: pointer;
  transition: color 0.2s ease;
}
.search-form__button:hover {
  color: #1a56db;
}
.search-form--large {
  max-width: 440px;
  margin: 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}
.search-form--large .search-form__input {
  padding: 16px 20px;
  font-size: 15px;
}
.search-form--large .search-form__button {
  padding: 16px 20px;
  background: #1a56db;
  color: #fff;
  border-radius: 0 14px 14px 0;
}
.search-form--large .search-form__button:hover {
  background: #1e40af;
}
.search-form--large:focus-within {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  display: none;
  z-index: 100;
  max-height: 400px;
  overflow-y: auto;
}
.search-results.is-visible {
  display: block;
}
.search-results__loading {
  padding: 20px;
  text-align: center;
  color: #6b7280;
}
.search-results.is-loading .search-results__content {
  display: none;
}
.search-results.is-loading .search-results__loading {
  display: block;
}
.search-results:not(.is-loading) .search-results__loading {
  display: none;
}
.search-results__item {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.2s ease;
}
.search-results__item:hover {
  background: #f8fafc;
}
.search-results__image {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.search-results__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.search-results__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.search-results__title {
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
}
.search-results__price {
  font-size: 14px;
  color: #1a56db;
  font-weight: 600;
}
.search-results__view-all {
  display: block;
  padding: 12px 16px;
  text-align: center;
  font-weight: 500;
  background: #f8fafc;
}
.search-results__empty {
  padding: 20px;
  text-align: center;
  color: #6b7280;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
}
.mobile-menu.is-open {
  display: block;
}
.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
}
.mobile-menu__title {
  font-size: 18px;
  font-weight: 600;
}
.mobile-menu__close {
  background: none;
  border: none;
  padding: 8px;
  color: #6b7280;
}
.mobile-menu__search {
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
}
.mobile-menu__search .search-form {
  border: 1px solid #e5e7eb;
}
.mobile-menu__nav {
  flex: 1;
  overflow-y: auto;
  padding: 16px 0;
}
.mobile-menu__item {
  border-bottom: 1px solid #f3f4f6;
}
.mobile-menu__item.is-open .mobile-menu__submenu {
  display: block;
}
.mobile-menu__item.is-open .mobile-menu__link svg {
  transform: rotate(90deg);
}
.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  color: #1f2937;
  font-weight: 500;
}
.mobile-menu__submenu {
  display: none;
  background: #f8fafc;
  padding: 8px 0;
}
.mobile-menu__submenu-list li a {
  display: block;
  padding: 10px 20px 10px 36px;
  color: #6b7280;
  font-size: 14px;
}
.mobile-menu__footer {
  padding: 16px 20px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu__footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1f2937;
  font-weight: 500;
  padding: 8px 0;
}
.mobile-menu__footer-link:hover {
  color: #1a56db;
}

body.menu-open {
  overflow: hidden;
}

.footer {
  background: #1f2937;
  color: #fff;
  margin-top: auto;
}
.footer__main {
  padding: 48px 0;
}
@media (min-width: 1024px) {
  .footer__main {
    padding: 64px 0;
  }
}
.footer__grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.footer__logo {
  margin-bottom: 16px;
}
.footer__logo img {
  max-width: 140px;
  height: auto;
}
.footer__logo .custom-logo {
  max-width: 140px;
  height: auto;
}
.footer__logo-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.footer__logo-text:hover {
  color: #fff;
}
.footer__description {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: all 0.2s ease;
}
.footer__social-link:hover {
  background: #1a56db;
  border-color: #1a56db;
  color: #fff;
}
.footer__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__list a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer__list a:hover {
  color: #fff;
}
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__contact-item {
  display: flex;
  gap: 10px;
  font-size: 14px;
}
.footer__contact-item svg {
  flex-shrink: 0;
  opacity: 0.6;
}
.footer__contact-item a {
  color: rgba(255, 255, 255, 0.8);
}
.footer__contact-item a:hover {
  color: #fff;
}
.footer__payments {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__payments-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (min-width: 768px) {
  .footer__payments-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__payments-label {
  font-size: 13px;
  opacity: 0.7;
}
.footer__payments-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__payment-icon {
  height: 24px;
  width: auto;
}
.footer__payment-text {
  font-size: 13px;
  opacity: 0.7;
}
.footer__bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__copyright {
  font-size: 13px;
  opacity: 0.7;
  margin: 0;
}
.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.footer__legal a:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.3);
}
.btn:focus:not(:focus-visible) {
  box-shadow: none;
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.3);
}
.btn--primary {
  background: #1a56db;
  color: #fff;
  border-color: #1a56db;
  box-shadow: 0 4px 14px 0 rgba(26, 86, 219, 0.35);
}
.btn--primary:hover {
  background: #1e40af;
  border-color: #1e40af;
  color: #fff;
  box-shadow: 0 8px 25px 0 rgba(26, 86, 219, 0.3);
  transform: translateY(-2px);
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--outline {
  background: transparent;
  color: #1a56db;
  border-color: #1a56db;
}
.btn--outline:hover {
  background: #1a56db;
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(26, 86, 219, 0.35);
  transform: translateY(-2px);
}
.btn--white {
  background: #fff;
  color: #1a56db;
  border-color: #fff;
}
.btn--white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}
.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 14px;
}
.btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}
.btn--full {
  width: 100%;
}
.btn.is-loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}
.btn.is-loading::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e5e7eb;
  border-top-color: #1a56db;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.price-filter__inputs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.price-filter__input-group {
  flex: 1;
  position: relative;
}
.price-filter__input-group label {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
}
.price-filter__input {
  width: 100%;
  padding: 8px 30px 8px 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}
.price-filter__currency {
  position: absolute;
  right: 10px;
  bottom: 8px;
  font-size: 14px;
  color: #6b7280;
}
.price-filter__separator {
  color: #6b7280;
  padding-top: 18px;
}
.price-filter__button {
  width: 100%;
  padding: 10px;
  background: #1a56db;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}
.price-filter__button:hover {
  background: #1e40af;
}

.checkbox-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.checkbox-filter__input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkbox-filter__input:checked + .checkbox-filter__checkmark {
  background: #1a56db;
  border-color: #1a56db;
}
.checkbox-filter__input:checked + .checkbox-filter__checkmark::after {
  content: "";
  width: 10px;
  height: 6px;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg) translateY(-1px);
}
.checkbox-filter__checkmark {
  width: 18px;
  height: 18px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.checkbox-filter__label {
  font-size: 14px;
}

.woocommerce form .form-row {
  margin-bottom: 16px;
}
.woocommerce form .form-row label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
}
.woocommerce form .form-row input,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  transition: border-color 0.2s ease;
}
.woocommerce form .form-row input:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
  outline: none;
  border-color: #1a56db;
}
.woocommerce form .form-row .required {
  color: #ef4444;
}

.quantity {
  display: inline-flex;
  align-items: center;
}
.quantity__wrapper {
  display: flex;
  align-items: stretch;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  transition: border-color 0.2s ease;
}
.quantity__wrapper:focus-within {
  border-color: #1a56db;
}
.quantity__btn {
  width: 44px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: none;
  color: #1f2937;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.quantity__btn:hover {
  background: #1a56db;
  color: #fff;
}
.quantity__btn--minus {
  border-right: 1px solid #f3f4f6;
}
.quantity__btn--plus {
  border-left: 1px solid #f3f4f6;
}
.quantity .qty {
  width: 56px;
  padding: 12px 8px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  -moz-appearance: textfield;
}
.quantity .qty::-webkit-outer-spin-button, .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity .qty:focus {
  outline: none;
}

.product-card {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: rgba(26, 86, 219, 0.3);
}
.product-card:hover .product-card__image {
  transform: scale(1.08);
}
.product-card:hover .product-card__add-to-cart {
  background: #1e40af;
}
.product-card__image-wrapper {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.product-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
}
.product-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 9999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  z-index: 5;
}
.product-card__badge--sale {
  background: linear-gradient(135deg, #ef4444 0%, rgb(234.9802955665, 21.0197044335, 21.0197044335) 100%);
  color: #fff;
}
.product-card__badge--featured {
  background: linear-gradient(135deg, #1a56db 0%, #0ea5e9 100%);
  color: #fff;
  top: auto;
  bottom: 12px;
}
.product-card__badge--new {
  background: linear-gradient(135deg, #10b981 0%, rgb(11.9402985075, 138.0597014925, 96.2686567164) 100%);
  color: #fff;
}
.product-card__content {
  padding: 18px;
}
.product-card__category {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: #1a56db;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  padding: 3px 8px;
  background: rgba(26, 86, 219, 0.06);
  border-radius: 6px;
}
.product-card__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__title a {
  color: #1f2937;
  transition: color 0.2s ease;
}
.product-card__title a:hover {
  color: #1a56db;
}
.product-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.product-card__rating .star-rating {
  font-size: 14px;
  color: #f59e0b;
}
.product-card__rating-count {
  font-size: 12px;
  color: #9ca3af;
}
.product-card__price {
  font-size: 20px;
  font-weight: 700;
  color: #1a56db;
  margin-bottom: 14px;
}
.product-card__price del {
  font-size: 14px;
  color: #9ca3af;
  font-weight: 400;
  margin-right: 8px;
}
.product-card__price ins {
  text-decoration: none;
}
.product-card__add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: #1a56db;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px 0 rgba(26, 86, 219, 0.35);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card__add-to-cart:hover {
  background: #1e40af;
  box-shadow: 0 8px 25px 0 rgba(26, 86, 219, 0.3);
  transform: translateY(-2px);
}
.product-card__add-to-cart:active {
  transform: translateY(0);
}
.product-card__add-to-cart.is-loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}
.product-card__add-to-cart.is-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.product-card__add-to-cart.is-added {
  background: linear-gradient(135deg, #10b981 0%, rgb(11.9402985075, 138.0597014925, 96.2686567164) 100%);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}
.product-card__add-to-cart--variable, .product-card__add-to-cart--details {
  background: #f1f5f9;
  color: #1f2937;
  box-shadow: none;
}
.product-card__add-to-cart--variable:hover, .product-card__add-to-cart--details:hover {
  background: #1a56db;
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(26, 86, 219, 0.35);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
  .category-card {
    padding: 36px 28px;
  }
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: rgba(26, 86, 219, 0.2);
}
.category-card:hover .category-card__icon {
  transform: scale(1.1);
  background: #1a56db;
  color: #fff;
}
.category-card__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(26, 86, 219, 0.06);
  border-radius: 14px;
  color: #1a56db;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-card__icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.category-card__title {
  font-size: 17px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}
.category-card__count {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 12px;
}
.category-card__link {
  font-size: 13px;
  font-weight: 500;
  color: #1a56db;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}
.category-card__link:hover {
  gap: 8px;
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
  .brand-card {
    height: 110px;
  }
}
.brand-card:hover {
  transform: translateY(-4px);
  border-color: #1a56db;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}
.brand-card:hover .brand-card__logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
.brand-card:hover .brand-card__name {
  color: #1a56db;
}
.brand-card__logo {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.brand-card__name {
  font-size: 20px;
  font-weight: 700;
  color: #6b7280;
  transition: color 0.2s ease;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.blog-card:hover .blog-card__image {
  transform: scale(1.08);
}
.blog-card:hover .blog-card__link {
  gap: 10px;
}
.blog-card__image-link {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card__image-link--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.blog-card__placeholder {
  color: #9ca3af;
}
.blog-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card__content {
  padding: 22px;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #6b7280;
}
.blog-card__date {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-card__category {
  color: #1a56db;
  font-weight: 600;
  padding: 3px 10px;
  background: rgba(26, 86, 219, 0.06);
  border-radius: 9999px;
  font-size: 12px;
}
.blog-card__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}
.blog-card__title a {
  color: #1f2937;
  transition: color 0.2s ease;
}
.blog-card__title a:hover {
  color: #1a56db;
}
.blog-card__excerpt {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #1a56db;
  transition: gap 0.2s ease;
}

.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #6b7280;
}
.wishlist-btn:hover {
  background: #fff;
  transform: scale(1.1);
  color: #1a56db;
}
.wishlist-btn:hover .wishlist-btn__icon {
  transform: scale(1.1);
}
.wishlist-btn.is-active {
  background: #1a56db;
  color: #fff;
}
.wishlist-btn.is-active .wishlist-btn__icon {
  fill: currentColor;
}
.wishlist-btn.is-loading {
  pointer-events: none;
}
.wishlist-btn.is-loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(26, 86, 219, 0.2);
  border-top-color: #1a56db;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.wishlist-btn.is-loading .wishlist-btn__icon {
  opacity: 0;
}
.wishlist-btn__icon {
  transition: transform 0.2s ease;
}

.wishlist-btn-single {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #1f2937;
  font-size: 15px;
  font-weight: 500;
  margin-top: 16px;
}
.wishlist-btn-single:hover {
  border-color: #1a56db;
  color: #1a56db;
  background: rgba(26, 86, 219, 0.06);
}
.wishlist-btn-single.is-active {
  background: rgba(26, 86, 219, 0.06);
  border-color: #1a56db;
  color: #1a56db;
}
.wishlist-btn-single.is-active .wishlist-btn-single__icon {
  fill: #1a56db;
}
.wishlist-btn-single.is-loading {
  pointer-events: none;
  color: transparent;
}
.wishlist-btn-single.is-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(26, 86, 219, 0.2);
  border-top-color: #1a56db;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.wishlist-btn-single__icon {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.wishlist-btn-single__text {
  font-weight: 600;
}

.wishlist-page {
  padding: 40px 0 80px;
}
.wishlist-page__empty {
  text-align: center;
  padding: 60px 20px;
  background: #f8fafc;
  border-radius: 20px;
}
.wishlist-page__empty-icon {
  color: #9ca3af;
  margin-bottom: 20px;
}
.wishlist-page__empty-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.wishlist-page__empty-text {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.wishlist-page__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 768px) {
  .wishlist-page__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .wishlist-page__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.wishlist-page__shared-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.06) 0%, rgba(14, 165, 233, 0.08) 100%);
  border: 1px solid rgba(26, 86, 219, 0.15);
  border-radius: 20px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .wishlist-page__shared-banner {
    flex-wrap: nowrap;
  }
}
.wishlist-page__shared-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a56db;
  color: #fff;
  border-radius: 14px;
  flex-shrink: 0;
}
.wishlist-page__shared-text {
  flex: 1;
}
.wishlist-page__shared-text strong {
  display: block;
  font-size: 16px;
  color: #1f2937;
  margin-bottom: 4px;
}
.wishlist-page__shared-text span {
  font-size: 14px;
  color: #6b7280;
}
.wishlist-page__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  background: #f8fafc;
  border-radius: 20px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .wishlist-page__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.wishlist-page__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
}
.wishlist-page__count {
  font-size: 15px;
  color: #6b7280;
  padding-right: 24px;
  border-right: 1px solid #e5e7eb;
}
.wishlist-page__total {
  font-size: 15px;
  color: #6b7280;
}
.wishlist-page__total strong {
  color: #1a56db;
  font-size: 18px;
}
.wishlist-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.wishlist-page__bottom-cta {
  margin-top: 40px;
  text-align: center;
  padding: 32px;
  background: #f8fafc;
  border-radius: 20px;
}
.wishlist-page__bottom-total {
  opacity: 0.9;
  margin-left: 8px;
}
.wishlist-page__shared-loading {
  text-align: center;
  padding: 60px 20px;
}
.wishlist-page__shared-loading p {
  margin-top: 16px;
  color: #6b7280;
}
.wishlist-page__loader {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border: 3px solid #f3f4f6;
  border-top-color: #1a56db;
  border-radius: 50%;
  animation: wishlistSpin 0.8s linear infinite;
}
@keyframes wishlistSpin {
  to {
    transform: rotate(360deg);
  }
}
.wishlist-page__expired {
  padding: 40px 0;
}

.wishlist-share-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  padding: 20px;
}
.wishlist-share-modal__content {
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 40px 32px;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.wishlist-share-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: none;
  border-radius: 9999px;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s ease;
}
.wishlist-share-modal__close:hover {
  background: #f1f5f9;
  color: #1f2937;
}
.wishlist-share-modal__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 86, 219, 0.06);
  color: #1a56db;
  border-radius: 20px;
}
.wishlist-share-modal__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.wishlist-share-modal__desc {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 24px;
}
.wishlist-share-modal__input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.wishlist-share-modal__input {
  flex: 1;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  font-size: 14px;
  color: #1f2937;
}
.wishlist-share-modal__input:focus {
  outline: none;
  border-color: #1a56db;
}
.wishlist-share-modal__note {
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
}

.btn--ghost {
  background: transparent;
  color: #6b7280;
  border: 1px solid #e5e7eb;
}
.btn--ghost:hover {
  background: #f8fafc;
  color: #ef4444;
  border-color: #ef4444;
}
.btn--sm {
  padding: 10px 16px;
  font-size: 13px;
}
.btn--sm svg {
  width: 14px;
  height: 14px;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  margin: 0 -20px;
}
@media (min-width: 768px) {
  .hero-slider {
    margin: 0;
  }
}
.hero-slider__container {
  position: relative;
}
.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-position: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease, visibility 0.6s ease;
}
@media (min-width: 768px) {
  .hero-slider__slide {
    min-height: 500px;
  }
}
@media (min-width: 1024px) {
  .hero-slider__slide {
    min-height: 600px;
  }
}
.hero-slider__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.hero-slider__slide.slide-out-left {
  transform: translateX(-100%);
  opacity: 0;
}
.hero-slider__slide.slide-in-right {
  transform: translateX(100%);
}
.hero-slider__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}
.hero-slider__slide-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}
.hero-slider__slide.is-active .hero-slider__slide-content {
  opacity: 1;
  transform: translateY(0);
}
.hero-slider__content {
  position: relative;
  max-width: 600px;
  color: #fff;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .hero-slider__content {
    padding: 60px 0;
  }
}
.hero-slider__badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #1a56db 0%, #0ea5e9 100%);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border-radius: 9999px;
  box-shadow: 0 4px 14px 0 rgba(26, 86, 219, 0.35);
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-slider__title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.6s ease 0.3s both;
}
.hero-slider__subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 24px;
  line-height: 1.6;
  animation: fadeInUp 0.6s ease 0.4s both;
}
.hero-slider__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease 0.5s both;
}
.hero-slider__price-label {
  font-size: 16px;
  opacity: 0.8;
}
.hero-slider__price-value {
  font-size: 36px;
  font-weight: 700;
}
.hero-slider__cta {
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  animation: fadeInUp 0.6s ease 0.6s both;
}
.hero-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 14px;
  color: #1f2937;
  display: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .hero-slider__nav {
    display: flex;
  }
}
.hero-slider__nav:hover {
  background: #fff;
  color: #1a56db;
  transform: translateY(-50%) scale(1.08);
}
.hero-slider__nav--prev {
  left: 24px;
}
.hero-slider__nav--next {
  right: 24px;
}
.hero-slider__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-slider__dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.hero-slider__dot.is-active, .hero-slider__dot:hover {
  background: #fff;
  border-color: #fff;
  transform: scale(1.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.products-slider {
  position: relative;
  padding: 8px 0;
}
.products-slider__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px 12px;
}
.products-slider__track::-webkit-scrollbar {
  display: none;
}
.products-slider__track.is-loading {
  opacity: 0.5;
  pointer-events: none;
}
.products-slider__track .product-card {
  flex: 0 0 calc(50% - 10px);
  min-width: 0;
}
@media (min-width: 640px) {
  .products-slider__track .product-card {
    flex: 0 0 calc(33.333% - 14px);
  }
}
@media (min-width: 1024px) {
  .products-slider__track .product-card {
    flex: 0 0 calc(25% - 15px);
  }
}
.products-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  display: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f2937;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}
@media (min-width: 1024px) {
  .products-slider__nav {
    display: flex;
  }
}
.products-slider__nav:hover {
  border-color: #1a56db;
  color: #1a56db;
  background: rgba(26, 86, 219, 0.06);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  transform: translateY(-50%) scale(1.05);
}
.products-slider__nav--prev {
  left: -24px;
}
.products-slider__nav--next {
  right: -24px;
}

.products-tabs__loading {
  display: none;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  z-index: 5;
}
.products-tabs__loading.is-visible {
  display: flex;
}

.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #1f2937;
  color: #fff;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  transform: translateX(120%);
  transition: transform 0.3s ease;
  max-width: 360px;
}
.toast.is-visible {
  transform: translateX(0);
}
.toast--success {
  background: #10b981;
}
.toast--error {
  background: #ef4444;
}
.toast__message {
  font-size: 14px;
  line-height: 1.4;
}
.toast__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  opacity: 0.7;
  padding: 0;
  margin-left: auto;
  cursor: pointer;
}
.toast__close:hover {
  opacity: 1;
}

.breadcrumb {
  font-size: 13px;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb__item a {
  color: #6b7280;
}
.breadcrumb__item a:hover {
  color: #1a56db;
}
.breadcrumb__item:last-child {
  color: #1f2937;
  font-weight: 500;
}
.breadcrumb__separator {
  color: #9ca3af;
}

.woocommerce-pagination {
  display: flex;
  justify-content: center;
}
.woocommerce-pagination ul {
  display: flex;
  gap: 4px;
}
.woocommerce-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  color: #1f2937;
  transition: all 0.2s ease;
}
.woocommerce-pagination .page-numbers:hover, .woocommerce-pagination .page-numbers.current {
  background: #1a56db;
  border-color: #1a56db;
  color: #fff;
}

.minicart {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.3s, opacity 0.2s ease;
}
.minicart.is-open {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s 0s, opacity 0.2s ease;
}
.minicart.is-open .minicart__panel {
  transform: translateX(0);
}
.minicart__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  cursor: pointer;
}
.minicart__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.minicart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #f3f4f6;
  background: #ffffff;
}
.minicart__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
}
.minicart__title svg {
  color: #1a56db;
}
.minicart__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  background: #1a56db;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 9999px;
}
.minicart__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: none;
  border-radius: 14px;
  color: #1f2937;
  cursor: pointer;
  transition: all 0.2s ease;
}
.minicart__close:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.minicart__shipping {
  padding: 16px 24px;
  background: rgba(26, 86, 219, 0.06);
  border-bottom: 1px solid #f3f4f6;
}
.minicart__shipping-text {
  margin: 0 0 12px;
  font-size: 14px;
  color: #1f2937;
  text-align: center;
}
.minicart__shipping-text strong {
  color: #1a56db;
}
.minicart__shipping-text--free {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #10b981;
  font-weight: 600;
}
.minicart__shipping-text--free svg {
  color: #10b981;
}
.minicart__progress {
  height: 8px;
  background: #f3f4f6;
  border-radius: 9999px;
  overflow: hidden;
}
.minicart__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #1a56db, #0ea5e9);
  border-radius: 9999px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.minicart__content {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}
.minicart__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px 24px;
  text-align: center;
}
.minicart__empty svg {
  color: #e5e7eb;
  margin-bottom: 16px;
}
.minicart__empty p {
  margin: 0 0 20px;
  color: #9ca3af;
  font-size: 15px;
}
.minicart__items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.minicart__item {
  display: flex;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.2s ease;
}
.minicart__item:hover {
  background: #f8fafc;
}
.minicart__item-image {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  background: #f8fafc;
  border-radius: 14px;
  overflow: hidden;
}
.minicart__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.minicart__item-details {
  flex: 1;
  min-width: 0;
}
.minicart__item-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.minicart__item-title a {
  color: #1f2937;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.minicart__item-title a:hover {
  color: #1a56db;
}
.minicart__item-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}
.minicart__item-qty {
  color: #9ca3af;
}
.minicart__item-price {
  font-weight: 600;
  color: #1a56db;
}
.minicart__item-remove {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 10px;
  color: #9ca3af;
  cursor: pointer;
  transition: all 0.2s ease;
}
.minicart__item-remove:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.minicart__footer {
  padding: 20px 24px;
  border-top: 1px solid #f3f4f6;
  background: #ffffff;
}
.minicart__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.minicart__total-label {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
}
.minicart__total-value {
  font-size: 20px;
  font-weight: 700;
  color: #1a56db;
}
.minicart__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.minicart-open {
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header__title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-header__title span {
  color: #1a56db;
}
.section-header__subtitle {
  font-size: 16px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.usp-bar {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid #f3f4f6;
  padding: 28px 0;
}
.usp-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .usp-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.usp-bar__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}
@media (min-width: 1024px) {
  .usp-bar__item {
    gap: 18px;
    padding: 20px;
  }
}
.usp-bar__item:hover {
  transform: translateY(-4px);
}
.usp-bar__item:hover .usp-bar__icon {
  transform: scale(1.1) rotate(-5deg);
}
.usp-bar__item:hover .usp-bar__title {
  color: #1a56db;
}
.usp-bar__item:nth-child(1) .usp-bar__icon {
  background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 188, 212, 0.35);
}
.usp-bar__item:nth-child(2) .usp-bar__icon {
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(233, 30, 99, 0.35);
}
.usp-bar__item:nth-child(3) .usp-bar__icon {
  background: linear-gradient(135deg, #ffeb3b 0%, #fbc02d 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 235, 59, 0.35);
}
.usp-bar__item:nth-child(4) .usp-bar__icon {
  background: linear-gradient(135deg, #212121 0%, #000000 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(33, 33, 33, 0.35);
}
.usp-bar__item:nth-child(1):hover .usp-bar__icon {
  box-shadow: 0 8px 24px rgba(0, 188, 212, 0.45);
}
.usp-bar__item:nth-child(2):hover .usp-bar__icon {
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.45);
}
.usp-bar__item:nth-child(3):hover .usp-bar__icon {
  box-shadow: 0 8px 24px rgba(255, 235, 59, 0.45);
}
.usp-bar__item:nth-child(4):hover .usp-bar__icon {
  box-shadow: 0 8px 24px rgba(33, 33, 33, 0.45);
}
.usp-bar__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
  color: #fff;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 1024px) {
  .usp-bar__icon {
    width: 58px;
    height: 58px;
  }
}
.usp-bar__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  transition: color 0.2s ease;
}
.usp-bar__description {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.categories-section {
  padding: 48px 0;
}
@media (min-width: 1024px) {
  .categories-section {
    padding: 80px 0;
  }
}
.categories-section__wrapper--with-deal {
  display: grid;
  gap: 24px;
}
@media (min-width: 1024px) {
  .categories-section__wrapper--with-deal {
    grid-template-columns: 30% 1fr;
    gap: 32px;
    align-items: start;
  }
}
.categories-section__categories .section-header {
  text-align: left;
  margin-bottom: 24px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .categories-grid--compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@keyframes dealFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes dealPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(26, 86, 219, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(26, 86, 219, 0);
  }
}
.deal-of-day {
  background: #ffffff;
  border: 2px solid #1a56db;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  animation: dealFadeIn 0.6s ease-out;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.deal-of-day:hover {
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04), 0 0 0 4px rgba(26, 86, 219, 0.1);
  transform: translateY(-4px);
}
.deal-of-day__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
  color: #fff;
}
.deal-of-day__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
.deal-of-day__title svg {
  animation: dealPulse 2s infinite;
}
.deal-of-day__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: #fff;
  color: #1a56db;
  font-size: 13px;
  font-weight: 700;
  border-radius: 9999px;
}
.deal-of-day__badge .woocommerce-Price-amount {
  font-weight: 700;
}
.deal-of-day__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .deal-of-day__content {
    padding: 28px;
  }
}
.deal-of-day__image {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.deal-of-day__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.deal-of-day__image:hover {
  transform: scale(1.05);
}
.deal-of-day__info {
  text-align: center;
}
.deal-of-day__product-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.4;
}
.deal-of-day__product-title a {
  color: #1f2937;
  transition: color 0.2s ease;
}
.deal-of-day__product-title a:hover {
  color: #1a56db;
}
.deal-of-day__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.deal-of-day__price-sale {
  font-size: 28px;
  font-weight: 700;
  color: #1a56db;
}
.deal-of-day__price-sale .woocommerce-Price-amount {
  font-size: inherit;
}
.deal-of-day__price-regular {
  font-size: 16px;
  color: #9ca3af;
  text-decoration: line-through;
}
.deal-of-day__stock {
  margin-bottom: 20px;
}
.deal-of-day__stock-bar {
  height: 8px;
  background: #f3f4f6;
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 10px;
}
.deal-of-day__stock-progress {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  border-radius: 9999px;
  transition: width 1s ease-out;
}
.deal-of-day__stock-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #6b7280;
}
.deal-of-day__stock-info strong {
  color: #1f2937;
}
.deal-of-day__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.deal-of-day__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px 0 rgba(26, 86, 219, 0.35);
}
.deal-of-day__btn:active {
  transform: translateY(0);
}
.deal-of-day__timer {
  padding: 16px 20px;
  background: #f8fafc;
  border-top: 1px solid #f3f4f6;
  text-align: center;
}
.deal-of-day__timer-label {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 12px;
}
.deal-of-day__countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.deal-of-day__countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
}
.deal-of-day__countdown-value {
  font-size: 24px;
  font-weight: 700;
  color: #1a56db;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.deal-of-day__countdown-unit {
  font-size: 11px;
  color: #9ca3af;
  text-transform: uppercase;
  margin-top: 4px;
}
.deal-of-day__countdown-sep {
  font-size: 24px;
  font-weight: 700;
  color: #9ca3af;
}
.deal-of-day__expired {
  padding: 60px 24px;
  text-align: center;
}
.deal-of-day__expired-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  color: #9ca3af;
  border-radius: 50%;
}
.deal-of-day__expired-text {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 8px;
}
.deal-of-day__expired-subtext {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.brands-section {
  padding: 48px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
@media (min-width: 1024px) {
  .brands-section {
    padding: 80px 0;
  }
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
}

.brands-slider {
  overflow: hidden;
}
.brands-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.products-tabs-section {
  padding: 48px 0;
}
@media (min-width: 1024px) {
  .products-tabs-section {
    padding: 80px 0;
  }
}

.products-tabs__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .products-tabs__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.products-tabs__nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.products-tabs__tab {
  padding: 12px 24px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.products-tabs__tab:hover {
  border-color: #1a56db;
  color: #1a56db;
  background: rgba(26, 86, 219, 0.06);
}
.products-tabs__tab.is-active {
  background: #1a56db;
  border-color: #1a56db;
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(26, 86, 219, 0.35);
}
.products-tabs__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.products-tabs__slider-nav {
  display: none;
  gap: 8px;
}
@media (min-width: 768px) {
  .products-tabs__slider-nav {
    display: flex;
  }
}
.products-tabs__nav-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #1f2937;
}
.products-tabs__nav-btn:hover {
  background: #1a56db;
  border-color: #1a56db;
  color: #fff;
}
.products-tabs__nav-btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.products-tabs__nav-btn.swiper-button-disabled:hover {
  background: #ffffff;
  border-color: #e5e7eb;
  color: #1f2937;
}
.products-tabs__view-all {
  display: none;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #1a56db;
  transition: gap 0.2s ease;
}
@media (min-width: 768px) {
  .products-tabs__view-all {
    display: flex;
  }
}
.products-tabs__view-all:hover {
  gap: 10px;
}
.products-tabs__content {
  position: relative;
}
.products-tabs__loading {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  display: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 14px;
}
.products-tabs__loading.is-visible {
  display: flex;
}
.products-tabs__empty {
  padding: 40px 20px;
  text-align: center;
  color: #6b7280;
}

.products-tabs-slider {
  overflow: hidden;
}
.products-tabs-slider .swiper-wrapper {
  margin-bottom: 20px;
}
.products-tabs-slider .swiper-slide {
  height: auto;
}
.products-tabs-slider .swiper-slide .product-card {
  height: 100%;
}

.newsletter-section {
  padding: 48px 0;
  background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .newsletter-section {
    padding: 80px 0;
  }
}
.newsletter-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.newsletter-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.newsletter {
  display: flex;
  flex-direction: column;
  gap: 36px;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .newsletter {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.newsletter__content {
  flex: 1;
}
.newsletter__title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 12px;
}
.newsletter__subtitle {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.6;
}
.newsletter__discount {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  backdrop-filter: blur(5px);
}
.newsletter__form {
  flex: 1;
  max-width: 440px;
}
.newsletter__form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .newsletter__form-group {
    flex-direction: row;
  }
}
.newsletter__input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  outline: none;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.04);
}
.newsletter__input::-moz-placeholder {
  color: #9ca3af;
}
.newsletter__input::placeholder {
  color: #9ca3af;
}
.newsletter__input:focus {
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.04), 0 0 0 3px rgba(255, 255, 255, 0.3);
}
.newsletter__submit {
  white-space: nowrap;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}
.newsletter__consent {
  font-size: 12px;
  opacity: 0.75;
  margin-top: 14px;
  line-height: 1.5;
}
.newsletter__message {
  margin-top: 14px;
}
.newsletter__message .success {
  color: #a7f3d0;
  font-weight: 500;
}
.newsletter__message .error {
  color: #fecaca;
  font-weight: 500;
}

.featured-products-section {
  padding: 48px 0;
}
@media (min-width: 1024px) {
  .featured-products-section {
    padding: 80px 0;
  }
}
.featured-products-section .section-header--with-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.featured-products-section .section-header__nav {
  display: flex;
  gap: 8px;
}
.featured-products-section .slider-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f2937;
  cursor: pointer;
  transition: all 0.2s ease;
}
.featured-products-section .slider-nav-btn:hover {
  background: #1a56db;
  border-color: #1a56db;
  color: #fff;
}
.featured-products-section .slider-nav-btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.featured-products {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .featured-products {
    grid-template-columns: 2fr 1fr;
  }
}
.featured-products__slider-wrapper {
  overflow: hidden;
}
.featured-products__slider {
  overflow: visible;
}
.featured-products__slider .swiper-slide {
  height: auto;
}
.featured-products__banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a56db 0%, #0ea5e9 100%);
  border-radius: 28px;
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
@media (min-width: 768px) {
  .featured-products__banner {
    height: 100%;
  }
}
.featured-products__banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.25;
  mix-blend-mode: overlay;
}
.featured-products__banner-content {
  position: relative;
  padding: 32px;
  color: #fff;
}
.featured-products__banner-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #f59e0b;
  color: #1f2937;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  border-radius: 9999px;
}
.featured-products__banner-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
.featured-products__banner-subtitle {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.6;
}
.featured-products__banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: gap 0.2s ease;
}
.featured-products__banner-cta:hover {
  gap: 12px;
}

.blog-section {
  padding: 48px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
@media (min-width: 1024px) {
  .blog-section {
    padding: 80px 0;
  }
}

.blog-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-us-section {
  padding: 48px 0;
  background: #ffffff;
}
@media (min-width: 1024px) {
  .why-us-section {
    padding: 80px 0;
  }
}

.why-us-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .why-us-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-us-card {
  position: relative;
  padding: 32px 24px;
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.why-us-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a56db 0%, #0ea5e9 100%);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-us-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.why-us-card:hover::before {
  transform: scaleX(1);
}
.why-us-card:hover .why-us-card__icon {
  transform: scale(1.1);
  background: #1a56db;
  color: #fff;
}
.why-us-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 86, 219, 0.06);
  color: #1a56db;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-us-card__highlight {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, #1a56db 0%, #0ea5e9 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 9999px;
  margin-bottom: 14px;
}
.why-us-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1f2937;
}
.why-us-card__description {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

.cta-banner-section {
  padding: 48px 0;
}
@media (min-width: 1024px) {
  .cta-banner-section {
    padding: 60px 0;
  }
}

.cta-banner {
  position: relative;
  padding: 56px 32px;
  background: linear-gradient(135deg, #1a56db 0%, rgb(17.8816326531, 59.1469387755, 150.6183673469) 100%);
  border-radius: 28px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
@media (min-width: 1024px) {
  .cta-banner {
    padding: 72px 48px;
  }
}
.cta-banner__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.cta-banner__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}
.cta-banner__title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.cta-banner__subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.6;
}
.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media (min-width: 768px) {
  .cta-banner__actions {
    flex-direction: row;
    justify-content: center;
  }
}
.cta-banner__phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}
.cta-banner__phone:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.cta-banner__phone span {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.cta-banner__phone span small {
  font-size: 12px;
  opacity: 0.8;
}
.cta-banner__phone span strong {
  font-size: 16px;
  font-weight: 600;
}
.cta-banner__decoration {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.cta-banner__circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.cta-banner__circle--1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
}
.cta-banner__circle--2 {
  width: 200px;
  height: 200px;
  bottom: -80px;
  left: 10%;
}
.cta-banner__circle--3 {
  width: 150px;
  height: 150px;
  top: 20%;
  left: -30px;
}

.testimonials-section {
  padding: 48px 0;
  background: #f8fafc;
}
@media (min-width: 1024px) {
  .testimonials-section {
    padding: 80px 0;
  }
}

.testimonials-slider {
  position: relative;
}
.testimonials-slider__track {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .testimonials-slider__track {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  padding: 32px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.testimonial-card__rating {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: #f59e0b;
}
.testimonial-card__content {
  font-size: 16px;
  line-height: 1.7;
  color: #1f2937;
  margin: 0 0 24px;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid #f3f4f6;
}
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a56db 0%, #0ea5e9 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 14px;
}
.testimonial-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-card__name {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
}
.testimonial-card__role {
  font-size: 13px;
  color: #6b7280;
}

.shop-archive {
  padding: 0;
}
.shop-archive__breadcrumbs {
  margin-bottom: 24px;
}
.shop-archive__header {
  margin-bottom: 32px;
}
.shop-archive__title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 12px;
}
.shop-archive__description {
  font-size: 16px;
  color: #6b7280;
  max-width: 800px;
  line-height: 1.7;
}
.shop-archive__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .shop-archive__wrapper {
    flex-direction: row;
  }
}
.shop-archive__main {
  flex: 1;
  min-width: 0;
  order: 2;
}
@media (min-width: 1024px) {
  .shop-archive__main {
    order: 2;
  }
}
.shop-archive__sidebar {
  order: 1;
}
@media (min-width: 1024px) {
  .shop-archive__sidebar {
    width: 280px;
    flex-shrink: 0;
    order: 1;
  }
}
.shop-archive__pagination {
  margin-top: 48px;
}
.shop-archive__no-products {
  text-align: center;
  padding: 80px 24px;
  background: #f8fafc;
  border-radius: 20px;
}
.shop-archive__no-products p {
  color: #6b7280;
  margin-bottom: 20px;
}
.shop-archive__seo-content {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid #f3f4f6;
}

.seo-content {
  max-width: 900px;
  margin-bottom: 40px;
}
.seo-content__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2937;
}
.seo-content__body {
  font-size: 15px;
  line-height: 1.8;
  color: #6b7280;
}
.seo-content__body h2, .seo-content__body h3, .seo-content__body h4 {
  color: #1f2937;
  margin-top: 28px;
  margin-bottom: 14px;
}
.seo-content__body p {
  margin-bottom: 16px;
}
.seo-content__body ul, .seo-content__body ol {
  margin-bottom: 16px;
  padding-left: 24px;
  list-style: disc;
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 14px;
  margin-bottom: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}
.shop-toolbar__count {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}
.shop-toolbar__sorting {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.shop-toolbar__label {
  font-size: 14px;
  color: #6b7280;
  display: none;
}
@media (min-width: 768px) {
  .shop-toolbar__label {
    display: block;
  }
}
.shop-toolbar__select {
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.shop-toolbar__select:focus {
  outline: none;
  border-color: #1a56db;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.06);
}
.shop-toolbar__filter-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media (min-width: 1024px) {
  .shop-toolbar__filter-toggle {
    display: none;
  }
}
.shop-toolbar__filter-toggle:hover {
  border-color: #1a56db;
  color: #1a56db;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.shop-sidebar {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.shop-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #1a56db;
}
@media (min-width: 1024px) {
  .shop-sidebar__header {
    display: none;
  }
}
.shop-sidebar__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.shop-sidebar__close {
  background: none;
  border: none;
  padding: 6px;
  color: #6b7280;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.shop-sidebar__close:hover {
  background: #f8fafc;
  color: #1f2937;
}
.shop-sidebar__widget {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #f3f4f6;
}
.shop-sidebar__widget:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.shop-sidebar__actions {
  padding-top: 8px;
}

.widget__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.widget__title::before {
  content: "";
  width: 4px;
  height: 16px;
  background: #1a56db;
  border-radius: 2px;
}

@media (max-width: 1023px) {
  .shop-archive__sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 340px;
    height: 100%;
    background: #ffffff;
    z-index: 300;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    border-radius: 0;
  }
  .shop-archive__sidebar.is-open {
    transform: translateX(0);
  }
  .shop-archive__sidebar .shop-sidebar {
    border: none;
    border-radius: 0;
    box-shadow: none;
    min-height: 100%;
  }
}
@media (min-width: 1024px) {
  .shop-archive__sidebar {
    position: static;
    transform: none;
    max-width: none;
    height: auto;
    overflow: visible;
  }
}

.price-filter__inputs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.price-filter__input-group {
  flex: 1;
  position: relative;
}
.price-filter__input-group label {
  display: block;
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 6px;
  font-weight: 500;
}
.price-filter__input-group input {
  width: 100%;
  padding: 10px 36px 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.2s ease;
}
.price-filter__input-group input:focus {
  outline: none;
  border-color: #1a56db;
}
.price-filter__currency {
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-size: 13px;
  color: #9ca3af;
}
.price-filter__separator {
  color: #9ca3af;
  font-size: 18px;
  padding-top: 20px;
}
.price-filter__button {
  width: 100%;
  padding: 12px;
  background: #1a56db;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px 0 rgba(26, 86, 219, 0.35);
}
.price-filter__button:hover {
  background: #1e40af;
}

.category-filter__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.category-filter__item {
  border-bottom: 1px solid #f3f4f6;
}
.category-filter__item:last-child {
  border-bottom: none;
}
.category-filter__parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.category-filter__parent.is-active .category-filter__link {
  color: #1a56db;
  font-weight: 600;
}
.category-filter__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  padding: 12px 0;
  font-size: 14px;
  color: #1f2937;
  transition: color 0.2s ease;
}
.category-filter__link:hover {
  color: #1a56db;
}
.category-filter__count {
  font-size: 12px;
  color: #9ca3af;
  background: #f8fafc;
  padding: 2px 8px;
  border-radius: 9999px;
}
.category-filter__toggle {
  padding: 8px;
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.category-filter__toggle:hover {
  background: #f8fafc;
}
.category-filter__children {
  display: none;
  padding-left: 16px;
  margin-bottom: 8px;
}
.category-filter__item.is-open .category-filter__children {
  display: block;
}

.checkbox-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 8px 0;
}
.checkbox-filter__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.checkbox-filter__checkmark {
  width: 22px;
  height: 22px;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.checkbox-filter__checkmark::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.checkbox-filter__input:checked + .checkbox-filter__checkmark {
  background: #1a56db;
  border-color: #1a56db;
}
.checkbox-filter__input:checked + .checkbox-filter__checkmark::after {
  opacity: 1;
}
.checkbox-filter__label {
  font-size: 14px;
  color: #1f2937;
}

.woocommerce-pagination {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  border: none;
}
.woocommerce-pagination ul.page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-pagination ul.page-numbers li a, .woocommerce-pagination ul.page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 8px 14px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.woocommerce-pagination ul.page-numbers li a:hover {
  color: #1a56db;
  background: rgba(26, 86, 219, 0.06);
  border-color: #1a56db;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}
.woocommerce-pagination ul.page-numbers li span.current {
  background: #1a56db;
  border-color: #1a56db;
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(26, 86, 219, 0.35);
}
.woocommerce-pagination ul.page-numbers li .prev svg,
.woocommerce-pagination ul.page-numbers li .next svg {
  width: 18px;
  height: 18px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 16px 20px;
  margin-bottom: 24px;
  border-radius: 14px;
  font-size: 14px;
}
.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
  font-weight: 600;
}

.woocommerce-message {
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid #10b981;
  color: rgb(7.8805970149, 91.1194029851, 63.5373134328);
}

.woocommerce-info {
  background: rgba(26, 86, 219, 0.06);
  border-left: 4px solid #1a56db;
  color: #1e40af;
}

.woocommerce-error {
  background: rgba(239, 68, 68, 0.1);
  border-left: 4px solid #ef4444;
  color: rgb(188.842364532, 16.157635468, 16.157635468);
}

.category-banner {
  margin-bottom: 24px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.category-banner__link {
  display: block;
}
.category-banner__link:hover img {
  transform: scale(1.02);
}
.category-banner__image {
  display: none;
}
.category-banner__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-banner__image--mobile {
  display: block;
}
@media (min-width: 768px) {
  .category-banner__image--mobile {
    display: none;
  }
}
.category-banner__image--tablet {
  display: none;
}
@media (min-width: 768px) {
  .category-banner__image--tablet {
    display: block;
  }
}
@media (min-width: 1024px) {
  .category-banner__image--tablet {
    display: none;
  }
}
.category-banner__image--desktop {
  display: none;
}
@media (min-width: 1024px) {
  .category-banner__image--desktop {
    display: block;
  }
}
.category-banner__image--desktop:only-child, .category-banner__image--tablet:only-child, .category-banner__image--mobile:only-child {
  display: block;
}

.single-product {
  padding: 32px 0 64px;
}
.single-product__breadcrumbs {
  margin-bottom: 24px;
}
.single-product__wrapper {
  display: grid;
  gap: 32px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .single-product__wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
@media (min-width: 1024px) {
  .single-product__wrapper {
    gap: 64px;
  }
}
.single-product__title {
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 16px;
}
.single-product__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.single-product__rating .star-rating {
  color: #f59e0b;
}
.single-product__rating-count {
  font-size: 14px;
  color: #6b7280;
}
.single-product__excerpt {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.7;
}
.single-product__price {
  font-size: 28px;
  font-weight: 700;
  color: #1a56db;
  margin-bottom: 16px;
}
.single-product__price del {
  font-size: 18px;
  color: #9ca3af;
  font-weight: 400;
  margin-right: 12px;
}
.single-product__price ins {
  text-decoration: none;
}
.single-product__stock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}
.single-product__stock.is-in-stock {
  color: #10b981;
}
.single-product__stock.is-out-of-stock {
  color: #ef4444;
}
.single-product__add-to-cart {
  margin-bottom: 16px;
}
.single-product__add-to-cart form {
  display: flex;
  gap: 16px;
  align-items: stretch;
}
.single-product__add-to-cart .quantity {
  width: auto;
  flex-shrink: 0;
}
.single-product__add-to-cart .single_add_to_cart_button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: #1a56db;
  border: none;
  border-radius: 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px 0 rgba(26, 86, 219, 0.35);
  transition: all 0.2s ease;
}
.single-product__add-to-cart .single_add_to_cart_button:hover {
  background: #1e40af;
  box-shadow: 0 8px 25px 0 rgba(26, 86, 219, 0.3);
  transform: translateY(-2px);
}
.single-product__add-to-cart .single_add_to_cart_button::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.single-product__wishlist {
  margin-bottom: 24px;
}
.single-product__benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: #f8fafc;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  margin-bottom: 24px;
}
.single-product__newsletter {
  margin-bottom: 48px;
}
.single-product__newsletter .newsletter-section {
  border-radius: 28px;
  margin: 0;
}
.single-product__meta {
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}
.single-product__meta-item {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
}
.single-product__meta-label {
  color: #6b7280;
}
.single-product__meta-value a {
  color: #1a56db;
}
.single-product__tabs {
  margin-bottom: 48px;
}
.single-product__related {
  margin-top: 48px;
}
.single-product__related-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.single-product__related-title {
  font-size: 24px;
  margin: 0;
}
.single-product__related-nav {
  display: flex;
  gap: 8px;
}

.related-slider {
  overflow: hidden;
  margin-bottom: 20px;
}
.related-slider__prev, .related-slider__next {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: all 0.2s ease;
}
.related-slider__prev:hover, .related-slider__next:hover {
  background: #1a56db;
  border-color: #1a56db;
  color: #fff;
}
.related-slider__prev:disabled, .related-slider__prev.swiper-button-disabled, .related-slider__next:disabled, .related-slider__next.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.related-slider__prev:disabled:hover, .related-slider__prev.swiper-button-disabled:hover, .related-slider__next:disabled:hover, .related-slider__next.swiper-button-disabled:hover {
  background: #ffffff;
  border-color: #e5e7eb;
  color: inherit;
}
.related-slider .swiper-slide {
  height: auto;
}
.related-slider .swiper-slide .product-card {
  height: 100%;
}

.product-gallery__main {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}
.product-gallery__main-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: default;
}
.product-gallery__main-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.product-gallery__main-image.is-fading {
  opacity: 0;
  transform: scale(0.97);
}
.product-gallery__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
}
.product-gallery__badge--sale {
  background: #ef4444;
  color: #fff;
}
.product-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(0, 0%, 100%, 0.9);
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  color: #1f2937;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}
.product-gallery__nav:hover {
  background: #1a56db;
  border-color: #1a56db;
  color: #fff;
}
.product-gallery__nav--prev {
  left: 12px;
}
.product-gallery__nav--next {
  right: 12px;
}
.product-gallery__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}
.product-gallery__thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease;
  overflow: hidden;
}
.product-gallery__thumb:hover, .product-gallery__thumb.is-active {
  border-color: #1a56db;
}
.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.woocommerce-tabs .tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 24px;
}
.woocommerce-tabs .tabs li a {
  display: block;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #6b7280;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s ease;
}
.woocommerce-tabs .tabs li a:hover {
  color: #1f2937;
}
.woocommerce-tabs .tabs li.active a {
  color: #1a56db;
  border-bottom-color: #1a56db;
}
.woocommerce-tabs .panel h2 {
  font-size: 20px;
  margin-bottom: 16px;
}

.star-rating {
  display: inline-flex;
  font-size: 14px;
}
.star-rating span {
  overflow: hidden;
}

.woocommerce-Reviews .woocommerce-Reviews-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.woocommerce-Reviews .woocommerce-Reviews-title::before {
  content: "";
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, #1a56db, #0ea5e9);
  border-radius: 2px;
}

.commentlist {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.commentlist .review {
  padding: 28px;
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.commentlist .review::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #1a56db, #0ea5e9);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.commentlist .review:hover {
  border-color: rgba(26, 86, 219, 0.2);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}
.commentlist .review:hover::before {
  opacity: 1;
}
.commentlist .comment_container {
  display: flex;
  gap: 20px;
}
@media (max-width: 639px) {
  .commentlist .comment_container {
    flex-direction: column;
  }
}
.commentlist .avatar {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
  border: 2px solid #f3f4f6;
  transition: border-color 0.2s ease;
}
@media (max-width: 639px) {
  .commentlist .avatar {
    width: 48px;
    height: 48px;
  }
}
.commentlist .review:hover .avatar {
  border-color: #1a56db;
}
.commentlist .comment-text {
  flex: 1;
}
.commentlist .meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.commentlist .meta .woocommerce-review__author {
  font-weight: 700;
  font-size: 15px;
  color: #1f2937;
}
.commentlist .meta .woocommerce-review__dash {
  display: none;
}
.commentlist .meta .woocommerce-review__published-date {
  font-size: 12px;
  color: #9ca3af;
  padding: 3px 10px;
  background: #f8fafc;
  border-radius: 9999px;
}
.commentlist .star-rating {
  margin-bottom: 12px;
  color: #f59e0b;
  font-size: 16px;
}
.commentlist .description p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #6b7280;
}

.woocommerce-noreviews {
  padding: 48px 32px;
  text-align: center;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #f3f4f6;
  border-radius: 28px;
  color: #6b7280;
  font-size: 16px;
}

.product-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-benefit__icon {
  flex-shrink: 0;
  color: #1a56db;
}
.product-benefit__text {
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
}

.woocommerce-product-attributes {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}
.woocommerce-product-attributes tr {
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.2s ease;
}
.woocommerce-product-attributes tr:last-child {
  border-bottom: none;
}
.woocommerce-product-attributes tr:hover {
  background: rgba(26, 86, 219, 0.06);
}
.woocommerce-product-attributes tr:nth-child(even) {
  background: rgba(26, 86, 219, 0.02);
}
.woocommerce-product-attributes tr:nth-child(even):hover {
  background: rgba(26, 86, 219, 0.06);
}
.woocommerce-product-attributes th, .woocommerce-product-attributes td {
  padding: 16px 20px;
  text-align: left;
  vertical-align: middle;
}
@media (max-width: 639px) {
  .woocommerce-product-attributes th, .woocommerce-product-attributes td {
    padding: 12px 16px;
  }
}
.woocommerce-product-attributes th {
  width: 40%;
  font-weight: 600;
  font-size: 14px;
  color: #1f2937;
  background: rgba(26, 86, 219, 0.05);
  border-right: 2px solid #1a56db;
}
@media (max-width: 639px) {
  .woocommerce-product-attributes th {
    width: 45%;
    font-size: 13px;
  }
}
.woocommerce-product-attributes td {
  font-size: 14px;
  color: #6b7280;
}
@media (max-width: 639px) {
  .woocommerce-product-attributes td {
    font-size: 13px;
  }
}
.woocommerce-product-attributes td p {
  margin: 0;
}
.woocommerce-product-attributes td p a {
  color: #1a56db;
  font-weight: 500;
}
.woocommerce-product-attributes td p a:hover {
  text-decoration: underline;
}

#tab-additional_information h2 {
  display: none;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 16px 20px;
  margin-bottom: 24px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
}

.woocommerce-message {
  border-left: 4px solid #10b981;
}

.woocommerce-error {
  border-left: 4px solid #ef4444;
}

.woocommerce-info {
  border-left: 4px solid #1a56db;
}

.woocommerce-cart-form table {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce-cart-form th,
.woocommerce-cart-form td {
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}
.woocommerce-cart-form th {
  font-size: 14px;
  font-weight: 600;
  background: #f8fafc;
}
.woocommerce-cart-form .product-thumbnail img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
.woocommerce-cart-form .product-name a {
  color: #1f2937;
  font-weight: 500;
}
.woocommerce-cart-form .product-name a:hover {
  color: #1a56db;
}
.woocommerce-cart-form .product-price,
.woocommerce-cart-form .product-subtotal {
  font-weight: 600;
}
.woocommerce-cart-form .product-remove a {
  color: #6b7280;
  font-size: 20px;
}
.woocommerce-cart-form .product-remove a:hover {
  color: #ef4444;
}
.woocommerce-cart-form .actions {
  padding: 20px 0;
}
.woocommerce-cart-form .actions .button {
  padding: 12px 24px;
  background: #1a56db;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
}
.cart-empty__icon {
  color: #9ca3af;
  margin-bottom: 20px;
}
.cart-empty__message {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 24px;
}

.checkout .col2-set {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .checkout .col2-set {
    grid-template-columns: 1fr 1fr;
  }
}

#order_review_heading {
  font-size: 20px;
  margin-bottom: 16px;
}

.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 12px;
  border-bottom: 1px solid #e5e7eb;
}

#payment {
  background: #f8fafc;
  padding: 24px;
  border: 1px solid #e5e7eb;
}
#payment .payment_methods {
  margin-bottom: 20px;
}
#payment .payment_method {
  margin-bottom: 12px;
}
#payment .payment_method label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

#place_order {
  width: 100%;
  padding: 16px;
  background: #1a56db;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
#place_order:hover {
  background: #1e40af;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  margin-bottom: 24px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 10px 16px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  color: #1f2937;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  background: #1a56db;
  border-color: #1a56db;
  color: #fff;
}

.wc-block-components-button.wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
  border: none;
  border-radius: 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
  box-shadow: 0 4px 14px 0 rgba(26, 86, 219, 0.35);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.wc-block-components-button.wp-element-button:hover {
  background: linear-gradient(135deg, #1e40af 0%, rgb(26.2682926829, 56.0390243902, 153.2317073171) 100%);
  box-shadow: 0 8px 25px 0 rgba(26, 86, 219, 0.3);
  transform: translateY(-2px);
}
.wc-block-components-button.wp-element-button:active {
  transform: translateY(0);
}
.wc-block-components-button.wp-element-button .wc-block-components-button__text {
  font-weight: 600;
}

.wc-block-cart__submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
  border: none;
  border-radius: 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
  box-shadow: 0 4px 14px 0 rgba(26, 86, 219, 0.35);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.wc-block-cart__submit-button:hover {
  background: linear-gradient(135deg, #1e40af 0%, rgb(26.2682926829, 56.0390243902, 153.2317073171) 100%);
  box-shadow: 0 8px 25px 0 rgba(26, 86, 219, 0.3);
  transform: translateY(-2px);
  color: #fff;
}
.wc-block-cart__submit-button:active {
  transform: translateY(0);
}

.wc-block-components-product-metadata__description {
  display: none;
}

.error-404 {
  padding: 80px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .error-404 {
    padding: 120px 0;
  }
}
.error-404__content {
  max-width: 600px;
  margin: 0 auto;
}
.error-404__code {
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  color: #1a56db;
  opacity: 0.2;
}
@media (min-width: 768px) {
  .error-404__code {
    font-size: 180px;
  }
}
.error-404__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
.error-404__description {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 32px;
}
.error-404__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .error-404__actions {
    flex-direction: row;
  }
}
.error-404__search {
  margin-bottom: 40px;
}
.error-404__search-text {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 12px;
}
.error-404__categories-title {
  font-size: 16px;
  margin-bottom: 16px;
}
.error-404__categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.error-404__category-link {
  padding: 8px 16px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  color: #1f2937;
  transition: all 0.2s ease;
}
.error-404__category-link:hover {
  border-color: #1a56db;
  color: #1a56db;
}

.blog-archive {
  padding-bottom: 80px;
}
.blog-archive__hero {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .blog-archive__hero {
    padding: 80px 0;
  }
}
.blog-archive__hero-content {
  max-width: 700px;
}
.blog-archive__label {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(26, 86, 219, 0.06);
  color: #1a56db;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 9999px;
  margin-bottom: 16px;
}
.blog-archive__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.blog-archive__subtitle, .blog-archive__description {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.7;
}
.blog-archive__toolbar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #f3f4f6;
}
@media (min-width: 1024px) {
  .blog-archive__toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.blog-archive__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-archive__category-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  color: #1f2937;
  transition: all 0.2s ease;
}
.blog-archive__category-tag span {
  font-size: 11px;
  color: #9ca3af;
}
.blog-archive__category-tag:hover, .blog-archive__category-tag.is-active {
  background: #1a56db;
  border-color: #1a56db;
  color: #fff;
}
.blog-archive__category-tag:hover span, .blog-archive__category-tag.is-active span {
  color: rgba(255, 255, 255, 0.8);
}
.blog-archive__grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 768px) {
  .blog-archive__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .blog-archive__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-archive__pagination {
  margin-top: 56px;
}
.blog-archive__empty {
  text-align: center;
  padding: 80px 20px;
}
.blog-archive__empty-icon {
  color: #9ca3af;
  margin-bottom: 24px;
}
.blog-archive__empty h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.blog-archive__empty p {
  color: #6b7280;
  margin-bottom: 24px;
}

.blog-search {
  position: relative;
  max-width: 400px;
  width: 100%;
}
.blog-search__input {
  width: 100%;
  padding: 14px 50px 14px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 9999px;
  font-size: 15px;
  background: #ffffff;
  transition: all 0.2s ease;
}
.blog-search__input::-moz-placeholder {
  color: #9ca3af;
}
.blog-search__input::placeholder {
  color: #9ca3af;
}
.blog-search__input:focus {
  outline: none;
  border-color: #1a56db;
  box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.06);
}
.blog-search__submit {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a56db;
  border: none;
  border-radius: 9999px;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.blog-search__submit:hover {
  background: #1e40af;
  transform: translateY(-50%) scale(1.05);
}

.blog-featured {
  display: grid;
  gap: 32px;
  margin-bottom: 56px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 28px;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}
@media (min-width: 1024px) {
  .blog-featured {
    grid-template-columns: 1.2fr 1fr;
    padding: 0;
    overflow: hidden;
  }
}
.blog-featured__image-link {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 20px;
}
@media (min-width: 1024px) {
  .blog-featured__image-link {
    aspect-ratio: auto;
    height: 100%;
    border-radius: 0;
  }
}
.blog-featured__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-featured__placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  color: #9ca3af;
}
.blog-featured:hover .blog-featured__image {
  transform: scale(1.05);
}
.blog-featured__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) {
  .blog-featured__content {
    padding: 40px;
  }
}
.blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.blog-featured__category {
  padding: 5px 12px;
  background: #1a56db;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 9999px;
}
.blog-featured__date {
  font-size: 14px;
  color: #6b7280;
}
.blog-featured__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}
.blog-featured__title a {
  color: #1f2937;
}
.blog-featured__title a:hover {
  color: #1a56db;
}
.blog-featured__excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 24px;
}

.blog-card__image-link--placeholder {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card__placeholder {
  color: #9ca3af;
}

.single-post__hero {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  margin-bottom: -60px;
  border-radius: 0 0 28px 28px;
}
@media (min-width: 1024px) {
  .single-post__hero {
    margin-bottom: -100px;
  }
}
.single-post__hero-image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-post__wrapper {
  display: grid;
  gap: 48px;
  padding: 48px 0 80px;
}
@media (min-width: 1024px) {
  .single-post__wrapper {
    grid-template-columns: 1fr 320px;
    gap: 64px;
  }
}
.single-post__main {
  min-width: 0;
}
.single-post__header {
  margin-bottom: 32px;
}
.single-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #6b7280;
}
.single-post__date, .single-post__author {
  display: flex;
  align-items: center;
  gap: 6px;
}
.single-post__category {
  color: #1a56db;
  font-weight: 600;
  padding: 4px 12px;
  background: rgba(26, 86, 219, 0.06);
  border-radius: 9999px;
}
.single-post__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
}
.single-post__content {
  font-size: 17px;
  line-height: 1.8;
}
.single-post__content h2, .single-post__content h3, .single-post__content h4 {
  margin-top: 32px;
  margin-bottom: 16px;
}
.single-post__content p {
  margin-bottom: 20px;
}
.single-post__content img {
  margin: 24px 0;
  border-radius: 14px;
}
.single-post__content ul, .single-post__content ol {
  margin-bottom: 20px;
  padding-left: 24px;
  list-style: disc;
}
.single-post__content blockquote {
  margin: 24px 0;
  padding: 24px 28px;
  border-left: 4px solid #1a56db;
  background: #f8fafc;
  border-radius: 0 14px 14px 0;
  font-style: italic;
}
.single-post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
  margin-top: 32px;
}
.single-post__tags-label {
  font-weight: 600;
}
.single-post__tag {
  padding: 6px 14px;
  background: #f8fafc;
  border-radius: 9999px;
  font-size: 13px;
  color: #6b7280;
  transition: all 0.2s ease;
}
.single-post__tag:hover {
  background: #1a56db;
  color: #fff;
}
.single-post__share {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.single-post__share-label {
  font-weight: 600;
}
.single-post__share-links {
  display: flex;
  gap: 8px;
}
.single-post__share-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #f8fafc;
  border-radius: 10px;
  color: #1f2937;
  transition: all 0.2s ease;
}
.single-post__share-link:hover {
  background: #1a56db;
  color: #fff;
  transform: translateY(-2px);
}
.single-post__navigation {
  display: grid;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
}
@media (min-width: 768px) {
  .single-post__navigation {
    grid-template-columns: 1fr 1fr;
  }
}
.single-post__nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 14px;
  transition: all 0.2s ease;
}
.single-post__nav-link:hover {
  background: #1a56db;
  color: #fff;
}
.single-post__nav-link:hover .single-post__nav-label {
  color: rgba(255, 255, 255, 0.8);
}
.single-post__nav-link--next {
  text-align: right;
}
.single-post__nav-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
}
.single-post__nav-link--next .single-post__nav-label {
  justify-content: flex-end;
}
.single-post__nav-title {
  font-weight: 600;
  color: inherit;
}
.single-post__comments {
  margin-top: 48px;
}
@media (min-width: 1024px) {
  .single-post__sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
  }
}

.sidebar-widget {
  padding: 24px;
  background: #f8fafc;
  border-radius: 20px;
  margin-bottom: 24px;
}
.sidebar-widget__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #1a56db;
}
.sidebar-widget__posts {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sidebar-widget__post {
  display: flex;
  gap: 14px;
}
.sidebar-widget__post-image {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
}
.sidebar-widget__post-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sidebar-widget__post-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar-widget__post-title {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
}
.sidebar-widget__post-title:hover {
  color: #1a56db;
}
.sidebar-widget__post-date {
  font-size: 12px;
  color: #9ca3af;
}
.sidebar-widget__categories li {
  border-bottom: 1px solid #f3f4f6;
}
.sidebar-widget__categories li:last-child {
  border-bottom: none;
}
.sidebar-widget__categories li a {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
  color: #1f2937;
  transition: color 0.2s ease;
}
.sidebar-widget__categories li a:hover {
  color: #1a56db;
}
.sidebar-widget__categories li a span {
  color: #9ca3af;
  font-size: 12px;
}

.contact-page {
  padding: 48px 0 80px;
}
.contact-page__header {
  text-align: center;
  margin-bottom: 48px;
}
.contact-page__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
}
.contact-page__subtitle {
  font-size: 18px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}
.contact-page__wrapper {
  display: grid;
  gap: 48px;
  margin-bottom: 48px;
}
@media (min-width: 1024px) {
  .contact-page__wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}
.contact-page__business {
  padding: 28px;
  background: #f8fafc;
  margin-top: 32px;
  border-radius: 20px;
}
.contact-page__business-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.contact-page__business-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 14px;
}
.contact-page__business-list li:last-child {
  border-bottom: none;
}
.contact-page__business-list li strong {
  color: #6b7280;
}
.contact-page__map {
  margin-top: 48px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}
.contact-page__map iframe {
  display: block;
  width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info__item {
  display: flex;
  gap: 18px;
}
.contact-info__icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 14px 0 rgba(26, 86, 219, 0.35);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-info__icon:hover {
  transform: translateY(-4px) scale(1.05) rotate(-5deg);
  box-shadow: 0 8px 25px 0 rgba(26, 86, 219, 0.3);
}
.contact-info__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-info__text {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.contact-info__text a {
  color: #1f2937;
}
.contact-info__text a:hover {
  color: #1a56db;
}
.contact-info__hours {
  font-size: 13px;
  color: #6b7280;
}

.contact-form {
  padding: 36px;
  background: #f8fafc;
  border-radius: 28px;
}
.contact-form__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-form__subtitle {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 28px;
}
.contact-form__row {
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) {
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-form__field {
  margin-bottom: 20px;
}
.contact-form__field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}
.contact-form__field label .required {
  color: #ef4444;
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #ffffff;
  font-size: 15px;
  transition: all 0.2s ease;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: #1a56db;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.06);
}
.contact-form__field textarea {
  resize: vertical;
  min-height: 130px;
}
.contact-form__field--checkbox {
  margin-top: 8px;
}

.scroll-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 399;
  box-shadow: 0 8px 25px 0 rgba(26, 86, 219, 0.3);
}
.scroll-to-top:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}
.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.quantity {
  display: inline-flex;
  align-items: stretch;
}
.quantity__wrapper {
  display: flex;
  align-items: stretch;
}
.quantity__btn {
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.quantity__btn:hover {
  background: #1a56db;
  border-color: #1a56db;
  color: #fff;
}
.quantity__btn--minus {
  border-right: none;
  border-radius: 10px 0 0 10px;
}
.quantity__btn--plus {
  border-left: none;
  border-radius: 0 10px 10px 0;
}
.quantity .qty {
  width: 64px;
  text-align: center;
  border: 1px solid #e5e7eb;
  font-size: 16px;
  font-weight: 500;
  -moz-appearance: textfield;
}
.quantity .qty::-webkit-outer-spin-button, .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.account-page,
.cart-page,
.checkout-page {
  padding: 0;
}
.account-page__breadcrumbs,
.cart-page__breadcrumbs,
.checkout-page__breadcrumbs {
  margin-bottom: 24px;
}
.account-page__title,
.cart-page__title,
.checkout-page__title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  margin-bottom: 32px;
}

.page-content {
  padding: 48px 0 80px;
}
.page-content__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 32px;
}
.page-content__body {
  max-width: 900px;
}
.page-content__body h2, .page-content__body h3, .page-content__body h4 {
  margin-top: 32px;
  margin-bottom: 16px;
}
.page-content__body p {
  margin-bottom: 20px;
  line-height: 1.8;
}
.page-content__body ul, .page-content__body ol {
  margin-bottom: 20px;
  padding-left: 24px;
  list-style: disc;
}
.page-content__body img {
  margin: 0;
}

.woocommerce-Reviews .woocommerce-Reviews-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.woocommerce-Reviews .commentlist {
  margin-bottom: 32px;
}
.woocommerce-Reviews .review {
  padding: 24px;
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  margin-bottom: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.woocommerce-Reviews .review:hover {
  border-color: rgba(26, 86, 219, 0.2);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}
.woocommerce-Reviews .review:last-child {
  margin-bottom: 0;
}
.woocommerce-Reviews .comment_container {
  display: flex;
  gap: 16px;
}
.woocommerce-Reviews .avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  border: 2px solid #f3f4f6;
}
.woocommerce-Reviews .comment-text {
  flex: 1;
}
.woocommerce-Reviews .meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.woocommerce-Reviews .woocommerce-review__author {
  font-weight: 700;
}
.woocommerce-Reviews .woocommerce-review__published-date {
  font-size: 12px;
  color: #9ca3af;
  padding: 3px 10px;
  background: #f8fafc;
  border-radius: 9999px;
}
.woocommerce-Reviews .star-rating {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 14px;
}
.woocommerce-Reviews .description p {
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

#review_form_wrapper {
  padding-top: 40px;
  border-top: 2px solid #f3f4f6;
}

#reply-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
#reply-title::before {
  content: "";
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, #1a56db, #0ea5e9);
  border-radius: 2px;
}

.comment-form {
  padding: 32px;
  background: #f8fafc;
  border: 1px solid #f3f4f6;
  border-radius: 28px;
}
.comment-form .comment-form-rating {
  margin-bottom: 20px;
}
.comment-form .comment-form-rating label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
}
.comment-form .stars {
  display: flex;
  gap: 6px;
}
.comment-form .stars a {
  font-size: 24px;
  color: #e5e7eb;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.comment-form .stars a:hover, .comment-form .stars a.active {
  color: #f59e0b;
  transform: scale(1.2);
}
.comment-form .comment-form-comment {
  margin-bottom: 20px;
}
.comment-form .comment-form-comment label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
}
.comment-form .comment-form-comment textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  resize: vertical;
  min-height: 140px;
  font-size: 15px;
  transition: all 0.2s ease;
}
.comment-form .comment-form-comment textarea:focus {
  outline: none;
  border-color: #1a56db;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.06);
}
.comment-form .form-submit .submit {
  padding: 14px 32px;
  background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
  border: none;
  border-radius: 14px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 14px 0 rgba(26, 86, 219, 0.35);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.comment-form .form-submit .submit:hover {
  background: linear-gradient(135deg, #1e40af 0%, rgb(26.2682926829, 56.0390243902, 153.2317073171) 100%);
  box-shadow: 0 8px 25px 0 rgba(26, 86, 219, 0.3);
  transform: translateY(-2px);
}
.comment-form .form-submit .submit:active {
  transform: translateY(0);
}

.woocommerce-noreviews {
  padding: 24px;
  background: #f8fafc;
  text-align: center;
  color: #6b7280;
  border-radius: 14px;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    margin-bottom: 0;
  }
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (min-width: 1024px) {
  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    flex-direction: column;
    gap: 4px;
  }
}
.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  transition: all 0.2s ease;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
  border-color: #1a56db;
  color: #1a56db;
  background: rgba(26, 86, 219, 0.06);
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a, .woocommerce-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--dashboard.is-active a {
  background: #1a56db;
  border-color: #1a56db;
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(26, 86, 219, 0.35);
}
.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--dashboard a::before,
.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--orders a::before,
.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--downloads a::before,
.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--edit-address a::before,
.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--edit-account a::before,
.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--customer-logout a::before {
  font-family: inherit;
  font-size: 18px;
}
.woocommerce-account .woocommerce-MyAccount-content h2, .woocommerce-account .woocommerce-MyAccount-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.woocommerce-account .woocommerce-MyAccount-content p {
  margin-bottom: 16px;
  line-height: 1.7;
}
.woocommerce-account .woocommerce-MyAccount-content a:not(.btn):not(.button) {
  color: #1a56db;
  font-weight: 500;
}
.woocommerce-account .woocommerce-MyAccount-content a:not(.btn):not(.button):hover {
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .woocommerce-account .woocommerce {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
  }
}

.woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce-orders-table thead {
  display: none;
}
@media (min-width: 768px) {
  .woocommerce-orders-table thead {
    display: table-header-group;
  }
}
.woocommerce-orders-table thead th {
  padding: 14px 16px;
  background: #f8fafc;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.woocommerce-orders-table thead th:first-child {
  border-radius: 10px 0 0 10px;
}
.woocommerce-orders-table thead th:last-child {
  border-radius: 0 10px 10px 0;
}
.woocommerce-orders-table tbody tr {
  display: block;
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid #f3f4f6;
  border-radius: 14px;
}
@media (min-width: 768px) {
  .woocommerce-orders-table tbody tr {
    display: table-row;
    padding: 0;
    margin-bottom: 0;
    border: none;
    border-bottom: 1px solid #f3f4f6;
    border-radius: 0;
  }
}
.woocommerce-orders-table tbody td {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}
.woocommerce-orders-table tbody td::before {
  content: attr(data-title);
  font-weight: 600;
  color: #6b7280;
}
@media (min-width: 768px) {
  .woocommerce-orders-table tbody td::before {
    display: none;
  }
}
@media (min-width: 768px) {
  .woocommerce-orders-table tbody td {
    display: table-cell;
    padding: 16px;
  }
}
.woocommerce-orders-table .woocommerce-orders-table__cell-order-number a {
  font-weight: 600;
  color: #1a56db;
}
.woocommerce-orders-table .woocommerce-orders-table__cell-order-status .woocommerce-orders-table__cell-order-status {
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
}
.woocommerce-orders-table .button {
  padding: 8px 16px;
  font-size: 13px;
}

.woocommerce-Addresses {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .woocommerce-Addresses {
    grid-template-columns: repeat(2, 1fr);
  }
}
.woocommerce-Addresses .woocommerce-Address {
  padding: 24px;
  background: #f8fafc;
  border-radius: 20px;
}
.woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}
.woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title h3 {
  margin: 0;
  font-size: 16px;
}
.woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title a {
  font-size: 13px;
}
.woocommerce-Addresses .woocommerce-Address address {
  font-style: normal;
  line-height: 1.8;
  color: #6b7280;
}

.woocommerce-EditAccountForm,
.woocommerce-address-fields {
  max-width: 600px;
}
.woocommerce-EditAccountForm .woocommerce-form-row,
.woocommerce-address-fields .woocommerce-form-row {
  margin-bottom: 20px;
}
.woocommerce-EditAccountForm .woocommerce-form-row label,
.woocommerce-address-fields .woocommerce-form-row label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}
.woocommerce-EditAccountForm .woocommerce-form-row input[type=text],
.woocommerce-EditAccountForm .woocommerce-form-row input[type=email],
.woocommerce-EditAccountForm .woocommerce-form-row input[type=tel],
.woocommerce-EditAccountForm .woocommerce-form-row input[type=password],
.woocommerce-address-fields .woocommerce-form-row input[type=text],
.woocommerce-address-fields .woocommerce-form-row input[type=email],
.woocommerce-address-fields .woocommerce-form-row input[type=tel],
.woocommerce-address-fields .woocommerce-form-row input[type=password] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.2s ease;
}
.woocommerce-EditAccountForm .woocommerce-form-row input[type=text]:focus,
.woocommerce-EditAccountForm .woocommerce-form-row input[type=email]:focus,
.woocommerce-EditAccountForm .woocommerce-form-row input[type=tel]:focus,
.woocommerce-EditAccountForm .woocommerce-form-row input[type=password]:focus,
.woocommerce-address-fields .woocommerce-form-row input[type=text]:focus,
.woocommerce-address-fields .woocommerce-form-row input[type=email]:focus,
.woocommerce-address-fields .woocommerce-form-row input[type=tel]:focus,
.woocommerce-address-fields .woocommerce-form-row input[type=password]:focus {
  outline: none;
  border-color: #1a56db;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.06);
}
.woocommerce-EditAccountForm fieldset,
.woocommerce-address-fields fieldset {
  margin: 32px 0;
  padding: 24px;
  border: 1px solid #f3f4f6;
  border-radius: 14px;
}
.woocommerce-EditAccountForm fieldset legend,
.woocommerce-address-fields fieldset legend {
  padding: 0 12px;
  font-weight: 600;
}
.woocommerce-EditAccountForm .button,
.woocommerce-address-fields .button {
  margin-top: 8px;
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #1a56db;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px 0 rgba(26, 86, 219, 0.35);
}
.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: #1e40af;
  box-shadow: 0 8px 25px 0 rgba(26, 86, 219, 0.3);
  transform: translateY(-2px);
}
.woocommerce .button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: #f1f5f9;
  color: #1f2937;
  box-shadow: none;
}
.woocommerce .button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background: #1a56db;
  color: #fff;
}

.faq-page {
  padding: 48px 0 80px;
}
.faq-page__header {
  text-align: center;
  margin-bottom: 40px;
}
.faq-page__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
}
.faq-page__subtitle {
  font-size: 18px;
  color: #6b7280;
}
.faq-page__search {
  max-width: 600px;
  margin: 0 auto 56px;
}
.faq-page__content {
  margin: 0 auto;
}
.faq-page__contact {
  margin-top: 72px;
}

.faq-search {
  position: relative;
}
.faq-search__input {
  width: 100%;
  padding: 18px 24px 18px 56px;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  font-size: 16px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}
.faq-search__input:focus {
  outline: none;
  border-color: #1a56db;
  box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.06), 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}
.faq-search__input::-moz-placeholder {
  color: #9ca3af;
}
.faq-search__input::placeholder {
  color: #9ca3af;
}
.faq-search svg {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.faq-category {
  margin-bottom: 48px;
}
.faq-category:last-child {
  margin-bottom: 0;
}
.faq-category__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid #1a56db;
}
.faq-category__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 14px 0 rgba(26, 86, 219, 0.35);
}
.faq-category__title {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.faq-item {
  border: 1px solid #f3f4f6;
  margin-bottom: 10px;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}
.faq-item:last-child {
  margin-bottom: 0;
}
.faq-item:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
  cursor: pointer;
  transition: all 0.2s ease;
}
.faq-item__question:hover {
  background: #f8fafc;
}
.faq-item__question svg {
  flex-shrink: 0;
  color: #6b7280;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}
.faq-item__answer p {
  font-size: 15px;
  line-height: 1.8;
  color: #6b7280;
  margin: 0;
}
.faq-item.is-open {
  border-color: #1a56db;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}
.faq-item.is-open .faq-item__question {
  background: rgba(26, 86, 219, 0.06);
  color: #1a56db;
}
.faq-item.is-open .faq-item__question svg {
  transform: rotate(180deg);
  color: #1a56db;
}
.faq-item.is-open .faq-item__answer {
  max-height: 500px;
  padding: 24px;
  opacity: 1;
}
.faq-item.is-hidden {
  display: none;
}

.faq-contact {
  text-align: center;
  padding: 56px 40px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border: 1px solid #f3f4f6;
  border-radius: 28px;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}
.faq-contact__icon {
  color: #1a56db;
  margin-bottom: 20px;
}
.faq-contact__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}
.faq-contact__text {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 28px;
}
.faq-contact__buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
@media (min-width: 768px) {
  .faq-contact__buttons {
    flex-direction: row;
  }
}

.legal-page {
  padding: 48px 0 80px;
}
.legal-page__header {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #f3f4f6;
}
.legal-page__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 16px;
}
.legal-page__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  color: #6b7280;
}
.legal-page__date, .legal-page__version {
  display: flex;
  align-items: center;
  gap: 8px;
}
.legal-page__date svg, .legal-page__version svg {
  color: #1a56db;
}
.legal-page__date strong, .legal-page__version strong {
  color: #1f2937;
}
.legal-page__wrapper {
  display: grid;
  gap: 48px;
}
@media (min-width: 1024px) {
  .legal-page__wrapper {
    grid-template-columns: 280px 1fr;
    gap: 64px;
  }
}
@media (min-width: 1024px) {
  .legal-page__toc {
    position: sticky;
    top: 100px;
    align-self: start;
  }
}
.legal-page__content {
  min-width: 0;
}
.legal-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #f3f4f6;
}

.legal-toc {
  padding: 24px;
  background: #f8fafc;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.legal-toc__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #1a56db;
}
.legal-toc__title svg {
  color: #1a56db;
}
.legal-toc__list {
  counter-reset: toc-counter;
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.legal-toc__list li {
  counter-increment: toc-counter;
  margin-bottom: 4px;
}
.legal-toc__link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  font-size: 14px;
  color: #1f2937;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.legal-toc__link::before {
  content: counter(toc-counter) ".";
  font-weight: 600;
  color: #1a56db;
  min-width: 20px;
}
.legal-toc__link:hover {
  background: #ffffff;
  color: #1a56db;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #f3f4f6;
  scroll-margin-top: 100px;
}
.legal-section:last-of-type {
  border-bottom: none;
}
.legal-section__title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2937;
}
.legal-section__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px 0 rgba(26, 86, 219, 0.35);
}
.legal-section__content {
  font-size: 15px;
  line-height: 1.8;
  color: #6b7280;
}
.legal-section__content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-top: 28px;
  margin-bottom: 14px;
}
.legal-section__content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-top: 24px;
  margin-bottom: 12px;
}
.legal-section__content p {
  margin-bottom: 16px;
}
.legal-section__content ul, .legal-section__content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}
.legal-section__content ul li, .legal-section__content ol li {
  margin-bottom: 8px;
  position: relative;
}
.legal-section__content ul {
  list-style: none;
}
.legal-section__content ul li::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #1a56db;
  border-radius: 50%;
}
.legal-section__content ol {
  list-style: decimal;
}
.legal-section__content a {
  color: #1a56db;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-section__content a:hover {
  text-decoration: none;
}
.legal-section__content strong {
  color: #1f2937;
  font-weight: 600;
}
.legal-section__content blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  background: #f8fafc;
  border-left: 4px solid #1a56db;
  border-radius: 0 14px 14px 0;
  font-style: italic;
}
.legal-section__content table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
}
.legal-section__content table th, .legal-section__content table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid #e5e7eb;
}
.legal-section__content table th {
  background: #f8fafc;
  font-weight: 600;
  color: #1f2937;
}
.legal-section__content table tr:nth-child(even) td {
  background: #f8fafc;
}

.legal-contact {
  margin-top: 48px;
  padding: 28px;
  background: rgba(26, 86, 219, 0.06);
  border: 1px solid rgba(26, 86, 219, 0.2);
  border-radius: 20px;
}
.legal-contact__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1e40af;
}
.legal-contact__title svg {
  color: #1a56db;
}
.legal-contact__content {
  font-size: 15px;
  line-height: 1.7;
  color: #1f2937;
}
.legal-contact__content p {
  margin-bottom: 12px;
}
.legal-contact__content p:last-child {
  margin-bottom: 0;
}
.legal-contact__content a {
  color: #1a56db;
  font-weight: 500;
}

@media print {
  .legal-page {
    padding: 0;
  }
  .legal-page__toc, .legal-page__actions {
    display: none;
  }
  .legal-page__wrapper {
    display: block;
  }
  .legal-section {
    page-break-inside: avoid;
  }
  .legal-section__title {
    page-break-after: avoid;
  }
}
.about-hero {
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  overflow: hidden;
  text-align: center;
}
@media (min-width: 1024px) {
  .about-hero {
    padding: 120px 0 80px;
  }
}
.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.about-hero__title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
  line-height: 1.1;
}
@media (min-width: 1024px) {
  .about-hero__title {
    margin-bottom: 20px;
  }
}
.about-hero__subtitle {
  font-size: clamp(17px, 2.5vw, 20px);
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}
.about-hero__decoration {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.about-hero__shape {
  position: absolute;
  border-radius: 50%;
}
.about-hero__shape--1 {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -100px;
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.08) 0%, rgba(14, 165, 233, 0.04) 100%);
}
@media (min-width: 1024px) {
  .about-hero__shape--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
  }
}
.about-hero__shape--2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -80px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.06) 0%, rgba(26, 86, 219, 0.03) 100%);
}
@media (min-width: 1024px) {
  .about-hero__shape--2 {
    width: 450px;
    height: 450px;
    bottom: -150px;
    left: -100px;
  }
}

.about-section {
  padding: 48px 0;
}
@media (min-width: 1024px) {
  .about-section {
    padding: 80px 0;
  }
}
.about-section--light {
  background: #ffffff;
}
.about-section--alt {
  background: #f8fafc;
}
.about-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(26, 86, 219, 0.06);
  color: #1a56db;
  font-size: 13px;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 20px;
}
.about-section__badge svg {
  flex-shrink: 0;
}
.about-section__badge--accent {
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
}
.about-section__badge--white {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(10px);
}
.about-section__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 24px;
  line-height: 1.2;
}
.about-section__text {
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
}
@media (min-width: 1024px) {
  .about-section__text {
    font-size: 17px;
  }
}
.about-section__text p {
  margin: 0 0 16px;
}
.about-section__text p:last-child {
  margin-bottom: 0;
}

.about-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
@media (min-width: 1024px) {
  .about-grid--text-left .about-grid__content {
    order: 1;
  }
}
@media (min-width: 1024px) {
  .about-grid--text-left .about-grid__image {
    order: 2;
  }
}
@media (min-width: 1024px) {
  .about-grid--text-right .about-grid__image {
    order: 1;
  }
}
@media (min-width: 1024px) {
  .about-grid--text-right .about-grid__content {
    order: 2;
  }
}

.about-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}
.about-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-image__accent {
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
  border-radius: 20px;
  z-index: -1;
  bottom: -20px;
  right: -20px;
}
@media (min-width: 1024px) {
  .about-image__accent {
    width: 160px;
    height: 160px;
    bottom: -30px;
    right: -30px;
  }
}
.about-image__accent--alt {
  background: linear-gradient(135deg, #0ea5e9 0%, #1a56db 100%);
  bottom: auto;
  right: auto;
  top: -20px;
  left: -20px;
}
@media (min-width: 1024px) {
  .about-image__accent--alt {
    top: -30px;
    left: -30px;
  }
}
.about-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  background: #f1f5f9;
  color: #9ca3af;
}

.about-team {
  position: relative;
  padding: 80px 0;
  background: #1f2937;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .about-team {
    padding: 120px 0;
  }
}
.about-team__parallax {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.15;
}
@media (max-width: 1024px) {
  .about-team__parallax {
    background-attachment: scroll;
  }
}
.about-team__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(31, 41, 55, 0.95) 100%);
}
.about-team__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.about-team__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}
.about-team__text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 48px;
}
@media (min-width: 1024px) {
  .about-team__text {
    font-size: 17px;
  }
}
.about-team__text p {
  margin: 0 0 16px;
}
.about-team__text p:last-child {
  margin-bottom: 0;
}

.founders-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .founders-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.founder-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.founder-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}
.founder-card:hover .founder-card__photo img {
  transform: scale(1.05);
}
.founder-card__photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
@media (min-width: 1024px) {
  .founder-card__photo {
    width: 140px;
    height: 140px;
  }
}
.founder-card__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.founder-card__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}
.founder-card__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.founder-card__name {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.founder-card__role {
  font-size: 14px;
  color: #38bdf8;
  font-weight: 500;
}
.founder-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 8px 0 0;
}

.about-cta {
  padding: 48px 0;
  background: #ffffff;
}
@media (min-width: 1024px) {
  .about-cta {
    padding: 80px 0;
  }
}
.about-cta__card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #f3f4f6;
  border-radius: 28px;
  padding: 48px 24px;
  text-align: center;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}
@media (min-width: 1024px) {
  .about-cta__card {
    padding: 72px 48px;
  }
}
.about-cta__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 14px 0 rgba(26, 86, 219, 0.35);
}
.about-cta__title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}
.about-cta__text {
  font-size: 16px;
  line-height: 1.7;
  color: #6b7280;
  max-width: 650px;
  margin: 0 auto 32px;
}
@media (min-width: 1024px) {
  .about-cta__text {
    font-size: 17px;
  }
}
.about-cta__text p {
  margin: 0;
}
.about-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
@media (min-width: 768px) {
  .about-cta__buttons {
    flex-direction: row;
  }
}

.about-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
}
.about-cta .btn--primary {
  background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px 0 rgba(26, 86, 219, 0.35);
}
.about-cta .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px 0 rgba(26, 86, 219, 0.3);
  color: #fff;
}
.about-cta .btn--outline {
  background: transparent;
  color: #1a56db;
  border: 2px solid #1a56db;
}
.about-cta .btn--outline:hover {
  background: #1a56db;
  color: #fff;
  transform: translateY(-2px);
}
.about-cta .btn--lg {
  padding: 18px 36px;
  font-size: 16px;
}
@media (min-width: 1024px) {
  .about-cta .btn--lg {
    padding: 18px 40px;
  }
}/*# sourceMappingURL=main.css.map */