@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&display=swap");

/* ---------------- Basic css ------------------ */
:root {
  scroll-behavior: smooth;
  --white: #ffffff;
  --black: #000000;
  --gold: #c9a84c;
  --gold-lt: #e4c57a;
  --gold-dim: rgba(201, 168, 76, 0.18);
  --bg: #0a0a0a;
  --surface: #111111;
  --surface2: #181818;
  --line: rgba(255, 255, 255, 0.07);
  --text: #e8e0d0;
  --muted: #7a746a;
  --white: #ffffff;
  --radius: 0.6rem;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  --white_img: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  --black_img: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%);

  --primaryfont: "Poppins", sans-serif;
  --secondaryfont: "Cinzel Decorative", "Cinzel", serif;

  --menuheight: 8rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none !important;
  transition: 200ms;
  color: inherit;
}

.f-right {
  float: right;
}
button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: none;
}

img {
  width: 100%;
}

button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
}

/* body */
body {
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 400;
  color: #777777;
  overflow-x: hidden;
  font-family: var(--primaryfont);
  background: var(--white);
}

.container {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin: 0 auto;
}

main {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.figure img,
.figure {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primaryfont);
  font-weight: 700;
  line-height: 1.25;
  color: #000;
}

/* image colros */
.white_img {
  -webkit-filter: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(7498%)
    hue-rotate(67deg) brightness(112%) contrast(100%);
}
.black_img {
  -webkit-filter: brightness(0) saturate(100%) invert(0%) sepia(0%)
    saturate(16%) hue-rotate(309deg) brightness(93%) contrast(107%);
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%)
    hue-rotate(309deg) brightness(93%) contrast(107%);
}

/* text colors */
.text_black {
  color: var(--black) !important;
}

.text_white {
  color: var(--white) !important;
}

/* bg colors */
.bg_black {
  background-color: var(--black) !important;
}

.bg_white {
  background-color: var(--white) !important;
}

/* Font Weights */
.f_300 {
  font-weight: 300 !important;
}
.f_400 {
  font-weight: 400 !important;
}
.f_500 {
  font-weight: 500 !important;
}
.f_600 {
  font-weight: 600 !important;
}
.f_700 {
  font-weight: 700 !important;
}
.f_800 {
  font-weight: 800 !important;
}
.f_900 {
  font-weight: 900 !important;
}

/* titles */
.title_32 {
  font-size: 3.2rem;
}

.title_28 {
  font-size: 2.8rem;
}

.title_24 {
  font-size: 2.4rem;
}

.title_20 {
  font-size: 2rem;
}

.title_18 {
  font-size: 1.8rem;
}

/* texts */
.text_xl {
  font-size: 2rem;
}
.text_lg {
  font-size: 1.8rem;
}
.text_md {
  font-size: 1.6rem;
}
.text_sm {
  font-size: 1.4rem;
}
.text_xsm {
  font-size: 1.2rem;
}

/* mx-auto */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ========================= #Progress ======================= */
.progress-wrap {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  height: 5rem;
  width: 5rem;
  cursor: pointer;
  display: block;
  border-radius: 5rem;
  box-shadow: inset 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.5rem);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  background: #fff;
}
.progress-wrap:hover {
  background: #f1eded;
}

.progress-wrap:active {
  background: #cec4c4;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.arrow_top {
  width: 2rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  filter: var(--black_img);
}

.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: #14133b; /* --- Lijn progres kleur --- */
  stroke-width: 3;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/* -------------- Header Styles by Sahriar --------------- */
header {
  position: sticky;
  z-index: 999999;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  transition: 0.35s all;
}

header.sticky {
  box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.1);
}

.site_header {
  padding: 0;
  position: relative;
  width: 100%;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  height: var(--menuheight);
  display: flex;
  align-items: center;
  z-index: 99;
}

.main_menu {
  gap: 2.5rem;
}

.main_menu li a {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2rem;
  color: #000;
}

.main_menu li a:hover,
.main_menu li a.active {
  opacity: 0.75;
}

.logo {
  display: flex;
}

.logo img {
  width: 6rem;
}

/* =========== Hero area ============ */
.hero {
  padding: 10rem 5rem;
}

