@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/lato-light.woff2") format("woff2");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/lato-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/lato-bold.woff2") format("woff2");
}

:root {
  /* Brand colors */
  --primary-color: #061b48;
  --secondary-color: #d0aa05;

  /* Text colors */
  --text-color: #333333;
  --text-secondary-color: #8f8f8f;
  --text-muted: #999;
  --text-white: #fff;
  --link-color: #2f80ed;

  /* Backgrounds */
  --body-background: #f9f9fb;
  --white-bg: #ffffff;
  --hover-bg: #f5f5f5;
  --image-bg: #f8f8f8;
  --overlay-color: rgba(0, 0, 0, 0.5);
  --overlay-light: rgba(0, 0, 0, 0.4);
  --white-hover: rgba(255, 255, 255, 0.1);

  /* Borders */
  --border-color: #f1f1f1;
  --form-border-color: #ebebeb;

  /* Forms */
  --form-text-color: #363636;

  /* Header */
  --header-background: #061b48;
  --header-color: #ffffff;
  --header-support-border: #3c3c3d;
  --header-icon-bg: #383839;

  /* Subheader */
  --subheader-background: #66728b;
  --subheader-color: #d0ab05;

  /* Navigation */
  --nav-link-color: #666;
  --nav-sub-bg: #555;
  --nav-sub-border: #949494;

  /* Footer */
  --footer-bg: #142846;
  --footer-color: #ffffff;
  --footer-text-muted: rgba(255, 255, 255, 0.7);
  --footer-text-dim: rgba(255, 255, 255, 0.5);
  --footer-border-dim: rgba(255, 255, 255, 0.1);

  /* Labels & Badges */
  --label-background: #bd1e2b;
  --label-color: #ffffff;

  /* Buttons */
  --buynow-bg: #fa7906;
  --buynow-text-color: #ffffff;
  --addcart-bg: #ffffff;
  --addcart-text-color: #061b48;
  --cta-color: #061b48;

  /* Coupon */
  --coupon-title-color: #241218;
  --coupon-button-color: #c0aa85;
  --coupon-code-background: #ffffff;

  /* Flashsale (vendor) */
  --flashsale-bg: #f4ebc1;
  --countdown-background: #d3232a;
  --countdown-color: #fff;
  --stock-color: #e40303;
  --news-color: #061b48;
  --heading-color: #061b48;
  --process-background: #e0e0e0;
  --process-color1: #d3232a;
  --process-color2: #bd1e2b;

  /* Vendor-compatible aliases */
  --success: #28a745;
  --background: #ffffff;
  --addtocart-color: #061b48;
  --col: 3;
  --block-spacing: 10px;
  --product-promotion-color: #bd1e2b;
  --product-promotion-bg: #fff0e9;
  --product-promotion-boxbg: #fff4ee;
  --product-promotion-box-color: #333333;

  /* Misc */
  --sale-pop-color: #e40303;
  --section-faq-bg: #f5f9ff;
  --success-color: #28a745;
  --price-color: #bd1e2b;

  /* Shadows */
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.1);

  /* Spacing */
  --spacing-top-section: 25;
  --spacing-bottom-section: 25;
  --spacing-top-section-mb: 20;
  --spacing-bottom-section-mb: 20;

  /* Layout */
  --col-menu: 3;
  --show-loadmore: none !important;
  --order-loadmore: -1 !important;
}

html {
  overflow-x: clip;
  width: 100vw;
  max-width: 100vw;
}

body {
  font-size: 14px;
  padding: 0 !important;
  color: var(--text-color);
  background: var(--white-bg);
  width: 100vw;
  max-width: 100vw;
  overflow-x: clip;
  font-family: "Inter", "Lato", sans-serif;
  margin: 0;
}

/* Grid system - EXACT 12px gutters like original */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 12px;
  padding-left: 12px;
  box-sizing: border-box;
}
.container-xxxl,
.container-xxl {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 12px;
  padding-left: 12px;
  box-sizing: border-box;
}

