
.cart-drawer-overlay[data-v-1b57e281] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.cart-drawer-overlay.is-open[data-v-1b57e281] {
    opacity: 1;
    visibility: visible;
}
.cart-drawer[data-v-1b57e281] {
    position: absolute;
    top: 0;
    right: -450px;
    width: 400px;
    height: 100vh;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.cart-drawer-overlay.is-open .cart-drawer[data-v-1b57e281] {
    right: 0;
}
@media (max-width: 576px) {
.cart-drawer[data-v-1b57e281] {
        width: 100%;
        right: -100%;
}
}
.cart-header[data-v-1b57e281] {
    padding: 24px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-title[data-v-1b57e281] {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}
.close-btn[data-v-1b57e281] {
    background: #f6f7fb;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}
.close-btn[data-v-1b57e281]:hover {
    background: #ef4444;
    color: #fff;
}
.cart-body[data-v-1b57e281] {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}
.empty-cart[data-v-1b57e281] {
    text-align: center;
    padding: 60px 20px;
    color: #777;
}
.empty-cart i[data-v-1b57e281] {
    font-size: 48px;
    color: #d1d5db;
    margin-bottom: 16px;
}
.continue-btn[data-v-1b57e281] {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 24px;
    background: #f6f7fb;
    color: #111827;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}
.cart-item-list[data-v-1b57e281] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.cart-item[data-v-1b57e281] {
    display: flex;
    gap: 16px;
}
.item-img[data-v-1b57e281] {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #f9f9f9;
    flex-shrink: 0;
}
.item-img img[data-v-1b57e281] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.item-info[data-v-1b57e281] {
    flex: 1;
}
.item-name[data-v-1b57e281] {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}
.item-name a[data-v-1b57e281] {
    color: #111827;
    text-decoration: none;
}
.item-name a[data-v-1b57e281]:hover {
    color: var(--color-primary);
}
.item-meta[data-v-1b57e281] {
    font-size: 13px;
    color: #6b7280;
    display: block;
    margin-bottom: 4px;
}
.item-price[data-v-1b57e281] {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}
.item-actions[data-v-1b57e281] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.qty-control[data-v-1b57e281] {
    display: flex;
    align-items: center;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    padding: 2px;
    width: 140px;
    height: 36px;
    transition: all 0.3s ease;
}
.qty-control[data-v-1b57e281]:focus-within {
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(76, 29, 149, 0.08);
}
.qty-control.at-limit[data-v-1b57e281] {
    border-color: #fca5a5;
    background: #fef2f2;
}
.qty-control button[data-v-1b57e281] {
    background: #ffffff;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.qty-control button[data-v-1b57e281]:hover {
    background: var(--color-primary);
    color: #fff;
    transform: scale(1.05);
}
.qty-control button[data-v-1b57e281]:active {
    transform: scale(0.95);
}
.qty-control input[data-v-1b57e281] {
    flex: 1;
    min-width: 0;
    height: 100%;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    padding: 0;
    margin: 0;
    -moz-appearance: textfield;
}
.qty-control input[data-v-1b57e281]::-webkit-outer-spin-button,
.qty-control input[data-v-1b57e281]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.remove-btn[data-v-1b57e281] {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 14px;
    padding: 4px;
}
.remove-btn[data-v-1b57e281]:hover {
    opacity: 0.8;
}
.cart-footer[data-v-1b57e281] {
    padding: 24px;
    border-top: 1px solid #eee;
    background: #f9fafb;
}
.subtotal-row[data-v-1b57e281] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}
.subtotal-val[data-v-1b57e281] {
    color: var(--color-primary);
}
.taxes-note[data-v-1b57e281] {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 20px;
}
.cart-footer-actions .axil-btn[data-v-1b57e281] {
    border-radius: 8px;
    padding: 16px;
    font-size: 16px;
    text-align: center;
    display: block;
}

/* Header Avatar Styles */
.header-avatar-wrap[data-v-f128f1aa] {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}
.header-avatar-wrap[data-v-f128f1aa]:hover {
  border-color: var(--color-primary);
}
.header-avatar-img[data-v-f128f1aa] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mobile-nav-backdrop[data-v-f128f1aa] {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.55);
  z-index: 1000;
}
.axil-mainmenu[data-v-f128f1aa] {
  position: relative;
  z-index: 1200;
  overflow: visible;
  width: min(100% - 32px, 1180px);
  margin: 12px auto;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, width 0.2s ease, margin 0.2s ease;
}
.axil-mainmenu>.container[data-v-f128f1aa] {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}
.header-main-nav[data-v-f128f1aa] {
  position: relative;
  z-index: 1300;
}
.header-navbar[data-v-f128f1aa] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.header-brand[data-v-f128f1aa],
.header-action>.action-list[data-v-f128f1aa] {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-action>.action-list[data-v-f128f1aa] {
  margin: 0;
}
.header-main-nav[data-v-f128f1aa] {
  flex: 1;
  display: flex;
  justify-content: center;
}
.header-brand .logo-light[data-v-f128f1aa] {
  display: none;
}
.mobile-nav-panel[data-v-f128f1aa] {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 1500;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-shadow: -10px 0 40px rgba(15, 23, 42, 0.12);
}
.mobile-nav-header[data-v-f128f1aa] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mobile-nav-header .mobile-brand img[data-v-f128f1aa] {
  max-width: 140px;
}
.mobile-close-btn[data-v-f128f1aa] {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f3f4f6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #111827;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.12);
}
.mobile-mainmenu[data-v-f128f1aa] {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 18px;
  font-weight: 600;
}
.mobile-mainmenu a[data-v-f128f1aa] {
  color: #1f2937;
}
.mobile-mainmenu a.active[data-v-f128f1aa] {
  color: #ff7c5b;
}
.mobile-slide-enter-active[data-v-f128f1aa],
.mobile-slide-leave-active[data-v-f128f1aa] {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-slide-enter-from[data-v-f128f1aa],
.mobile-slide-leave-to[data-v-f128f1aa] {
  transform: translateX(100%);
  opacity: 0;
}
body.mobile-nav-open {
  overflow: hidden;
}
.header-main-nav.is-mobile-open .mainmenu-nav[data-v-f128f1aa] {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mainmenu-nav[data-v-f128f1aa] {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-link[data-v-f128f1aa] {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
}
.nav-link[data-v-f128f1aa]::before {
  content: none !important;
}
.nav-link.active[data-v-f128f1aa] {
  color: #ff7c5b;
}
.nav-link.active[data-v-f128f1aa]::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #ff7c5b;
  border-radius: 1px;
}
@media (max-width: 991px) {
.mainmenu-nav[data-v-f128f1aa] {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    max-width: none;
    background: #ffffff;
    z-index: 1400;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    padding: 32px 24px;
    overflow-y: auto;
}
.mainmenu-nav .mainmenu[data-v-f128f1aa] {
    flex-direction: column;
    gap: 18px;
}
.header-main-nav.is-mobile-open .mainmenu-nav[data-v-f128f1aa] {
    transform: translateY(0);
}
}
.my-account[data-v-f128f1aa] {
  position: relative;
}
.my-account.open .my-account-dropdown[data-v-f128f1aa] {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px);
}
.my-account-dropdown[data-v-f128f1aa] {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: opacity 0.2s ease, transform 0.2s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.login-header[data-v-f128f1aa] {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.login-header .title[data-v-f128f1aa] {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}
.my-account-dropdown ul[data-v-f128f1aa] {
  list-style: none;
  padding: 0;
  margin: 0;
}
.my-account-dropdown ul li[data-v-f128f1aa] {
  margin-bottom: 12px;
}
.my-account-dropdown ul li[data-v-f128f1aa]:last-child {
  margin-bottom: 0;
}
.my-account-dropdown ul li a[data-v-f128f1aa] {
  color: #555;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
}
.my-account-dropdown ul li a[data-v-f128f1aa]:hover {
  color: #ff7c5b;
}
.my-account-dropdown .login-btn[data-v-f128f1aa] {
  margin-bottom: 15px;
}
.my-account-dropdown .login-btn .axil-btn[data-v-f128f1aa] {
  width: 100%;
  text-align: center;
  padding: 10px 15px;
  font-size: 15px;
}
.my-account-dropdown .reg-footer[data-v-f128f1aa] {
  font-size: 13px;
  color: #777;
}
.my-account-dropdown .reg-footer .btn-link[data-v-f128f1aa] {
  color: #ff7c5b;
  font-weight: 600;
  text-decoration: none;
}
.fade-enter-active[data-v-f128f1aa],
.fade-leave-active[data-v-f128f1aa] {
  transition: opacity 0.2s ease;
}
.fade-enter-from[data-v-f128f1aa],
.fade-leave-to[data-v-f128f1aa] {
  opacity: 0;
}
.header.is-sticky .axil-mainmenu[data-v-f128f1aa] {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100% - 32px, 1180px);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  z-index: 1400;
  transition: transform 0.2s ease, box-shadow 0.2s ease, width 0.2s ease;
  margin: 12px auto;
  overflow: visible;
}
.header.is-sticky .header-navbar[data-v-f128f1aa] {
  padding-top: 12px;
  padding-bottom: 12px;
}
@media (max-width: 991px) {
.axil-mainmenu[data-v-f128f1aa] {
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}
.header.is-sticky .axil-mainmenu[data-v-f128f1aa] {
    width: 100%;
    left: 0;
    transform: none;
    border-radius: 0;
    margin: 0;
}
.axil-mainmenu>.container[data-v-f128f1aa] {
    padding-left: 16px;
    padding-right: 16px;
}
.header-navbar[data-v-f128f1aa] {
    padding: 12px 0;
}
.header-main-nav[data-v-f128f1aa] {
    display: none;
}
.header-brand .logo-dark[data-v-f128f1aa] {
    display: block;
}
.header.is-sticky .axil-mainmenu[data-v-f128f1aa] {
    position: fixed;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    margin: 0;
    border-radius: 0;
}
}

/* Header Search Modal */
.header-search-modal[data-v-f128f1aa] {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.header-search-modal.open[data-v-f128f1aa] {
  opacity: 1;
  visibility: visible;
}
.header-search-wrap[data-v-f128f1aa] {
  width: 100%;
  max-width: 800px;
  padding: 0 30px;
}
.header-search-modal .card-close[data-v-f128f1aa] {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.2s;
}
.header-search-modal .card-close[data-v-f128f1aa]:hover {
  background: #ff6b6b;
  color: white;
}
.header-search-modal .input-group[data-v-f128f1aa] {
  display: flex;
  gap: 15px;
}
.header-search-modal .form-control[data-v-f128f1aa] {
  height: 60px;
  border: none;
  border-bottom: 2px solid #ebebeb;
  font-size: 32px;
  font-weight: 700;
  border-radius: 0;
  padding: 0;
  background: transparent;
}
.header-search-modal .form-control[data-v-f128f1aa]:focus {
  box-shadow: none;
  border-color: #ff6b6b;
}
.header-search-modal .axil-btn[data-v-f128f1aa] {
  padding: 0 40px;
  font-size: 18px;
}

.auth-page-wrapper {
  padding: 0;
  margin: 0;
}
:root {
  --vc-clr-primary: #000;
  --vc-clr-secondary: #090f207f;
  --vc-clr-white: #ffffff;
}

.carousel,
.carousel * {
  box-sizing: border-box;
}

.carousel {
  height: var(--vc-carousel-height);
  overscroll-behavior: none;
  position: relative;
  touch-action: pan-x pan-y pinch-zoom;
  z-index: 1;
}

.carousel.is-dragging {
  touch-action: none;
}

.carousel__track {
  display: flex;
  gap: var(--vc-slide-gap);
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  transition: transform var(--vc-transition-easing);
  transition-duration: var(--vc-transition-duration);
  width: 100%;
}

.carousel__viewport {
  height: 100%;
  overflow: hidden;
  width: 100%;
}

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

.carousel.is-rtl {
  direction: rtl;
}

.carousel.is-ttb .carousel__track {
  flex-direction: column;
}

.carousel.is-btt .carousel__track {
  flex-direction: column-reverse;
}

.carousel.is-vertical .carousel__slide--clone:first-child {
  margin-block-start: var(--vc-cloned-offset);
}

.carousel:not(.is-vertical) .carousel__slide--clone:first-child {
  margin-inline-start: var(--vc-cloned-offset);
}

.carousel.is-effect-fade .carousel__track {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 100%;
  transition: none;
}

.carousel.is-effect-fade .carousel__slide {
  grid-area: 1 / 1;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--vc-transition-easing);
  transition-duration: var(--vc-transition-duration);
  width: 100%;
}

.carousel.is-effect-fade .carousel__slide--active {
  opacity: 1;
  pointer-events: auto;
}

:root {
  --vc-icn-width: 100%;
}

.carousel__icon {
  fill: currentColor;
  height: var(--vc-icn-width);
  width: var(--vc-icn-width);
}

:root {
  --vc-nav-background: transparent;
  --vc-nav-border-radius: 0;
  --vc-nav-color: var(--vc-clr-primary);
  --vc-nav-color-hover: var(--vc-clr-secondary);
  --vc-nav-height: 30px;
  --vc-nav-width: 30px;
}

.carousel__next,
.carousel__prev {
  align-items: center;
  background: var(--vc-nav-background);
  border: 0;
  border-radius: var(--vc-nav-border-radius);
  color: var(--vc-nav-color);
  cursor: pointer;
  display: flex;
  font-size: var(--vc-nav-height);
  height: var(--vc-nav-height);
  justify-content: center;
  padding: 0;
  position: absolute;
  inset-block-start: 50%;
  transform: translateY(-50%);
  width: var(--vc-nav-width);
}

.carousel__next--disabled,
.carousel__prev--disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.carousel__next {
  inset-inline-end: 0;
}

.carousel__prev {
  inset-inline-start: 0;
}

.carousel.is-vertical {
  .carousel__next,
  .carousel__prev {
    inset-inline: auto 50%;
    inset-block-start: auto;
    transform: translateX(50%);
  }

  &.is-ttb {
    .carousel__next {
      inset-block-end: 0;
    }
    .carousel__prev {
      inset-block-start: 0;
    }
  }

  &.is-btt {
    .carousel__next {
      inset-block-start: 0;
    }
    .carousel__prev {
      inset-block-end: 0;
    }
  }
}

@media (hover: hover) {
  .carousel__next:hover,
  .carousel__prev:hover {
    color: var(--vc-nav-color-hover);
  }
}

:root {
  --vc-pgn-active-color: var(--vc-clr-primary);
  --vc-pgn-background-color: var(--vc-clr-secondary);
  --vc-pgn-border-radius: 0;
  --vc-pgn-gap: 6px;
  --vc-pgn-height: 4px;
  --vc-png-bottom: 10px;
  --vc-png-left: auto;
  --vc-png-right: 10px;
  --vc-pgn-width: 16px;
}

.carousel__pagination {
  bottom: var(--vc-png-bottom);
  display: flex;
  gap: var(--vc-pgn-gap);
  justify-content: center;
  left: 50%;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  transform: translateX(-50%);
}

.carousel__pagination-button {
  background-color: var(--vc-pgn-background-color);
  border: 0;
  border-radius: var(--vc-pgn-border-radius);
  cursor: pointer;
  display: block;
  height: var(--vc-pgn-height);
  margin: 0;
  padding: 0;
  width: var(--vc-pgn-width);
}

.carousel__pagination-button--active {
  background-color: var(--vc-pgn-active-color);
}

@media (hover: hover) {
  .carousel__pagination-button:hover {
    background-color: var(--vc-pgn-active-color);
  }
}

.carousel.is-vertical {
  .carousel__pagination {
    bottom: 50%;
    flex-direction: column;
    left: var(--vc-png-left);
    right: var(--vc-png-right);
    transform: translateY(50%);
  }

  .carousel__pagination-button {
    height: var(--vc-pgn-width);
    width: var(--vc-pgn-height);
  }
}

.carousel.is-btt .carousel__pagination {
  flex-direction: column-reverse;
}

.carousel__slide {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  margin: 0;
  transform: translateZ(0);
}


.home-page[data-v-3f443294] {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.slider-box-wrap[data-v-3f443294] {
  position: relative;
}
.slider-activation-two[data-v-3f443294] {
  position: relative;
}
.slider-activation-two .carousel__track[data-v-3f443294] {
  display: block;
}
.slider-activation-two .carousel__slide[data-v-3f443294] {
  padding: 0;
  transition: opacity 0.6s ease;
}
.slider-panel[data-v-3f443294] {
  border-radius: 20px;
  padding: 80px 60px;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}
.carousel__slide--active .slider-panel[data-v-3f443294] {
  animation: fadeIn-3f443294 0.6s ease forwards;
}
@keyframes fadeIn-3f443294 {
from {
    opacity: 0;
    transform: translateY(10px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.slider-gradient-1[data-v-3f443294] {
  background: linear-gradient(135deg, #d4fc79 0%, #c8f270 25%, #b5e65c 60%, #96e6a1 100%);
}
.slider-gradient-1[data-v-3f443294]::before,
.slider-gradient-2[data-v-3f443294]::before,
.slider-gradient-3[data-v-3f443294]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  border-radius: 20px;
  pointer-events: none;
}
.slider-gradient-2[data-v-3f443294] {
  background: linear-gradient(135deg, #a8e6cf 0%, #95ddb8 25%, #7fcfa4 60%, #6bc5a0 100%);
}
.slider-gradient-3[data-v-3f443294] {
  background: linear-gradient(135deg, #c5f9d7 0%, #b0f4c8 25%, #9aecb6 60%, #7fe5a8 100%);
}
.slider-panel .main-slider-content[data-v-3f443294] {
  flex: 1;
  z-index: 2;
}
.slider-panel .subtitle[data-v-3f443294] {
  color: #ffffff;
  font-weight: 700;
  background: #ff6347;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 99, 71, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}
.slider-panel .title[data-v-3f443294] {
  color: #1a1a1a;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
  font-size: 72px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}
.product-description[data-v-3f443294] {
  color: #2c2c2c;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 450px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
.shop-btn .axil-btn[data-v-3f443294] {
  padding: 18px 45px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  background: #ffffff !important;
  color: #1a1a1a !important;
  border: 3px solid #ffffff !important;
  border-radius: 50px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  position: relative;
  overflow: hidden;
}
.shop-btn .axil-btn[data-v-3f443294]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.shop-btn .axil-btn[data-v-3f443294]:hover::before {
  width: 300px;
  height: 300px;
}
.shop-btn .axil-btn[data-v-3f443294]:hover {
  transform: translateY(-4px) scale(1.05) !important;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3) !important;
  background: #f8f8f8 !important;
  border-color: #f8f8f8 !important;
}
.shop-btn .axil-btn i[data-v-3f443294] {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
  color: #1a1a1a;
}
.shop-btn .axil-btn:hover i[data-v-3f443294] {
  transform: translateX(5px);
}
.main-slider-thumb[data-v-3f443294] {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.main-slider-thumb img[data-v-3f443294] {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
  transform: scale(1.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: productFloat-3f443294 3s ease-in-out infinite;
}
.carousel__slide--active .main-slider-thumb img[data-v-3f443294]:hover {
  transform: scale(1.1) rotate(2deg);
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.4));
  animation: none;
}
@keyframes productFloat-3f443294 {
0%,
  100% {
    transform: scale(1.05) translateY(0);
}
50% {
    transform: scale(1.05) translateY(-10px);
}
}
.slider-decoration[data-v-3f443294] {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
}
.slider-bird-1[data-v-3f443294] {
  top: 20px;
  right: 20%;
  width: 80px;
  animation: float-3f443294 6s ease-in-out infinite;
}
.slider-bird-2[data-v-3f443294] {
  top: 50%;
  left: 10%;
  width: 60px;
  animation: float-3f443294 7s ease-in-out infinite 1s;
  transform: scaleX(-1);
}
.slider-bird-3[data-v-3f443294] {
  bottom: 15%;
  right: 10%;
  width: 70px;
  animation: float-3f443294 8s ease-in-out infinite 2s;
}
.slider-bee-1[data-v-3f443294] {
  bottom: 30px;
  left: 15%;
  width: 70px;
  animation: float-3f443294 5s ease-in-out infinite reverse;
}
.slider-bee-2[data-v-3f443294] {
  top: 40%;
  right: 15%;
  width: 55px;
  animation: float-3f443294 6s ease-in-out infinite 1.5s;
}
.slider-bee-3[data-v-3f443294] {
  top: 60px;
  left: 5%;
  width: 65px;
  animation: float-3f443294 5.5s ease-in-out infinite 0.5s;
}
@keyframes float-3f443294 {
0%,
  100% {
    transform: translateY(0);
}
50% {
    transform: translateY(-20px);
}
}
.axil-slick-dots[data-v-3f443294] {
  padding-bottom: 50px;
}
.slick-dots[data-v-3f443294] {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.slick-dots li[data-v-3f443294] {
  width: 12px;
  height: 12px;
}
.slick-dots button[data-v-3f443294] {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 2px solid #333;
  border-radius: 50%;
  background: transparent;
  font-size: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}
.slick-dots li.slick-active button[data-v-3f443294] {
  background: #333;
  width: 32px;
  border-radius: 6px;
}
.slick-dots button[data-v-3f443294]:hover {
  background: #555;
}
.slider-arrow[data-v-3f443294] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  border: 2px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.slider-arrow[data-v-3f443294]:hover,
.slider-arrow[data-v-3f443294]:focus {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  outline: 3px solid rgba(0, 0, 0, 0.3);
  outline-offset: 2px;
}
.slider-arrow-prev[data-v-3f443294] {
  left: 20px;
}
.slider-arrow-next[data-v-3f443294] {
  right: 20px;
}
.slider-arrow i[data-v-3f443294] {
  font-size: 20px;
  color: #333;
}
.category-grid[data-v-3f443294] {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.category-card[data-v-3f443294] {
  background: linear-gradient(155deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(25, 59, 104, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.category-card img[data-v-3f443294] {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.category-content[data-v-3f443294] {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.category-content .cat-title[data-v-3f443294] {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.category-content .cat-copy[data-v-3f443294] {
  margin: 0;
  color: #5a5a5a;
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}
.category-link[data-v-3f443294] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #ff7c5b;
  transition: transform 0.2s ease, color 0.2s ease;
}
.category-link[data-v-3f443294]:hover {
  transform: translateX(4px);
  color: #ff5a37;
}
.category-card[data-v-3f443294]:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(25, 59, 104, 0.1);
}
.testimonial-wrapper[data-v-3f443294] {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
@media (max-width: 991px) {
.slider-panel[data-v-3f443294] {
    flex-direction: column;
    text-align: center;
    padding: 50px 25px;
    min-height: auto;
}
.slider-panel .title[data-v-3f443294] {
    font-size: 42px;
}
.product-description[data-v-3f443294] {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 100%;
}
.shop-btn .axil-btn[data-v-3f443294] {
    padding: 16px 40px !important;
    font-size: 17px !important;
    min-height: 56px;
}
.main-slider-thumb img[data-v-3f443294] {
    transform: scale(1);
    max-width: 90%;
}
.slider-bird-1[data-v-3f443294],
  .slider-bird-2[data-v-3f443294],
  .slider-bird-3[data-v-3f443294],
  .slider-bee-1[data-v-3f443294],
  .slider-bee-2[data-v-3f443294],
  .slider-bee-3[data-v-3f443294] {
    width: 40px;
}
.slider-bird-2[data-v-3f443294],
  .slider-bee-3[data-v-3f443294] {
    display: none;
}
.slider-arrow[data-v-3f443294] {
    width: 40px;
    height: 40px;
}
.slider-arrow-prev[data-v-3f443294] {
    left: 10px;
}
.slider-arrow-next[data-v-3f443294] {
    right: 10px;
}
.slider-arrow i[data-v-3f443294] {
    font-size: 16px;
}
.category-grid[data-v-3f443294] {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
}
@media (max-width: 576px) {
.slider-panel[data-v-3f443294] {
    padding: 35px 18px;
}
.slider-panel .title[data-v-3f443294] {
    font-size: 32px;
}
.product-description[data-v-3f443294] {
    font-size: 15px;
    line-height: 1.9;
}
.shop-btn .axil-btn[data-v-3f443294] {
    padding: 15px 35px !important;
    font-size: 16px !important;
    min-height: 54px;
}
.slider-arrow[data-v-3f443294] {
    width: 36px;
    height: 36px;
}
.slider-arrow i[data-v-3f443294] {
    font-size: 14px;
}
.category-grid[data-v-3f443294] {
    grid-template-columns: 1fr;
}
}

.shop-page[data-v-21066dcc] {
  background: #f5f7fb;
}
.shop-header[data-v-21066dcc] {
  padding: 56px 0 48px;
  background: linear-gradient(135deg, #f8f9ff 0%, #f5fafd 100%);
}
.shop-breadcrumb[data-v-21066dcc] {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 28px;
}
.shop-breadcrumb a[data-v-21066dcc] {
  color: inherit;
}
.shop-breadcrumb .current[data-v-21066dcc] {
  color: #111827;
  font-weight: 600;
}
.shop-breadcrumb .separator[data-v-21066dcc] {
  color: #9ca3af;
}
.shop-title-row[data-v-21066dcc] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.title-block .title[data-v-21066dcc] {
  font-size: 42px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}
.title-block .subtitle[data-v-21066dcc] {
  color: #6b7280;
  max-width: 580px;
  font-size: 16px;
  line-height: 1.7;
}
.hero-thumbnail[data-v-21066dcc] {
  flex: 0 0 180px;
  display: flex;
  justify-content: flex-end;
}
.hero-thumbnail img[data-v-21066dcc] {
  max-width: 140px;
  filter: drop-shadow(0 24px 45px rgba(15, 23, 42, 0.12));
}
.shop-content[data-v-21066dcc] {
  padding: 60px 0 90px;
}
.shop-grid[data-v-21066dcc] {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
.shop-sidebar[data-v-21066dcc] {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.sidebar-card[data-v-21066dcc] {
  border-bottom: 1px solid #edf0f7;
  padding-bottom: 24px;
}
.sidebar-card[data-v-21066dcc]:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.sidebar-header h4[data-v-21066dcc] {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 18px;
}
.sidebar-body[data-v-21066dcc] {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar-search[data-v-21066dcc] {
  position: relative;
}
.sidebar-search i[data-v-21066dcc] {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}
.sidebar-search input[data-v-21066dcc] {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 12px 16px 12px 44px;
  font-size: 15px;
  transition: all 0.2s ease;
}
.sidebar-search input[data-v-21066dcc]:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
}
.filter-list[data-v-21066dcc] {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.filter-list li button[data-v-21066dcc] {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 1px solid transparent;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
  color: #374151;
  transition: all 0.2s ease;
}
.filter-list li.active button[data-v-21066dcc],
.filter-list li button[data-v-21066dcc]:hover {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.3);
  color: #4c1d95;
}
.filter-list .count[data-v-21066dcc] {
  font-size: 13px;
  color: #6b7280;
}
.color-grid[data-v-21066dcc] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.color-dot[data-v-21066dcc] {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid transparent;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.color-dot[data-v-21066dcc]:hover {
  transform: translateY(-3px);
}
.color-dot.active[data-v-21066dcc] {
  border-color: #111827;
}
.size-grid[data-v-21066dcc] {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.size-grid button[data-v-21066dcc] {
  min-width: 48px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-weight: 600;
  color: #374151;
  transition: all 0.2s ease;
}
.size-grid button[data-v-21066dcc]:hover,
.size-grid button.active[data-v-21066dcc] {
  background: #4c1d95;
  color: #ffffff;
  border-color: #4c1d95;
}
.highlights .feature-list[data-v-21066dcc] {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-list li[data-v-21066dcc] {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #374151;
}
.feature-list i[data-v-21066dcc] {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.12);
  color: #4c1d95;
}
.feature-list h6[data-v-21066dcc] {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.feature-list p[data-v-21066dcc] {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}
.shop-results[data-v-21066dcc] {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.results-toolbar[data-v-21066dcc] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.results-count[data-v-21066dcc] {
  color: #6b7280;
  margin: 0;
}
.sort-control select[data-v-21066dcc] {
  min-width: 200px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 10px 14px;
  font-weight: 600;
  color: #374151;
}
.product-grid[data-v-21066dcc] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}

/* Skeleton loading card */
.skeleton-card[data-v-21066dcc] {
  pointer-events: none;
}
.sk-thumb[data-v-21066dcc] {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer-21066dcc 1.4s infinite;
  aspect-ratio: 1;
}
.sk-line[data-v-21066dcc] {
  height: 14px;
  border-radius: 6px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer-21066dcc 1.4s infinite;
}
.sk-short[data-v-21066dcc] {
  width: 55%;
}
.sk-price[data-v-21066dcc] {
  width: 36%;
  height: 20px;
}
@keyframes shimmer-21066dcc {
0% {
    background-position: 200% 0;
}
100% {
    background-position: -200% 0;
}
}

/* Live product card link */
.product-name-link[data-v-21066dcc] {
  text-decoration: none;
  color: inherit;
}
.variants-count[data-v-21066dcc] {
  font-size: 12px;
  color: #9ca3af;
  margin-left: 8px;
}
.product-card[data-v-21066dcc] {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.product-card[data-v-21066dcc]:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
}
.product-thumb[data-v-21066dcc] {
  position: relative;
  padding: 30px;
  background: #f8f9ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-thumb img[data-v-21066dcc] {
  max-width: 160px;
  height: auto;
}
.badge[data-v-21066dcc] {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #4c1d95;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.badge.popular[data-v-21066dcc],
.badge.bestseller[data-v-21066dcc] {
  background: #ef4444;
}
.badge.limited[data-v-21066dcc] {
  background: #f59e0b;
}
.product-actions[data-v-21066dcc] {
  position: absolute;
  inset: auto 20px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.2s ease;
}
.product-card:hover .product-actions[data-v-21066dcc] {
  opacity: 1;
  transform: translateY(0);
}
.product-actions .axil-btn[data-v-21066dcc] {
  flex: 1;
  min-width: 0;
  padding: 12px;
  font-size: 14px;
}
.action-icons[data-v-21066dcc] {
  display: flex;
  gap: 8px;
}
.action-icons button[data-v-21066dcc] {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: none;
  background: #ffffff;
  color: #4c1d95;
  box-shadow: 0 6px 18px rgba(99, 102, 241, 0.18);
  transition: all 0.2s ease;
}
.action-icons button.active[data-v-21066dcc] {
  background: #ff7c5b;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(255, 124, 91, 0.3);
}
.product-info[data-v-21066dcc] {
  padding: 0 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-colors[data-v-21066dcc] {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-colors .label[data-v-21066dcc] {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #6b7280;
}
.swatch-row[data-v-21066dcc] {
  display: flex;
  gap: 6px;
}
.swatch-dot[data-v-21066dcc] {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px rgba(17, 24, 39, 0.15);
}
.product-category[data-v-21066dcc] {
  font-size: 13px;
  font-weight: 600;
  color: #6366f1;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.product-name[data-v-21066dcc] {
  font-size: 18px;
  color: #111827;
  margin: 0;
}
.product-name a[data-v-21066dcc] {
  color: inherit;
}
.product-pricing[data-v-21066dcc] {
  display: flex;
  align-items: center;
  gap: 10px;
}
.price[data-v-21066dcc] {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}
.old-price[data-v-21066dcc] {
  font-size: 14px;
  text-decoration: line-through;
  color: #9ca3af;
}
.product-rating[data-v-21066dcc] {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rating-stars[data-v-21066dcc] {
  color: #f59e0b;
  display: flex;
  gap: 4px;
}
.rating-count[data-v-21066dcc] {
  font-size: 13px;
  color: #6b7280;
}
.empty-state[data-v-21066dcc] {
  text-align: center;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.empty-state img[data-v-21066dcc] {
  max-width: 180px;
  opacity: 0.85;
}
.empty-state p[data-v-21066dcc] {
  max-width: 380px;
  color: #6b7280;
}
.pagination[data-v-21066dcc] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.page-btn[data-v-21066dcc] {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
  font-weight: 600;
  transition: all 0.2s ease;
}
.page-btn[data-v-21066dcc]:hover,
.page-btn.active[data-v-21066dcc] {
  background: #4c1d95;
  color: #ffffff;
  border-color: #4c1d95;
}
.page-btn[data-v-21066dcc]:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.visually-hidden[data-v-21066dcc] {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
.shop-grid[data-v-21066dcc] {
    grid-template-columns: 280px minmax(0, 1fr);
}
}
@media (max-width: 991px) {
.shop-title-row[data-v-21066dcc] {
    flex-direction: column;
    align-items: flex-start;
}
.hero-thumbnail[data-v-21066dcc] {
    justify-content: flex-start;
}
.shop-grid[data-v-21066dcc] {
    grid-template-columns: 1fr;
}
.shop-sidebar[data-v-21066dcc] {
    padding: 24px;
}
}
@media (max-width: 767px) {
.shop-sidebar[data-v-21066dcc] {
    flex-direction: column;
}
.sidebar-card[data-v-21066dcc] {
    border-right: none;
    border-bottom: 1px solid #edf0f7;
    padding-right: 0;
    padding-bottom: 20px;
}
.results-toolbar[data-v-21066dcc] {
    flex-direction: column;
    align-items: flex-start;
}
.sort-control select[data-v-21066dcc] {
    width: 100%;
}
}

.about-page[data-v-f3f80343] {
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding-bottom: 120px;
}
.container[data-v-f3f80343] {
  width: min(1160px, 92vw);
  margin: 0 auto;
}
.hero[data-v-f3f80343] {
  background: linear-gradient(135deg, #f8f9ff 0%, #f1f5ff 100%);
  padding: 120px 0 100px;
  overflow: hidden;
}
.hero .container[data-v-f3f80343] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  align-items: center;
}
.hero-content .eyebrow[data-v-f3f80343],
.story-content .eyebrow[data-v-f3f80343] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff7c5b;
  margin-bottom: 18px;
}
.hero-content .title[data-v-f3f80343] {
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 18px;
  color: #0f172a;
}
.hero-content .subtitle[data-v-f3f80343] {
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
  max-width: 520px;
}
.hero-image img[data-v-f3f80343] {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  display: block;
}
.mission-card[data-v-f3f80343] {
  background: #ffffff;
  border-radius: 28px;
  padding: 60px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mission-card h2[data-v-f3f80343] {
  font-size: 34px;
  margin: 0;
  color: #0f172a;
}
.mission-card p[data-v-f3f80343] {
  color: #475569;
  line-height: 1.8;
  margin: 0;
}
.mission-grid[data-v-f3f80343] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.mission-grid article[data-v-f3f80343] {
  background: linear-gradient(135deg, #fdf7f3 0%, #f8f9ff 100%);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}
.mission-grid h3[data-v-f3f80343] {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1e293b;
}
.story .container[data-v-f3f80343] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  align-items: center;
}
.story-image img[data-v-f3f80343] {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.1);
}
.story-content h2[data-v-f3f80343] {
  font-size: 36px;
  margin-bottom: 18px;
  color: #0f172a;
}
.story-content p[data-v-f3f80343] {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
}
.story-points[data-v-f3f80343] {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #1e293b;
  font-weight: 600;
}
.values .section-title[data-v-f3f80343],
.team .section-title[data-v-f3f80343] {
  text-align: center;
  font-size: 34px;
  margin-bottom: 40px;
  color: #0f172a;
}
.values-grid[data-v-f3f80343] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}
.values-grid article[data-v-f3f80343] {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.07);
}
.values-grid i[data-v-f3f80343] {
  font-size: 30px;
  color: #ff7c5b;
  margin-bottom: 18px;
}
.values-grid h3[data-v-f3f80343] {
  font-size: 20px;
  margin-bottom: 12px;
}
.values-grid p[data-v-f3f80343] {
  color: #475569;
  line-height: 1.7;
}
.team-grid[data-v-f3f80343] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.team-grid article[data-v-f3f80343] {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 24px 45px rgba(15, 23, 42, 0.06);
}
.team-grid img[data-v-f3f80343] {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
}
.team-grid h3[data-v-f3f80343] {
  font-size: 18px;
  margin-bottom: 6px;
}
.team-grid p[data-v-f3f80343] {
  color: #64748b;
  margin: 0;
}
.cta[data-v-f3f80343] {
  padding: 80px 0 0;
}
.cta-card[data-v-f3f80343] {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 28px;
  padding: 40px;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 30px 70px rgba(99, 102, 241, 0.25);
}
.cta-card h2[data-v-f3f80343] {
  margin: 0 0 12px;
  font-size: 30px;
}
.cta-card p[data-v-f3f80343] {
  margin: 0;
  max-width: 480px;
  line-height: 1.7;
}
.cta-card .axil-btn[data-v-f3f80343] {
  min-width: 160px;
}
@media (max-width: 767px) {
.about-page[data-v-f3f80343] {
    gap: 80px;
}
.mission-card[data-v-f3f80343] {
    padding: 36px 26px;
}
.cta-card[data-v-f3f80343] {
    padding: 32px;
}
}
.contact-page {
  display: flex;
  flex-direction: column;
  gap: 110px;
  padding-bottom: 120px;
}

.contact-page .container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.hero {
  padding: 110px 0 90px;
  background: linear-gradient(135deg, #fef3f2 0%, #f5f9ff 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 124, 91, 0.12);
  color: #ff7c5b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: clamp(30px, 5vw, 52px);
  margin-bottom: 18px;
  color: #0f172a;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
  max-width: 520px;
}

.hero-illustration img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: block;
}

.contact-info .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.info-grid article {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.info-grid i {
  font-size: 30px;
  color: #6366f1;
  margin-bottom: 14px;
}

.info-grid h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.info-grid p {
  margin: 0;
  color: #475569;
}

.contact-split .split-card {
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.08);
  padding: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
}

.form-area h2 {
  margin: 0 0 14px;
  font-size: 30px;
}

.form-area p {
  margin-bottom: 24px;
  color: #64748b;
}

.contact-page form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.contact-page label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  color: #1f2937;
}

.contact-page input,
.contact-page select,
.contact-page textarea {
  border-radius: 12px;
  border: 1px solid #d4d7dd;
  padding: 12px 14px;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page input:focus,
.contact-page select:focus,
.contact-page textarea:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
}

.form-success {
  margin: 0;
  color: #16a34a;
  font-weight: 600;
  padding: 10px;
  background: #f0fdf4;
  border-radius: 8px;
  border: 1px solid #bbf7d0;
}

.form-error {
  margin: 0;
  color: #ef4444;
  font-weight: 600;
  padding: 10px;
  background: #fef2f2;
  border-radius: 8px;
  border: 1px solid #fecaca;
}

.map-area h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.map-area p {
  margin-bottom: 20px;
  color: #475569;
}

.map-area iframe {
  width: 100%;
  border: none;
  height: 280px;
  border-radius: 18px;
  margin-bottom: 24px;
}

.hours-card {
  background: linear-gradient(135deg, #f8f9ff 0%, #edf1ff 100%);
  border-radius: 18px;
  padding: 24px;
}

.hours-card h4 {
  margin: 0 0 14px;
  font-size: 18px;
}

.hours-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-card li {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: #334155;
}

.faq h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 34px;
  color: #0f172a;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.faq-grid article {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.08);
}

.faq-grid h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-grid p {
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .contact-page {
    gap: 80px;
  }

  .contact-split .split-card {
    padding: 32px;
  }
}

.login-card-container[data-v-c45c17de] {
    padding: 60px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}
.login-card[data-v-c45c17de] {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    /* Keep hidden for border-radius, but ensure height is auto */
    height: auto !important;
    max-height: none !important;
    position: relative;
    z-index: 10;
}
.axil-signin-form-wrap[data-v-c45c17de] {
    padding: 60px 40px;
    margin: 0 !important;
    /* Override global negative margins */
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}
.axil-signin-form[data-v-c45c17de] {
    width: 100%;
    margin: 0 !important;
    /* Override global negative margins */
    overflow: visible !important;
}

/* Decorations in background */
.banner-decoration[data-v-c45c17de] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}
.decoration-1[data-v-c45c17de] {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80px;
    animation: float-c45c17de 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}
.decoration-2[data-v-c45c17de] {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 100px;
    animation: float-c45c17de 5s ease-in-out infinite;
    animation-delay: 1s;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}
.product-showcase-centered[data-v-c45c17de] {
    position: absolute;
    bottom: -50px;
    right: -60px;
    width: 350px;
    pointer-events: none;
    z-index: 20;
}
.product-img[data-v-c45c17de] {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    animation: float-slow-c45c17de 6s ease-in-out infinite;
}
.title[data-v-c45c17de] {
    font-size: 28px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 10px;
    text-align: center;
}
.b2[data-v-c45c17de] {
    color: #6c757d;
    font-size: 14px;
    text-align: center;
    display: block;
}
.mb--30[data-v-c45c17de] {
    margin-bottom: 30px;
}
.form-group[data-v-c45c17de] {
    margin-bottom: 20px;
}
.form-group label[data-v-c45c17de] {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #212529;
}
.form-control[data-v-c45c17de] {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    transition: all 0.3s;
    text-align: center;
}
.form-control[data-v-c45c17de]:focus {
    border-color: #3577f0;
    box-shadow: 0 0 0 3px rgba(53, 119, 240, 0.1);
    outline: none;
}
.position-relative[data-v-c45c17de] {
    position: relative;
}
.password-toggle[data-v-c45c17de] {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    z-index: 10;
}
.password-toggle[data-v-c45c17de]:hover {
    color: #ff6b6b;
}
.submit-btn[data-v-c45c17de] {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    background: #ff6b6b;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.submit-btn[data-v-c45c17de]:hover:not(:disabled) {
    background: #ee5a52;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}
.submit-btn[data-v-c45c17de]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.forgot-btn[data-v-c45c17de] {
    font-size: 14px;
    color: #6c757d;
    text-decoration: none;
}
.forgot-btn[data-v-c45c17de]:hover {
    color: #ff6b6b;
}
@keyframes float-c45c17de {
0%,
    100% {
        transform: translateY(0);
}
50% {
        transform: translateY(-15px);
}
}
@keyframes float-slow-c45c17de {
0%,
    100% {
        transform: translateY(0);
}
50% {
        transform: translateY(-10px);
}
}
@media (max-width: 991px) {
.axil-signin-form-wrap[data-v-c45c17de] {
        padding: 40px 20px;
}
}

.register-card-container[data-v-4cc271e5] {
    padding: 60px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}
.register-card[data-v-4cc271e5] {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    /* Keep hidden for border-radius, but ensure height is auto */
    height: auto !important;
    max-height: none !important;
    position: relative;
    z-index: 10;
}
.axil-signin-form-wrap[data-v-4cc271e5] {
    padding: 60px 40px;
    margin: 0 !important;
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}
.axil-signin-form[data-v-4cc271e5] {
    width: 100%;
    margin: 0 !important;
    overflow: visible !important;
}

/* Decorations in background */
.banner-decoration[data-v-4cc271e5] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}
.decoration-1[data-v-4cc271e5] {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80px;
    animation: float-4cc271e5 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}
.decoration-2[data-v-4cc271e5] {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 100px;
    animation: float-4cc271e5 5s ease-in-out infinite;
    animation-delay: 1s;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}
.product-showcase-centered[data-v-4cc271e5] {
    position: absolute;
    bottom: -50px;
    right: -60px;
    width: 350px;
    pointer-events: none;
    z-index: 20;
}
.product-img[data-v-4cc271e5] {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    animation: float-slow-4cc271e5 6s ease-in-out infinite;
}
.title[data-v-4cc271e5] {
    font-size: 28px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 10px;
    text-align: center;
}
.b2[data-v-4cc271e5] {
    color: #6c757d;
    font-size: 14px;
    text-align: center;
    display: block;
}
.mb--30[data-v-4cc271e5] {
    margin-bottom: 30px;
}
.form-group[data-v-4cc271e5] {
    margin-bottom: 20px;
}
.form-group label[data-v-4cc271e5] {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #212529;
}
.form-control[data-v-4cc271e5] {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    transition: all 0.3s;
    text-align: center;
}
.form-control[data-v-4cc271e5]:focus {
    border-color: #3577f0;
    box-shadow: 0 0 0 3px rgba(53, 119, 240, 0.1);
    outline: none;
}
.submit-btn[data-v-4cc271e5] {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    background: #ff6b6b;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}
.submit-btn[data-v-4cc271e5]:hover:not(:disabled) {
    background: #ee5a52;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}
.submit-btn[data-v-4cc271e5]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.forgot-btn[data-v-4cc271e5] {
    font-size: 14px;
    color: #6c757d;
    text-decoration: none;
}
.forgot-btn[data-v-4cc271e5]:hover {
    color: #ff6b6b;
}
.text-center[data-v-4cc271e5] {
    text-align: center;
}
.position-relative[data-v-4cc271e5] {
    position: relative;
}
.password-toggle[data-v-4cc271e5] {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    z-index: 10;
}
.password-toggle[data-v-4cc271e5]:hover {
    color: #ff6b6b;
}
@keyframes float-4cc271e5 {
0%,
    100% {
        transform: translateY(0);
}
50% {
        transform: translateY(-15px);
}
}
@keyframes float-slow-4cc271e5 {
0%,
    100% {
        transform: translateY(0);
}
50% {
        transform: translateY(-10px);
}
}
@media (max-width: 991px) {
.axil-signin-form-wrap[data-v-4cc271e5] {
        padding: 40px 20px;
}
}