.hero__content {
  max-width: 70rem;
  transition: all 0.5s;
  opacity: 0;
}

.swiper-slide-active .hero__content {
  opacity: 1;
}

.hero__subtitle {
  font-size: 3.6rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
}

.hero__highlight {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--black);
  line-height: 1;
}

.hero__btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 3rem;
  background: #cebcb2;
  color: var(--black);
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero__content h1 {
  font-family: var(--secondaryfont);
  font-size: 5rem;
  color: var(--black);
}

.hero_slider .swiper-slide {
  padding: 6rem 0;
  position: relative;
}

.hero__content span {
  background: #cdbcb6;
  height: 0.8rem;
  width: 12rem;
  display: block;
  margin: 2rem 0 4rem;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  filter: var(--black_img);
  font-size: 2rem;
}

.swiper-button {
  width: 5rem;
  height: 5rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  transform: translateY(-50%);
  margin: 0;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  display: none;
}

.hero_bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  object-fit: cover;
}

/* ===================== */
.card_img {
  position: relative;
  overflow: hidden;
  display: flex;
  height: 30rem;
  cursor: pointer;
  border-radius: 1.2rem;
}

.ps_img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  object-fit: cover;
  transition: 0.15s;
}

.ps_img2 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  transition: 0.35s ease;
}

.card_img:hover .ps_img1 {
  opacity: 0;
}

.card_img:hover .ps_img2 {
  transform: scale(1.25);
  transition: 1.5s;
}

.card_tags {
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.7;
  --porto-lh: 1.7;
  text-align: center;
  color: #777777;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.card_tags > span {
  display: inline-block;
  margin-right: 0.15rem;
}

.card_info {
  padding: 1.5rem 2rem 2rem 2rem;
  text-align: center;
}

.card_tags a:hover {
  color: #f6aa28;
}

.card_info h5 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.35;
  --porto-lh: 1.35;
  letter-spacing: -0.01em;
  text-align: center;
  color: #222222;
  margin: 0.25rem 0 0.8rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
}

.price del {
  color: #a7a7a7;
  font-size: 1.4rem;
}

.price span {
  font-size: 1.6rem;
  color: #222222;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.icon_box img {
  width: 1.6rem;
}

.icon_box {
  background: #f7f2f2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 4rem;
  min-height: 4rem;
  justify-content: center;
  border-radius: 0.8rem;
  width: fit-content;
  padding: 0 1rem;
  font-size: 1.2rem;
  color: #000;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}

.tooltip {
  white-space: nowrap;
  position: absolute;
  top: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background: #333333d4;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 0.5rem;
  transition: 0.35s ease-out;
  pointer-events: none;
  opacity: 0;
}

.card_icons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.icon_box:hover {
  background: #ebdddd;
}

.tooltip span {
  text-align: center;
  display: block;
}

.tooltip:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 0.8rem solid transparent;
  border-right: 0.8rem solid transparent;
  border-top: 0.8rem solid #333333d4; /* triangle color */
  bottom: -0.7rem; /* adjust position */
  left: 50%;
  transform: translateX(-50%);
}

.icon_box:hover .tooltip {
  opacity: 1;
  top: -4rem;
}

.icon_box1,
.icon_box3 {
  transition: 0.35s ease;
  opacity: 0;
  position: relative;
}

.icon_box1 {
  transform: translateX(10rem);
}

.icon_box3 {
  transform: translateX(-10rem);
}

.card:hover .icon_box1,
.card:hover .icon_box3 {
  transform: translateX(0);
  opacity: 1;
}

.section_top {
  text-align: center;
  padding-bottom: 4rem;
}

.title_wrap span {
  width: 100%;
  height: 0.3rem;
  display: block;
  background: #000;
}

.title_wrap {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 2rem;
}

.title_wrap span.right {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) -35%,
    rgba(255, 255, 255, 1) 50%
  );
}

.title_wrap span.left {
  background: linear-gradient(
    190deg,
    rgba(0, 0, 0, 1) -35%,
    rgba(255, 255, 255, 1) 50%
  );
}

.title_wrap h2 {
  font-size: 2rem;
  color: #222222;
}

