@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --font-size-base: 14px;
    --font-size-small: 12px;
    --font-size-h1: 100px;
    --font-size-h2: 60px;
    --font-size-h3: 40px;
    --font-size-h4: 30px;
    --font-size-h5: 20px;
    --font-size-h6: 16px;
    --color-bg: rgb(253, 249, 246);
    --color-text: rgb(103, 100, 93);
    --color-white: #fff;
    --color-black: #000;
    --section-base: 40px;
    --button-height: 48px;
}

/* Basic */
body {
    font-family: "Montserrat", sans-serif;
    color: var(--color-text);
    font-size: var(--font-size-base);
    line-height: 1.5;
    font-weight: 400;
    background-color: var(--color-bg);
    position: relative;
}

.h1, h1,
.h2, h2,
.h3, h3,
.h4, h4,
.h5, h5,
.h6, h6 {
    font-weight: 400;
    margin-bottom: calc(var(--section-base) * 0.5);
    line-height: 1.2;
}

.h1,
h1 {
    font-size: var(--font-size-h1);
}

.h2,
h2 {
    font-size: var(--font-size-h2);
}

.h3,
h3 {
    font-size: var(--font-size-h3);
}

.h4,
h4 {
    font-size: var(--font-size-h4);
}

.h5,
h5 {
    font-size: var(--font-size-h5);
}

.h6,
h6 {
    font-size: var(--font-size-h6);
}

img {
    width: 100%;
    height: auto;
}

a {
    color: var(--color-text);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--color-text);
}

input,
select {
    display: inline-block;
}

.color-text {
    color: var(--color-text);
}

.color-pri {
    color: var(--color-pri);
}

.color-01 {
  color: #826f64;
}
.color-02 {
  color: rgb(211, 200, 190);
}
.bg-bg {
    background-color: var(--color-bg);
}

.bg-01 {
    background-color: rgb(249, 244, 234);
}

.bg-02 {
    background-color: rgb(239, 230, 220);
}

.bg-03 {
  background-color: #313130;
}

.bg-04 {
  background-color: #67645e;
}

hr {
    border-width: 1px;
    border-color: var(--color-text);
    opacity: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    color: var(--color-white);
    background: var(--color-text);
    border: 0;
    height: var(--button-height);
    padding: 0px calc(var(--section-base) * 0.5);
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    border-radius: 0;
    font-size: var(--font-size-base);
    gap: 5px;
}

.btn-l {
  background: #776D68;
}
.btn-out {
  background-color: transparent;
  border: 1px solid var(--color-text);
  color: var(--color-text);
}

.btn-text {
    display: inline-flex;
    gap: 15px;
    align-items: center;
}

.btn:focus,
.btn:hover {
    color: var(--color-white);
    background: #826F64;
}

.btn-text svg {
    width: calc(var(--section-base) * 0.65);
    height: calc(var(--section-base) * 0.65);
    transform: rotate(180deg);
}
.btn-text:focus span,
.btn-text:hover span{
  text-decoration: underline;
}
.pb-base {
    padding-bottom: var(--section-base) !important;
}

.pb-big {
    padding-bottom: calc(var(--section-base) * 2) !important;
}

.pt-base {
    padding-top: var(--section-base) !important;
}

.pt-big {
    padding-top: calc(var(--section-base) * 2) !important;
}

.mt-base {
    margin-top: var(--section-base) !important;
}

.mt-big {
    margin-top: calc(var(--section-base) * 2) !important;
}

.mb-half {
    margin-bottom: calc(var(--section-base) * 0.5) !important;
}

.mb-base {
    margin-bottom: var(--section-base) !important;
}

.mb-big {
    margin-bottom: calc(var(--section-base) * 2) !important;
}

.p-content {
    padding: calc(var(--section-base) * 2);
}

textarea,
select,
input {
    height: var(--section-base);
    background-color: transparent;
    border-radius: 0;
    padding: 5px calc(var(--section-base) * 0.3);
    border: 0;
    border-bottom: 1px solid rgb(211,200,190);
    outline: none;
    width: 100%;
    color: var(--color-text);
    font-size: var(--font-size-base);
}
.input-border {
  border: 1px solid rgb(211,200,190);
}
textarea {
    height: calc(var(--section-base) * 3);
}