@media (min-width: 1700px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxxl {
    max-width: 1520px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
[class*="col-"] {
  padding-right: 12px;
  padding-left: 12px;
  box-sizing: border-box;
}
.d-flex {
  display: flex !important;
}
.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
li.d-flex.flex-column.align-items-center.header-cart-stack.mr-2 {
    padding-left: 16px;
}
@media (min-width: 768px) {
  .d-md-flex,
  .d-none.d-md-flex {
    display: flex !important;
  }
  .d-md-block,
  .d-none.d-md-block {
    display: block !important;
  }
  .d-md-none {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .col-lg-15,
  .col-lg-20 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .d-lg-flex,
  .d-none.d-lg-flex {
    display: flex !important;
  }
  .d-lg-block,
  .d-none.d-lg-block {
    display: block !important;
  }
  .d-lg-none {
    display: none !important;
  }
}

/* Section base */
.section {
  padding-top: calc(var(--spacing-top-section) * 1px);
  padding-bottom: calc(var(--spacing-bottom-section) * 1px);
}
.pt-0 {
  padding-top: 0 !important;
}
.custom-spacing {
  padding-top: calc(var(--spacing-top-section) * 1px);
  padding-bottom: calc(var(--spacing-bottom-section) * 1px);
}
@media (max-width: 767px) {
  .section {
    padding-top: calc(var(--spacing-top-section-mb) * 1px);
    padding-bottom: calc(var(--spacing-bottom-section-mb) * 1px);
  }
  .custom-spacing {
    padding-top: calc(var(--spacing-top-section-mb) * 1px);
    padding-bottom: calc(var(--spacing-bottom-section-mb) * 1px);
  }
}

/* Utility classes */
.align-items-center {
  align-items: center;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-end {
  justify-content: flex-end;
}
.flex-wrap {
  flex-wrap: wrap;
}
.text-center {
  text-align: center;
}
.text-white {
  color: var(--text-white);
}
.font-weight-bold {
  font-weight: 700;
}
.font-weight-normal {
  font-weight: 400;
}
.list-unstyled {
  list-style: none;
  padding: 0;
  margin: 0;
}
.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}
.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}
.w-100 {
  width: 100%;
}
.wid_100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}
.mb-0 {
  margin-bottom: 0;
}
.mt-3 {
  margin-top: 1rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-3 {
  margin-left: 1rem;
}
.ml-md-3 {
}
.pl-0 {
  padding-left: 0;
}
.pr-0 {
  padding-right: 0;
}
.p-0 {
  padding: 0;
}

/* Links */
a {
  outline: none;
  box-shadow: none;
  color: var(--text-color);
  text-decoration: none;
}
a:hover {
  /* color: var(--primary-color); */
}
a:focus {
  outline: none;
}

/* Buttons */
.btn {
  border-radius: 4px;
  outline: none !important;
  box-shadow: none;
  font-size: 16px;
  padding: 10px 20px;
  display: inline-block;
  /* border: none; */
  cursor: pointer;
  text-decoration: none;
}
.btn:focus {
  outline: none !important;
  box-shadow: none;
}

/* Form controls */
.form-control {
  display: block;
  width: 100%;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid var(--form-border-color);
  border-radius: 3px;
  background: var(--white-bg);
  color: var(--form-text-color);
  outline: none;
  box-sizing: border-box;
  height: 44px;
}
.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--secondary-color);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

/* Keyframes */
@keyframes play0 {
  0% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
  100% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
}

@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}

/* Icon base */
.icon {
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

/* Opacity overlay */
.opacity_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-color);
  z-index: 100;
  display: none;
}

/* Scrollbar */
.scroll::-webkit-scrollbar {
  width: 3px;
}
.scroll::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}

/* Fix vendor alignment */
.header-right-support {
  align-items: center;
}
.header-right-support-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Header right (missing from vendor CSS) */
.header-right {
  font-size: 14px;
  justify-content: flex-end;
  display: flex;
  align-items: center;
}
.header-right a {
  color: var(--header-color);
}
.header-right a:hover {
  color: var(--secondary-color);
}