.discount {
  color: #fff;
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  z-index: 999;
  font-size: 1.1rem;
  height: 2rem;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  border-radius: 0.5rem;
  background: #da5555;
  font-weight: 500;
}

/* ================= product_slider_area ==================== */
.product_slider_area {
  padding: 12rem 0;
}

.position-relative {
  position: relative !important;
}

.icon_20 {
  width: 2rem;
}

.icon_24 {
  width: 2.4rem;
}

.icon_18 {
  width: 1.8rem;
}

.icon_16 {
  width: 1.6rem;
}

.shopping_cart {
  position: relative;
}

.header_icons {
  gap: 1rem;
}

.shopping_dropdown {
  width: 30rem;
  position: absolute;
  right: 0;
  transform: translateY(1.5rem);
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 0.35rem 1.5rem 0 rgb(0, 0, 0, 0.1);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease;
}

.shopping_dropdown ul {
  color: #222;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 0.1rem solid #ddd;
}

.shopping_dropdown ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shopping_dropdown ul li a:hover {
  text-decoration: underline !important;
}

.shopping_btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.shopping_btn .arrow-down {
  transition: 0.35s;
  width: 1.8rem;
  filter: var(--black_img);
}

.header_icons a {
  display: flex;
  align-items: center;
  filter: var(--black_img);
}

.notif {
  display: flex;
  position: relative;
}

.notif span {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  background: #ff5b5b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  right: -0.5rem;
  top: -0.5rem;
}

.notif img {
  width: 2.5rem;
}

.product_slider_area .swiper-button {
  transform: translateY(-9rem);
}

/* ================= Header bottom ================= */
.hover_dropdown_btn {
  background: #f6aa28;
  color: #fff;
  height: 4rem;
  font-size: 1.4rem;
  gap: 1rem;
  width: 25rem;
  padding: 0 0.8rem 0 1.5rem;
  cursor: pointer;
  border-radius: 10rem;
}

.hover_dropdown_btn > div {
  gap: 1rem;
}

.hover_dropdown_btn img {
  filter: var(--white_img);
  transition: 0.35s ease;
}

.menu_dropdown_list ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.menu_dropdown_list ul li a {
  font-size: 1.6rem;
  color: #000;
  line-height: 2.5;
  text-align: left;
}

.menu_dropdown {
  position: relative;
}

.menu_dropdown_list {
  padding: 1.5rem 2.5rem;
  background: #fff;
  width: calc(128rem - 25rem);
  max-height: 40rem;
  min-height: 25rem;
  overflow: auto;
  position: absolute;
  border-radius: 1rem;
  left: 25rem;
  top: 3rem;
  height: auto;
  transition: 0.35s ease;
  opacity: 0;
  box-shadow: 0.5rem 0 1rem -0.1rem rgba(0, 0, 0, 0.2);
}

.dropdown_link {
  height: 5rem;
  padding: 0 0.8rem 0 1.5rem;
  gap: 1rem;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1.2;
  transition: 0.35s ease;
  color: #000;
}

.dropdown_link > div {
  gap: 1rem;
}

.hover_dropdown {
  position: relative;
}

.hover_dropdown_content {
  position: absolute;
  background: #fff;
  width: 25rem;
  transition: 0.5s ease;
  left: 0;
  transform: translateY(2rem);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0.5rem 0.5rem 1.5rem -0.1rem rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
}

.hover_dropdown_content ul li:last-child {
  border-bottom: 0 solid transparent !important;
}

.hover_dropdown_content > ul > li {
  border-bottom: 0.1rem solid #ddd;
}