::placeholder {
    color: var(--color-text);
    opacity: 0.75;
    font-style: italic;
}

select {
    -webkit-appearance: none;
    background-image: url('select.svg');
    background-position: center right calc(var(--section-base)*.5);
    background-repeat: no-repeat;
    padding-right: calc(var(--section-base)*1.5);
}

input[type="checkbox"] {
    padding: 0;
    width: 26px;
    height: 26px;
}

b,
strong {
    font-weight: 500;
}

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

.font-small {
    font-size: var(--font-size-small);
}

.gap-base {
    gap: calc(var(--section-base) * 0.5);
}

.gap-big {
    gap: calc(var(--section-base) * 2);
}


/* Main */

body.page .main-content {
    padding-top: calc(var(--section-base) * 3.5);
}
section {
  overflow: hidden;
}
.swiper {
    width: 100%;
    height: auto;
}

.swiper-wrapper {
    height: auto;
}

.swiper-slide {
    height: auto;
}
.section {
    padding-top: calc(var(--section-base) * 3);
    padding-bottom: calc(var(--section-base) * 3);
    position: relative;
    background-size: cover;
    background-position: center;
}
.section-big {
    padding-top: calc(var(--section-base) * 4.5);
    padding-bottom: calc(var(--section-base) * 4.5);
}
.img-wrap {
    position: relative;
    padding-top: 120%;
    overflow: hidden;
}
.video-wrap {
  position: relative;
    padding-top: 120%;
    overflow: hidden;
}
.img-po {
 padding-top: 100%;
}
.img-wrap img {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.video-wrap video {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    object-fit: cover;
}
.img-wrap.has-hover:hover img {
    transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-white);
    width: var(--button-height);
    height: var(--button-height);
    background-color: var(--color-sec);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: var(--font-size-base);
}

.swiper-pagination {
    position: relative;
    padding-top: calc(var(--section-base) * 0.5);
}

.swiper-pagination-bullet-active {
    background: var(--color-white);
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
    height: 6px;
}

.swiper-scrollbar {
    background-color: rgba(255, 255, 255, 0.3);
}

.swiper-scrollbar-drag {
    border-radius: 0;
    background-color: var(--color-white);
}

.color-line {
    -webkit-text-stroke: 1px var(--color-text);
    color: transparent;
}

.icon-svg svg {
    width: calc(var(--section-base) * 0.65);
    height: calc(var(--section-base) * 0.65);
}
.icon-svg svg text {
    fill: #fff;
    font-size: 60px;
}

.section-home-banners {
  height: 100vh;
  max-height: 100dvh;
  position: relative;
}
.section-home-banners > * {
  position: relative;
  z-index: 2
}
.section-home-banners > video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 1;
}
.section-home-banners .desc {
  max-width: calc(var(--section-base) * 8.5);
  margin-bottom: calc(var(--section-base) * 2);
}
.section-home-banners .btn-group {
  margin-bottom: calc(var(--section-base) * 4);
}

.section-collection-banner {
  position: relative;
}

@keyframes slide {
  0% { transform: translateX(0); }
  50% { transform: translateX(20px); }
  100% { transform: translateX(0); }
}

.slide-ani {
  animation: slide 5s infinite;
}
.mw-520 {
  max-width: 520px;
}
.mw-780 {
  max-width: 780px;
}
.ls-base {
  letter-spacing: 0.05em;
}
.item-brand .content {
  margin-top: calc(var(--section-base) * 0.5);
  padding: calc(var(--section-base) * 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-text);
}
.item-brand .content .btn-text:hover {
  transform: translateX(10px);
}
.section-home-video {
  height: calc(var(--section-base) * 19);
  position: relative;
}
.section-home-video > video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.section-collection-banner .img-wrap {
  height: calc(100vh - var(--section-base) * 3.5);
  max-height: calc(100dvh - var(--section-base) * 3.5);
  padding-top: 0;
}