/* Hotline visibility */
.hotline {
  /* display: none !important; */
}
@media (min-width: 992px) {
  .hotline.d-lg-flex {
    display: flex !important;
  }
}
.location {
  display: none !important;
  margin-left: 1rem;
}
@media (min-width: 992px) {
  .location.d-lg-flex,
  .location.d-lg-block {
    display: block !important;
  }
}

/* Override vendor grid - original uses flex */
.subheader .container {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
}

/* Category mega menu */
.toogle-nav-wrapper {
  position: relative;
  cursor: pointer;
  overflow: visible;
}
.toogle-nav-wrapper .navigation-wrapper {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 275px;
  background: var(--white-bg);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  border-radius: 0 0 4px 4px;
  overflow: visible;
}
.toogle-nav-wrapper:hover .navigation-wrapper {
  display: block;
  opacity: 1;
  visibility: visible;
}
.navigation-wrapper .navigation {
  list-style: none;
  padding: 0;
  margin: 0;
}
.navigation-wrapper .menu-item {
  border-bottom: 1px solid var(--border-color);
}
.navigation-wrapper .menu-item:last-child { border-bottom: none; }
.navigation-wrapper .menu-item__link {
  display: flex;
  align-items: center;
  padding: 8px 8px;
  color: var(--text-color);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}
.navigation-wrapper .menu-item__thumb {
  width: 38px !important;
  height: 38px !important;
  object-fit: contain;
  margin-right: 8px;
  flex-shrink: 0;
}
.navigation-wrapper .menu-item__link:hover {
  background: var(--hover-bg);
  color: var(--primary-color);
}

.navigation-wrapper .menu-item__link i {
    margin-left: auto;
    margin-right: 10px;
    font-size: 16px;
    color: var(--text-muted);
}

.toogle-nav-wrapper .navigation-wrapper .submenu {
  display: none;
  position: absolute;
  top: 0;
  left: calc(100% - 1px) !important;
  min-width: 600px;
  background: var(--white-bg);
  box-shadow: var(--shadow-sm);
  z-index: 1001;
  padding: 15px;
  border-radius: 0 4px 4px 0;
  height: auto !important;
  overflow: visible !important;
}
.submenu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex !important;
  flex-wrap: wrap;
  gap: 20px;
  grid-template-columns: none;
}
.submenu__col {
  flex: 0 0 calc(50% - 10px) !important;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.submenu__item {
  display: block;
  margin-bottom: 8px;
}
.submenu__item--main .link {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 14px;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}
.submenu__item .link {
  color: var(--nav-link-color);
  font-size: 13px;
  text-decoration: none;
  display: block;
  padding: 3px 0;
}
.submenu__item .link:hover {
  color: var(--primary-color);
}

.toogle-nav-wrapper .navigation {
  overflow-y: visible;
}

/* Navigation styles (not in vendor CSS) */
.navigation-horizontal-sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--nav-sub-bg);
  min-width: 230px;
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  list-style: none;
  padding: 0px 0;
  margin: 0;
  border-radius: 0 0 4px 4px;
}
.navigation--horizontal-ul > li {
  position: relative;
}
.navigation--horizontal-ul > li:hover .navigation-horizontal-sub-menu {
  display: block;
}
.navigation-horizontal-sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: var(--text-white);
  text-decoration: none;
  font-size: 13px;
  line-height: 2.5;
  border-bottom: 1px solid var(--nav-sub-border);
}
.navigation-horizontal-sub-menu li a:hover {
  color: var(--primary-color);
  background: var(--hover-bg);
}

/* Swiper required styles */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