.dropdown_link p {
  max-width: 18rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown_link:hover {
  background: #f1f1f1;
}

.menu_dropdown_list ul li a:hover {
  opacity: 0.5;
}

.dropdown_link .arrow_right {
  transform: rotate(-90deg);
}

.hb_left > a {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4rem;
  color: #222;
  font-weight: 500;
  transition: 0.25s ease;
  border-radius: 10rem;
}

.hb_left > a:hover {
  background: #f1f1f1;
}

.hb_left {
  gap: 1rem;
}

.header_bottom {
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
}

.hover_dropdown_content ul li:first-child .dropdown_link {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.hover_dropdown_content ul li:last-child .dropdown_link {
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}


/* custom-select */
.custom-select select {
  padding: 1rem 2rem 1rem 1.5rem; /* Adjust padding for custom arrow */
  border: 0.1rem solid #ccc;
  border-radius: 0.4rem;
  background-color: #f8f8f8;
  color: #333;
  font-size: 1.6rem;
  cursor: pointer;
  width: 100%;

  /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* Optional: add a custom background arrow image */
  background-image: url(../img/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.6rem 1.6rem;
}

/* Style for when the dropdown is focused */
.custom-select select:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
}

/* ======================= Search box ======================== */
.search_box .custom-select {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4rem;
}

.search_field {
  position: relative;
}

.search_field input {
  height: 4rem;
  width: 45rem;
  border-radius: 10rem;
  border: none;
  background: #f1f1f1;
  padding: 0 16.5rem 0 2rem;
}

.search_field input:focus {
  background: #eee7e7;
}

.search_icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.search_box {
  position: relative;
}

.search_box .custom-select select {
  border-radius: 0;
  background-color: #f1f1f1;
  border-top: 0;
  width: 11rem;
  border-bottom: 0;
  border-color: #fff;
  font-size: 1.4rem;
  height: 4rem;
}

.product_area .col {
  flex: 0 0 20%;
  width: 20%;
}

.product_area {
  padding-bottom: 8rem;
}

/* ================= Service area ================= */
.service_area {
  background: antiquewhite;
}

.service_box {
  background: floralwhite;
  padding: 4rem 3rem;
  border-radius: 2rem;
  transition: 0.35s;
}

.service_box:hover {
  box-shadow: 0.5rem 0.5rem 1rem 0.5rem rgba(0, 0, 0, 0.1);
}

.service_icon {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000d9;
  border-radius: 10rem;
}

.service_icon img {
  filter: var(--white_img);
}

.service_box2 {
  background: azure;
}

.service_box h2 {
  margin: 2rem 0 1.5rem;
}

.service_box3 {
  background: #e7f4ff;
}

.service_box:hover {
  background: #fff;
}

/* =============== product_sm_area =============== */
.card_sm .card_img {
  width: 8rem;
  height: 8rem;
  border-radius: 0.6rem;
  flex: 0 0 auto;
}

.card_sm .card_info {
  text-align: left;
  padding: 0;
  padding-left: 1.2rem;
  width: auto;
}

.card_sm .card_info h5 {
  text-align: left;
  margin: 0;
  margin-bottom: 0.6rem;
  max-width: 20rem;
  font-size: 1.4rem;
}

.card_sm {
  display: flex;
  align-items: center;
  padding: 0 1rem 0 0;
  border-radius: 0.6rem;
  width: 100%;
  border: 0.1rem solid #ddd;
  cursor: pointer;
  transition: 0.25s ease;
}

.card_sm:hover {
  background: #f1f1f1;
}

.product_sm_area {
  padding: 10rem 0;
}

.product_sm_area .row {
  --bs-gutter-x: 2.4rem;
  --bs-gutter-y: 2.4rem;
}

.product_sm_list {
  display: grid;
  gap: 1.5rem;
}

/* =================== Footer area =================== */

/* ─── FOOTER WRAPPER ─── */
footer {
  width: 100%;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* top glow bar */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold) 30%,
    var(--gold-lt) 50%,
    var(--gold) 70%,
    transparent 100%
  );
}

/* subtle noise texture overlay */
footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

.footer__inner {
  padding: 6rem 4rem 0;
}

/* ─── MAIN GRID ─── */
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.6fr 1.2fr;
  gap: 2rem;
  padding-bottom: 5rem;
  line-height: 1;
}