.section-collection-banner .img-wrap.img-wrap-2 {
  height: calc(var(--section-base) * 14);
  max-height: calc(var(--section-base) * 14);
  padding-top: 0;
}

.obc {
  object-fit: cover;
}
.wrapper-mainCollection .collection-sortby-filter > div:last-child .boxstyle-mb {
  height: var(--section-base);
  line-height: var(--section-base);
  background: none;
  border-color: #67645d;
  font-weight: normal;
  font-size: var(--font-size-base);
}
.wrapper-mainCollection .collection-sortbyfilter-container {
  min-width: 200px;
}
.item-product .img-wrap {
  padding-top: 150%;
}
.item-product:hover .img-wrap img {
  transform: scale(1.1);
}
.item-product .label {
  position: absolute;
  background: #776d68;
  top: 0;
  left: 0;
  padding: 2px 12px;
  color: var(--color-white);
}
.price-del {
  opacity: 0.5;
  text-decoration: line-through;
}
.product-price del {
  opacity: 0.5;
}
.item-quantity,
.qty-value,
.quantity-input {
  width: calc(var(--section-base) * 3);
}
.qty-btn {
  border: 0;
  position: absolute;
  height: calc(var(--section-base) * 1);
  background: none;
  left: 8px;
}
.qty-btn:last-child {
  left: unset;
  right: 8px;
}
.qty-btn svg {
  width: 11px;
  height: 11px;
  fill: #67645D;
}
.btn.disabled, .btn:disabled, fieldset:disabled .btn {
  background-color: #cfcfcf;
}
.productDetail--gallery .owl-dots {
  display: none;
}
.wrapbox-image {
  display: flex;
  gap: 10px;
  width: 100%;
}

.productGallery_slider {
  width: calc(100% - 10px - var(--section-base) * 2.5);
}
.productGallery_thumb {
  order: -1;
  width: calc(var(--section-base) * 2.5);
  min-width: calc(var(--section-base) * 2.5);
}
.productGallery_thumb .owl-stage {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.productGallery_thumb .boxlazy-img__insert {
  width: calc(var(--section-base) * 2.5);
  min-width: calc(var(--section-base) * 2.5);
  height: calc(var(--section-base) * 2.5);
  padding-bottom: 0;
}
.icon-socials img {
  width: calc(var(--section-base) * 1);
}

.section-contact .logo {
  width: calc(var(--section-base) * 6.5);
}
.section-about-banner .img-wrap,
.section-about-banner .video-wrap {
  padding-top: 150%;
}
.logo-about img {
  width: calc(var(--section-base) * 9.25);
}
.filter_group-content ul {
  margin: 0;
  padding: 0;
}
.filter_group-content ul li {
  margin-bottom: 6px;
}
.mainCart-detail .heading-cart {
  border-bottom: 1px solid rgba(103, 100, 93, 0.3);
  padding-bottom: calc(var(--section-base) * 0.5);
}
.table-cart .item-img img {
  width: calc(var(--section-base) * 2.5);
  height: calc(var(--section-base) * 2.5);
  object-fit: cover;
}
.table-cart .media-line-item {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid rgba(103, 100, 93, 0.3);
  padding-bottom: calc(var(--section-base) * 0.5);
}
.wrapper_layered_filter {
  padding-bottom: calc(var(--section-base) * 1.5);
}
.select-swatch .swatch.is-color .select-swap {
  gap: 8px;
}

.filter_group_block .hover-color-here {
  opacity: 0;
  visibility: hidden;
}

.filter_group_block.hovered .hover-color-here {
  opacity: 1;
  visibility: visible;
}

.filter-types li {
  padding-left: 0;
}

.filter-types input {
  display: none;
}
.filter-types li.active label {
  font-weight: 600;
}

.p-content a[href^="tel"] {
  color: inherit;         /* Hoặc chọn màu khác như #000 */
  text-decoration: none;  /* Nếu bạn muốn bỏ gạch chân */
}