/* Footer */
.footer { --footer-bg: #142846; background: var(--footer-bg); color: var(--footer-color); }
.mid-footer { padding: 40px 0; }
.footer .title-menu { font-size: 18px; font-weight: 600; color: var(--footer-color); margin: 10px 0; }
.footer .logo-wrapper img { max-width: 200px; }
.footer p { font-size: 13px; line-height: 1.6; color: var(--footer-text-muted); margin-bottom: 15px; }
.single-contact { display: flex; gap: 10px; margin-bottom: 10px; font-size: 13px; }
.single-contact i { color: var(--secondary-color); width: 16px; margin-top: 3px; }
.single-contact .content { color: var(--footer-text-muted); }
.single-contact .content strong { color: var(--footer-color); }
.single-contact .link { color: var(--footer-text-muted); }
.single-contact .link:hover { color: var(--secondary-color); }
.footer .list-menu { list-style: none; padding: 0; margin: 0; }
.footer .list-menu .li_menu { margin-bottom: 8px; }
.footer .list-menu .link { color: var(--footer-text-muted); font-size: 13px; text-decoration: none; }
.footer .list-menu .link:hover { color: var(--secondary-color); }
.footer .hotline-item { margin-bottom: 15px; font-size: 13px; color: var(--footer-text-muted); }
.footer .hotline-item .orange { font-size: 15px; font-weight: 600; margin: 5px 0; }
.footer .hotline-item .orange a { color: var(--secondary-color); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.footer .hotline-item .orange .free { font-size: 12px; font-weight: 400; color: var(--footer-text-dim); margin-left: 28px; display: block; }
.footer .hotline-item .all-week { font-size: 12px; color: var(--footer-text-dim); }
.bg-footer-bottom {  padding: 20px 0; }
.copyright-area p { font-size: 13px; color: var(--footer-text-muted); margin: 0; }
.copyright-area a { color: var(--secondary-color); }
.trustbadge { margin-left: 15px; }
.trustbadge img { max-width: 200px; }
@media (max-width: 767px) {
  .footer-click { margin-bottom: 20px; }
  .footer .title-menu { cursor: pointer; }
  .footer .toggle-mn { display: none; padding-top: 10px; }
  .footer .title-menu.clicked + .toggle-mn { display: block; }
  .footer .title-menu i { transition: transform 0.3s; }
  .footer .title-menu.clicked i { transform: rotate(180deg); }
  .bg-footer-bottom .row { text-align: center; }
  .trustbadge { margin-left: 0; margin-top: 10px; justify-content: center; display: flex; }
  .header-right-support { display: none !important; }
}

/* === CART DROPDOWN === */
.top-cart-content.card {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}
.top-cart-content:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7.5px 10px 7.5px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  top: -9px;
  right: 60px;
  z-index: 2;
}
.top-cart-content:after {
  content: "";
  width: 100%;
  height: 15px;
  position: absolute;
  top: -14px;
  left: 0;
  z-index: 0;
}
.top-cart-content .cart-price {
  margin: 4px 0 2px;
}
.top-cart-content .cart-price .price {
  font-size: 14px;
  font-weight: 600;
  color: #bd1e2b;
}
.top-cart-content .quanlity {
  font-size: 12px;
  color: #999;
}
.top-cart-content a:not(.btn) {
  color: #333 !important;
}
.top-cart-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.top-cart-content .top-subtotal .price_big {
  color: #bd1e2b;
}
.mini-cart svg.icon {
  fill: #fff !important;
  width: 1em;
  height: 1em;
  font-size: 26px;
  transform: rotateY(180deg);
}

/* === BLOG SECTION === */
.section_blog .blogwp.media .image-blog {
    width: 190px;
    flex: 0 0 190px;
}
.section_blog .blogwp.media .image-blog img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}
@media (max-width: 767px) {
    .section_blog .blogwp.media .image-blog {
        width: 100%;
        flex: 0 0 100%;
    }
    .section_blog .blogwp.media .image-blog img {
        height: 190px;
    }
}