/* ─── SECTION HEADING ─── */
.footer__heading {
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer__heading::after {
  content: "";
  flex: 1;
  height: 0.1rem;
  background: linear-gradient(90deg, var(--gold-dim), transparent);
}

/* ─── COL 1 – CONTACTS ─── */
.contact-block + .contact-block {
  margin-top: 1.8rem;
}

.contact-label {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.contact-block p,
.contact-block address {
  font-size: 1.4rem;
  line-height: 1.7;
  font-style: normal;
  color: var(--text);
}

.contact-block a {
  color: var(--gold-lt);
  text-decoration: none;
  transition:
    color var(--transition),
    letter-spacing var(--transition);
  font-size: 1.4rem;
  font-weight: 500;
}
.contact-block a:hover {
  color: var(--white);
  letter-spacing: 0.02em;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 0.9rem;
  font-size: 1.4rem;
  color: var(--muted);
}
.hours-grid .day {
  color: var(--text);
  font-weight: 500;
}

/* badge */
.badge-wrap {
  margin-top: 2.4rem;
  display: flex;
  width: 12rem;
}
.badge-img {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 1.2rem rgba(201, 168, 76, 0.35));
  transition:
    filter var(--transition),
    transform var(--transition);
}
.badge-img:hover {
  filter: drop-shadow(0 0 2rem rgba(201, 168, 76, 0.6));
  transform: rotate(5deg) scale(1.05);
}

/* ─── COL 2 – LINKS ─── */
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links li a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 400;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius);
  border: 0.1rem solid transparent;
  transition: all var(--transition);
  position: relative;
}

.footer__links li a::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transition:
    opacity var(--transition),
    transform var(--transition);
  transform: scale(0);
}

.footer__links li a:hover {
  background: var(--surface2);
  border-color: var(--line);
  color: var(--gold-lt);
  padding-left: 1.4rem;
}
.footer__links li a:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* ─── COL 3 – TAGS ─── */
.tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  display: inline-block;
  padding: 0.38rem 0.85rem;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted);
  background: var(--surface2);
  border: 0.1rem solid var(--line);
  border-radius: 2rem;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.tag:hover {
  color: var(--gold-lt);
  background: var(--gold-dim);
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-0.15rem);
  box-shadow: 0 0.4rem 1.2rem rgba(201, 168, 76, 0.12);
}