/* === SCROLL ANIMATIONS === */
.k-js .section_flashsale .flashsale__item,
.k-js .section_product_top .flashsale__item,
.k-js .section_blog .blogwp,
.k-js .section_banners .banner-item,
.k-js .section_lookbook .lookbooks-column,
.k-js .section_collections .item,
.k-js .section_brand .item,
.k-js .footer .mid-footer .row > [class*="col-"] {
    opacity: 0;
}
@keyframes k-fadeInDown {
    from { opacity: 0; transform: translateY(-35px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes k-fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes k-fadeInScale {
    from { opacity: 0; transform: scale(0.6); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes k-slideLeft {
    from { opacity: 0; transform: translateX(-70px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes k-slideRight {
    from { opacity: 0; transform: translateX(70px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes k-flipUp {
    from { opacity: 0; transform: perspective(700px) rotateX(-12deg) translateY(30px); }
    to   { opacity: 1; transform: perspective(700px) rotateX(0) translateY(0); }
}
@keyframes k-bounceIn {
    0%   { opacity: 0; transform: scale(0.3); }
    40%  { opacity: 1; transform: scale(1.06); }
    65%  { transform: scale(0.92); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes k-blurIn {
    from { opacity: 0; filter: blur(12px); transform: scale(0.95); }
    to   { opacity: 1; filter: blur(0); transform: scale(1); }
}
@keyframes k-zoomRotate {
    from { opacity: 0; transform: scale(0.4) rotate(-15deg); }
    to   { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes k-zoomIn {
    from { opacity: 0; transform: scale(0.5); }
    to   { opacity: 1; transform: scale(1); }
}

.k-fadeInDown  { animation: k-fadeInDown  1.0s  cubic-bezier(0.22, 1, 0.36, 1) both; }
.k-fadeInUp    { animation: k-fadeInUp    1.2s  cubic-bezier(0.22, 1, 0.36, 1) both; }
.k-fadeInScale { animation: k-fadeInScale 1.0s  cubic-bezier(0.22, 1, 0.36, 1) both; }
.k-slideLeft   { animation: k-slideLeft   1.1s  cubic-bezier(0.22, 1, 0.36, 1) both; }
.k-slideRight  { animation: k-slideRight  1.1s  cubic-bezier(0.22, 1, 0.36, 1) both; }
.k-flipUp      { animation: k-flipUp      1.3s  cubic-bezier(0.22, 1, 0.36, 1) both; }
.k-bounceIn    { animation: k-bounceIn    1.3s  cubic-bezier(0.22, 1, 0.36, 1) both; }
.k-blurIn      { animation: k-blurIn      1.3s  cubic-bezier(0.22, 1, 0.36, 1) both; }
.k-zoomRotate  { animation: k-zoomRotate  1.2s  cubic-bezier(0.22, 1, 0.36, 1) both; }
.k-zoomIn      { animation: k-zoomIn      0.9s  cubic-bezier(0.22, 1, 0.36, 1) both; }

/* === HEADING BAR === */
.heading-bar {
  font-size: 16px;
  padding-bottom: 15px;
}
.heading-bar__title,
.heading-bar__title a {
  color: var(--text-color, #333);
  font-size: 28px;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
}
.heading-bar__title a:hover {
  color: var(--primary-color, #061b48);
}
@media (max-width: 767px) {
  .heading-bar__title { font-size: 18px; }
  .heading-bar__title a { font-size: 18px; }
}

/* === BRAND / PRESS SECTION === */
.section_brand {
  --item-display: 6;
  --item-mb-display: 2;
}
.section_brand .item {
  transition: transform .3s ease;
  flex: 0 0 calc(100% / var(--item-display));
  padding: 0 15px;
}
.section_brand .item:hover {
  transform: scale(1.1);
}
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.brand-item img {
  max-height: 68px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 991px) {
  .section_brand .row {
    justify-content: center !important;
  }
  .section_brand .item {
    flex: 0 0 33.333%;
    padding: 10px;
  }
}
@media (max-width: 575px) {
  .section_brand .item {
    flex: 0 0 50%;
    padding: 5px;
  }
}