/* ─── COL 4 – NEWSLETTER ─── */
.newsletter-desc {
  font-size: 1.4rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.input-wrap {
  position: relative;
}

.input-wrap input {
  width: 100%;
  background: var(--surface2);
  border: 0.1rem solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.4rem;
  color: var(--text);
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.input-wrap input::placeholder {
  color: var(--muted);
}

.input-wrap input:focus {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

.btn-subscribe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--gold);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  padding: 1rem 1.6rem;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-subscribe::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-subscribe:hover {
  background: var(--gold-lt);
  box-shadow: 0 0.4rem 2rem rgba(201, 168, 76, 0.35);
  transform: translateY(-0.1rem);
}
.btn-subscribe:hover::before {
  opacity: 1;
}

.btn-subscribe svg {
  width: 0.95rem;
  height: 0.95rem;
}

/* ─── DIVIDER ─── */
.footer__divider {
  height: 1px;
  background: var(--line);
  margin: 0 0 0;
}

/* ─── BOTTOM BAR ─── */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 0 2.2rem;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer__copy {
  font-size: 1.4rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.footer__socials {
  display: flex;
  gap: 0.8rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: var(--surface2);
  border: 0.1rem solid var(--line);
  color: var(--muted);
  text-decoration: none;
  transition: all var(--transition);
}

.social-btn svg {
  width: 1.4rem;
  height: 1.4rem;
}

.social-btn:hover {
  background: var(--gold-dim);
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--gold-lt);
  transform: translateY(-0.15rem);
  box-shadow: 0 0.4rem 1.2rem rgba(201, 168, 76, 0.12);
}

.footer__email-link {
  font-size: 1.4rem;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__email-link:hover {
  color: var(--gold-lt);
}

/* ================== navigation ================= */
.navigation {
  padding: 2rem 0;
  border-top: 0.1rem solid #ddd;
  border-bottom: 0.1rem solid #ddd;
}

.navigation ul {
  display: inline-flex;
  align-items: center;
  font-size: 1.4rem;
  gap: 0.6rem 1rem;
  color: #8e8e8e;
  white-space: nowrap;
  flex-wrap: wrap;
}

.navigation ul a:hover {
  color: #000;
}

/* ================== map_area ================= */
.map_area {
  padding-top: 5rem;
}

.map_img {
  width: 100%;
  border-radius: 1rem;
}

.form_group label {
  display: block;
  padding-bottom: 1.2rem;
  font-size: 1.4rem;
  color: #000;
  line-height: 1;
  font-weight: 500;
  padding-left: 0.8rem;
}

.form_group label sup {
  font-size: 1.6rem;
  line-height: 1;
  transform: translateY(0.5rem);
  display: inline-block;
  color: red;
}

.form_group {
  margin-bottom: 1.5rem;
}

.form_control {
  width: 100%;
  height: 4.5rem;
  border-radius: 10rem;
  border: 0.1rem solid #ddd;
  padding: 0 2rem;
}

.form_control::placeholder {
  font-size: 1.6rem;
  color: #000;
}

textarea.form_control {
  height: 15rem;
  border-radius: 1.5rem;
  padding: 1.5rem 2rem;
}

.form_control:focus {
  border: 0.1rem solid #000;
}

.button {
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6rem;
  background: #000;
  color: #fff;
  border-radius: 10rem;
  font-size: 1.6rem;
  cursor: pointer;
  transition: 0.35s ease;
}

.button:hover {
  background: #fff;
  color: #000;
  box-shadow: 0.5rem 0.5rem 1.5rem -0.1rem rgba(0, 0, 0, 0.25);
}

.map_area .row {
  --bs-gutter-x: 5rem;
  --bs-gutter-y: 2rem;
}

/* ================== contact_area ================= */
.contact_box {
  display: block;
  height: 100%;
}

.contact_box p {
  color: #000;
  font-weight: 300;
}

.contact_area .row {
  --bs-gutter-x: 2.5rem;
  --bs-gutter-y: 2.5rem;
}

.contact_area {
  background: #fff;
}

.contact_box:hover {
  box-shadow: 0.5rem 0.5rem 1rem 0.5rem rgba(0, 0, 0, 0.1);
}

.contact_box h2 {
  margin: 1.5rem 0 1.5rem;
}

.contact_box {
  padding: 2.4rem;
}

/* ============== info_area ============== */
.info_area p {
  font-size: 1.6rem;
  line-height: 1.5;
}

.info_area p a {
  color: #000;
}

.info_area p a:hover {
  text-decoration: underline !important;
}

.info_box {
  padding: 3rem;
  background: #f0f8ff;
  border-radius: 1rem;
}

.info_box p {
  color: #000;
}

.info_bottom {
  padding-top: 5rem;
  border-top: 0.1rem solid #ddd;
  margin-top: 5rem;
}

.swiper-pagination {
  position: sticky;
  margin-top: 3rem;
}

/* ================= product_single ================ */
.product_single_img {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.product_single_img {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.product_single_img img {
  width: 100%;
  display: block;
  transition: 0.35s ease;
  pointer-events: none; /* important */
}

.swiper-thumbs .swiper-slide img {
  height: 12rem;
  cursor: pointer;
}

.swiper-slide-thumb-active img {
  border: 0.1rem solid #000;
}

.swiper-thumbs {
  padding-top: 1rem;
}

/* ================= */
/* Title */
.product-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

/* Price */
.price-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.price-old {
  font-size: 1.4rem;
  color: #999;
  text-decoration: line-through;
}
.price-new {
  font-size: 1.6rem;
  font-weight: 700;
  color: #c0392b;
}
.price-unit {
  font-size: 1.6rem;
  color: #333;
}

/* Meta */
.meta {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 0.35rem;
  line-height: 1.6;
}
.meta span {
  font-weight: 700;
  color: #333;
}
.meta a {
  color: #000000;
  text-decoration: none;
}
.meta a:hover {
  text-decoration: underline !important;
}

hr {
  border: none;
  border-top: 0.1rem solid #e0e0e0;
  margin: 1.5rem 0;
}

/* Quantity row */
.quantity-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 0.1rem solid #ccc;
  border-radius: 0.25rem;
  overflow: hidden;
}
.qty-btn {
  width: 3rem;
  height: 3.5rem;
  background: #0a0a0a;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #fff;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
.qty-btn:hover {
  background: #292525;
}
.qty-input {
  width: 3.5rem;
  height: 3.5rem;
  border: none;
  border-left: 0.1rem solid #ccc;
  border-right: 0.1rem solid #ccc;
  text-align: center;
  font-size: 1.4rem;
  color: #333;
  outline: none;
}

.qty-unit {
  font-size: 1.4rem;
  color: #555;
}

.btn-cart {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #0a0a0a;
  color: #fff;
  border: none;
  padding: 0 1.5rem;
  height: 3.5rem;
  border-radius: 0;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-cart:hover {
  background: #292525;
}
.btn-cart svg {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
}

/* Spec list */
.spec-list {
  font-size: 1.4rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.spec-list p {
  margin-bottom: 0.15rem;
}

/* Description block */
.desc {
  font-size: 1.4rem;
  color: #444;
  line-height: 1.75;
}
.desc p {
  margin-bottom: 0.5rem;
}
.desc strong {
  font-weight: 700;
  color: #222;
}

.desc ul {
  margin: 0.25rem 0 0.5rem 0;
  list-style: inside;
}
.desc ul li {
  margin-bottom: 0.15rem;
}

/* Social / wishlist row */
.social-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 0.0625rem solid #e0e0e0;
}
.social-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #3b5998;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}

.social-icon:hover {
  opacity: 0.75;
}

.social-icon.gplus {
  background: #dd4b39;
}
.social-icon.pinterest {
  background: #bd081c;
}
.social-icon.email {
  background: #888;
}
.social-icon svg {
  fill: #fff;
}

.wishlist-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1.4rem;
  color: #555;
  text-decoration: none;
  margin-left: auto;
  cursor: pointer;
}
.wishlist-link:hover {
  color: #222;
}
.heart-icon {
  color: #e74c3c;
  font-size: 3rem;
}

.product_single .row {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 3rem;
}

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

/* ================= Sidebar =================== */
:root {
  --accent: #e8a020;
  --accent-light: rgba(232, 160, 32, 0.18);
  --radius: 0.3rem;
}

.sidebar {
  width: 100%;
  overflow: hidden;
}

/* ── Accordion ── */
.accordion {
  border-bottom: 0.1rem solid var(--border);
}
.accordion:last-child {
  border-bottom: none;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.4rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}
.accordion-header:hover {
  background: #fafaf8;
}

.accordion-title {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #000000;
}

.accordion-icon {
  width: 1.6rem;
  height: 1.6rem;
  position: relative;
  flex-shrink: 0;
}
.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: #000000;
  border-radius: 0.2rem;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.accordion-icon::before {
  width: 1.4rem;
  height: 0.15rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.accordion-icon::after {
  width: 0.15rem;
  height: 1.4rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.accordion.open .accordion-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion.open .accordion-body {
  max-height: 60rem;
}

.accordion_list {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  border: 0.1rem solid #ddd;
  border-radius: 0.5rem;
  overflow: hidden;
}

/* ── Sub-accordion (categories) ── */
.sub-accordion {
  border-top: 0.1rem solid var(--border);
}
.sub-accordion:first-child {
  border-top: none;
}

.sub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.4rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}
.sub-header:hover {
  background: #fafaf8;
}

.sub-title {
  font-size: 1.4rem;
  font-weight: 400;
  color: #000000;
}

.sub-count {
  font-size: 1.4rem;
  color: var(--muted);
  margin-left: 0.4rem;
}

.chevron {
  width: 1rem;
  height: 1rem;
  border-right: 0.15rem solid #4d4d4d;
  border-bottom: 0.15rem solid #4d4d4d;
  transform: rotate(45deg);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.sub-accordion.open .chevron {
  transform: rotate(-135deg);
}

.sub-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.sub-accordion.open .sub-body {
  max-height: 30rem;
}

.links-list {
  list-style: none;
  padding: 0.4rem 0 1rem 0;
}
.links-list li a {
  display: block;
  padding: 0.6rem 2rem 0.6rem 3rem;
  font-size: 1.4rem;
  color: #443f3f;
  text-decoration: none;
  transition:
    color 0.2s,
    background 0.2s;
  border-radius: 0;
}
.links-list li a:hover {
  color: #000000;
  background: #fafaf8;
}

/* Static (no sub-links) row */
.static-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.4rem;
  border-top: 0.1rem solid #ddd;
  cursor: pointer;
  transition: background 0.2s;
}
.static-row:hover {
  background: #fafaf8;
}

/* ── Price / Range Slider Accordion ── */
.price-body {
  padding: 0 2rem 2.4rem;
}

.range-label {
  font-size: 1.4rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
  display: block;
}

/* Chart */
.chart-wrap {
  position: relative;
  height: 6rem;
  margin-bottom: 1rem;
}
canvas#priceChart {
  width: 100% !important;
  height: 100% !important;
}

/* Dual range slider */
.range-track {
  position: relative;
  height: 0.4rem;
  margin: 1.2rem 0 0.8rem;
}
.range-track-bg {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 1rem;
}
.range-track-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  background: var(--accent);
  border-radius: 1rem;
}
.range-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  appearance: none;
  background: transparent;
  pointer-events: none;
  outline: none;
}
.range-input::-webkit-slider-thumb {
  appearance: none;
  pointer-events: all;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--accent);
  border: 0.2rem solid #fff;
  box-shadow: 0 0.1rem 0.5rem rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.15s;
}
.range-input::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.range-input::-moz-range-thumb {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--accent);
  border: 0.2rem solid #fff;
  box-shadow: 0 0.1rem 0.5rem rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.range-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.6rem;
}
.range-value {
  font-size: 1.4rem;
  color: #000000;
  font-weight: 500;
}

.btn-filter {
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0.7rem 1.6rem;
  background: #000000;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s;
  letter-spacing: 0.02em;
}
.btn-filter:hover {
  background: #333;
}
.btn-filter:active {
  transform: scale(0.97);
}

/* ================ product_sm_arrows ================= */
.product_sm_arrows .swiper-button {
  position: static;
  margin: 0 !important;
  transform: translate(0, 0);
  width: auto;
  height: auto;
  background: transparent;
}

.product_sm_arrows {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.product_sm_top {
  justify-content: space-between;
  padding: 0 1.4rem 2rem 1.4rem;
}

.product_sm_arrows .swiper-button:after {
  font-size: 1.6rem;
}

.ps_sm_slider .product_sm_list .card {
  max-width: 30rem;
  margin: 0 auto;
}

.ps_sm_slider .card_sm .card_info h5 {
  max-width: 16rem;
}

.product_row_three .col {
  width: 33.3%;
  flex: 0 0 33.3%;
}

.product_row_three .row {
  --bs-gutter-x: 2.5rem;
  --bs-gutter-y: 2.5rem;
}

.pdt_top {
  padding: 0 0 2rem;
}

.pdt_top_left select {
  width: 18rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre;
}

.select_wrap select {
  border-radius: 10rem;
  font-size: 1.4rem;
}

.select_wrap.sm select {
  width: 7rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre;
}

.grid_list {
  margin-left: 2rem;
  gap: 0.5rem;
}

.gridlist_btn {
  width: 4.5rem;
  height: 4.5rem;
  background: #f1f1f1;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.35s ease;
}

.gridlist_btn img {
  width: 1.8rem;
}

.list_btn img {
  width: 2.4rem;
}

.gridlist_btn:hover {
  background: #e6dbdb;
}

.gridlist_btn.active {
  background: #000;
}

.gridlist_btn.active img {
  filter: var(--white_img);
}

.pagination a {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid #ddd;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: 0.35s ease;
  font-family: monospace;
  color: #000;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination a:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}

.product_row_three .card_img {
  height: 40rem;
}

.card_desc {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: none;
  color: #000;
  opacity: 0.8;
}

.product_sm_slider {
  border: 0.1rem solid #ddd;
  border-radius: 0.5rem;
  padding: 2rem 1.2rem !important;
  overflow: hidden;
}

.pdt_bottom {
  padding-top: 2rem;
}

/* fillter_btn */
.fillter_btn,
.close_fillter_btn {
  display: none;
}

.close_fillter_btn {
  position: absolute;
  right: 2rem;
  top: 2rem;
}

.fillter_btn {
  height: 4rem;
  padding: 0 2rem;
  gap: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15rem;
  background: #f1f1f1;
}
