/* ══════════════════════════════════════════════
   AKAR CREATION — Master Stylesheet
   Fully responsive: Mobile → Tablet → Laptop → Desktop
   ══════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --accent: #a1644d;
  --accent-dark: #6b241f;
  --ink: #151515;
  --muted: #6f6f6f;
  --line: #e6e0dc;
  --soft: #f5f0ee;
  --dark: #181818;
  --white: #fff;
  --star: #dfa536;
  --green: #72e35a;
}

/* ── Reset & Base ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  letter-spacing: 0;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.d-none {
  display: none;
}

button,
input {
  font: inherit;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ══════════════════════════
   PROMO BAR
   ══════════════════════════ */
.promo-bar {
  position: relative;
  z-index: 40;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
  height: 38px;
  width: 100%;
}

.promo-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.promo-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.promo-bar.hidden {
  display: none;
}

.promo-track {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  gap: 88px;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
  font-size: 15px;
  padding-right: 40px;
}

.promo-track span::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 88px;
  border-radius: 50%;
  background: currentColor;
  vertical-align: middle;
}

.promo-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: var(--white);
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}

.promo-close svg {
  width: 14px;
  height: 14px;
}

.area-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
    TEXT-ALIGN: CENTER;
}

.total-area-box {
    padding: 10px;
    BORDER: 1PX SOLID #dddddd;
    COLOR: #000;
    WIDTH: 49%;
    BORDER-RADIUS: 5PX;
}

.collapsible-tab-content p{
    margin-bottom: 7px;
}

.total-price-box {
    BORDER: 1PX SOLID #dddddd;
    padding: 10px;
    WIDTH: 49%;
    BORDER-RADIUS: 5PX;
    COLOR: #db3644;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════
   HEADER & NAVIGATION
   ══════════════════════════ */
.site-header {
  position: relative;
  z-index: 30;
  background: var(--white);
}

.header-contact {
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: #333;
}

.contact-left,
.header-contact a {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-contact a {
  gap: 8px;
}

.header-contact svg,
.service-row svg,
.nav-actions svg,
.icon-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.main-nav-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.brand {
  flex: 0 0 auto;
  font-size: 43px;
  line-height: 1;
  letter-spacing: -1px;
  font-weight: 400;
}

.brand span {
  color: var(--accent);
  font-style: italic;
}

.akar-logo img {
  max-width: 150px;
  height: auto;
}

/* ── Nav Links (Desktop) ── */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex: 1;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-items {
  position: relative;
}

.nav-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 12px 14px;
  white-space: nowrap;
  transition: color 0.25s ease;
  text-decoration: none;
  display: inline-block;
}

.nav-button:hover {
  color: var(--accent);
}

.nav-items:hover .dropdown {
  visibility: visible;
  opacity: 1;
}

.dropdown {
  position: absolute;
  top: 100%;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .08);
}

.nav-items.open .dropdown,
.nav-items:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown.small {
  width: 250px;
  padding: 18px 0;
}

.nav-items .dropdown.small {
  left: 0;
  transform: translateY(8px);
}

.nav-items.open .dropdown.small,
.nav-items:hover .dropdown.small {
  transform: translateY(0);
}

.dropdown.small a {
  display: flex;
  justify-content: space-between;
  padding: 10px 22px;
  color: var(--muted);
  line-height: 1.4;
}

.dropdown.small a:hover {
  color: var(--accent);
  background: #faf6f4;
}

.category-mega {
  left: 0;
  right: 0;
  padding: 36px max(24px, calc((100vw - 1530px) / 2));
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 32px 40px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .07);
}

.category-mega h3,
.category-grid h3 {
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1.2px;
}

.category-mega p,
.category-grid p {
  margin: 9px 0;
  color: var(--muted);
  letter-spacing: 1px;
}

.category-mega img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  margin-top: 34px;
  transition: transform .55s ease, filter .55s ease;
}

/* ── Nav Actions ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-button {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

.cart-button {
  position: relative;
}

.cart-button span {
  position: absolute;
  right: -7px;
  top: 6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent);
  font-size: 11px;
  line-height: 18px;
}

/* ── Mobile toggle (hidden by default, shown via media query) ── */
.mobile-toggle {
  display: none;
}

/* ══════════════════════════
   HERO BANNER
   ══════════════════════════ */
.hero-banner {
  position: relative;
  height: min(680px, calc(100vh - 200px));
  min-height: 420px;
  overflow: hidden;
  background: var(--dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity .65s ease, transform 1.1s ease, visibility .65s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-content {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.hero-content.right {
  right: 0;
}

.hero p {
  margin: 0 0 34px;
  font-size: 18px;
  font-weight: 700;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  min-width: 150px;
  padding: 0 30px;
  border: 1px solid transparent;
  color: var(--ink);
  background: var(--white);
  text-transform: none;
  font-size: 15px;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.btn:hover {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* ── Slider Arrows ── */
.slider-arrow,
.product-arrow {
  position: absolute;
  z-index: 5;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, .13);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow svg,
.product-arrow svg {
  width: 40%;
  height: 40%;
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
  display: block;
}

.slider-arrow {
  top: 50%;
  transform: translateY(-50%);
}

.slider-arrow.prev {
  left: 24px;
}

.slider-arrow.next {
  right: 24px;
}

.slider-arrow:hover {
  background: rgba(0, 0, 0, .32);
}

/* ══════════════════════════
   RICH SECTION (CTA banner)
   ══════════════════════════ */
.rich-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #ededed;
  text-align: center;
}

.rich-title {
  color: #b71b1a;
  font-size: 30px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 20px;
}

.small-text {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 20px;
  font-size: 16px;
}

.rich-section p {
  margin-top: 0;
  margin-bottom: 16px;
}

.rich-section h4 {
  margin-top: 25px;
  margin-bottom: 16px;
}

.rich-section p:last-child {
  margin-bottom: 0;
}

/* ══════════════════════════
   CATEGORY SECTION
   ══════════════════════════ */
.category-section {
  padding: 74px 0 58px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 40px;
}

.category-grid article {
  min-width: 0;
  overflow: hidden;
}

.category-grid img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  margin-bottom: 28px;
  transition: transform .55s ease, filter .55s ease;
}

.category-mega article:hover img,
.category-grid article:hover img {
  transform: scale(1.06);
  filter: brightness(.92);
}

/* ══════════════════════════
   PROMO GRID
   ══════════════════════════ */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 28px 0 80px;
}

.promo-tile,
.promo-sale {
  min-height: 320px;
}

.promo-tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  background-position: center;
  background-size: cover;
  color: var(--white);
  overflow: hidden;
  transition: background-size .55s ease, filter .55s ease;
}

.promo-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .16), rgba(0, 0, 0, .02));
  opacity: 1;
  transition: background .3s ease;
}

.promo-tile:hover {
  background-size: 108%;
}

.promo-tile:hover::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, .26), rgba(0, 0, 0, .08));
}

.promo-tile>div {
  position: relative;
  padding: 52px 56px;
  visibility: hidden;
}

.promo-tile.large {
  grid-row: span 2;
  min-height: 670px;
  justify-content: flex-end;
}

.promo-tile.wide {
  min-height: 320px;
}

.promo-tile.small {
  min-height: 320px;
}

.promo-tile h2,
.promo-sale h2 {
  margin: 0 0 18px;
  font-size: clamp(22px, 2.2vw, 42px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 1.8px;
}

.promo-tile p,
.promo-sale p {
  margin: 0 0 22px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .8px;
}

.promo-sale {
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  background: #b36d43;
  padding: 36px;
}

.promo-sale span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 2px solid var(--white);
  border-radius: 50%;
  font-size: 34px;
}

.promo-grid .btn {
  min-height: 39px;
  min-width: 0;
  padding: 0 22px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

/* ── Promo Box (float-based → flexbox) ── */
.promo-box {
  display: flex;
  gap: 15px;
  width: 100%;
}

.promo-box .promo-left {
  flex: 1;
}

.promo-box .promo-right {
  flex: 1;
  position: relative;
}

.promo-box .promo-left img,
.promo-box .promo-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-box .promo-right span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.promo-box .promo-right span h2 {
  margin: 0 0 6px;
  font-size: 24px;
}

.promo-box .promo-right span p {
  margin: 0;
  font-size: 16px;
}

/* ══════════════════════════
   PRODUCTS SECTION
   ══════════════════════════ */
.products-section {
  padding: 18px 0 72px;
}

.section-title {
  margin-bottom: 28px;
  text-align: center;
}

.section-title h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 2.4vw, 46px);
  line-height: 1.2;
  font-weight: 400;
}

.section-title p {
  margin: 0;
  font-size: 17px;
  letter-spacing: 1px;
}

.tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 34px;
}

.tab-button {
  min-width: 128px;
  height: 47px;
  padding: 0 22px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 17px;
  letter-spacing: 1px;
}

.tab-button:last-child {
  border-right: 0;
}

.tab-button.active {
  color: var(--white);
  background: var(--accent);
  box-shadow: inset 0 -2px 0 var(--white);
}

.product-carousel {
  position: relative;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  position: relative;
  min-width: 0;
}

.product-image {
  position: relative;
  display: grid;
  place-items: center;
  height: 370px;
  background: #f7f7f7;
  overflow: hidden;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .34);
  opacity: 0;
  transition: opacity .25s ease;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
}

.product-card:hover .product-image::after {
  opacity: 1;
}

.product-card:hover .product-image img {
  transform: scale(1.07);
  filter: saturate(1.03);
}

.product-actions {
  position: absolute;
  left: 50%;
  bottom: 20px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translate(-50%, 12px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 2;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translate(-50%, 0);
}

.product-actions button {
  width: 42px;
  height: 42px;
  border: 0;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.product-actions button:hover {
  color: var(--white);
  background: var(--accent);
  transform: translateY(-2px);
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 12px 0 -4px;
  color: var(--ink);
}

.countdown b {
  display: block;
  font-size: 17px;
}

.countdown span {
  color: var(--accent);
  font-size: 12px;
  font-style: italic;
}

.rating {
  width: fit-content;
  min-width: 126px;
  margin: -22px auto 14px;
  padding: 8px 15px;
  background: var(--white);
  color: var(--star);
  text-align: center;
  position: relative;
}

.product-card h3 {
  margin: 0 0 8px;
  color: #575757;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .8px;
}

.price {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

.price del {
  margin-left: 8px;
  color: #777;
  font-weight: 400;
}

.product-arrow {
  top: 43%;
  width: 38px;
  height: 58px;
  color: #b3b3b3;
  background: transparent;
  font-size: 50px;
  transform: translateY(-50%);
}

.product-arrow.prev {
  left: -42px;
}

.product-arrow.next {
  right: -42px;
}

/* ══════════════════════════
   GALLERY STRIP
   ══════════════════════════ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding: 12px 0 76px;
  overflow: hidden;
}

.gallery-strip img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
}

.gallery-strip img:hover {
  transform: scale(1.06);
  filter: brightness(.88);
}

/* ══════════════════════════
   SERVICE ROW
   ══════════════════════════ */
.service-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 70px;
}

.service-row article {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.service-row span {
  flex: 0 0 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: var(--soft);
}

.service-row h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
}

.service-row p {
  margin: 0;
  color: #333;
  letter-spacing: 1px;
}

/* ══════════════════════════
   TESTIMONIAL
   ══════════════════════════ */
.testimonial {
  background: #171717;
  color: var(--white);
  overflow: hidden;
}

.testimonial-inner {
  min-height: 255px;
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 38px;
}

.person {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.person img {
  width: 104px;
  height: 105px;
  object-fit: cover;
  border: 6px solid var(--white);
}

.person h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.person p {
  margin: 0;
  font-size: 15px;
}

.Wallpaper-section {
  margin-bottom: 50px;
}

blockquote {
  position: relative;
  margin: 0;
  max-width: 828px;
  padding: 34px 40px;
  color: #444;
  background: var(--white);
  font-style: italic;
  line-height: 1.8;
  letter-spacing: .8px;
}

blockquote::before {
  content: "\201C";
  position: absolute;
  top: -34px;
  left: 26px;
  color: var(--accent);
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
}

blockquote::after {
  content: "";
  position: absolute;
  left: -12px;
  top: 42%;
  width: 24px;
  height: 24px;
  background: var(--white);
  transform: rotate(45deg);
}

/* ══════════════════════════
   FOOTER BANNER
   ══════════════════════════ */
.footer-banner-wrapper {
  background-image: linear-gradient(90deg, #ffc21a, #f28a2b, #f0625e, #e43e75, #b12a7e) !important;
  padding: 55px 15px;
  text-align: center;
  overflow: hidden;
}

.footer-banner-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: min(1150px, 100%);
}

/* ══════════════════════════
   SWIPER / SLIDER
   ══════════════════════════ */
.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-link img {
  transform: scale(1);
  transition: .3s ease-in-out;
}

.slider-link img:hover {
  transform: scale(1.3);
}

.slider-link:hover .swiper-text {
  transform: scale(1.3);
}

.swiper-content .swiper-text {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  padding: 15px 10px 10px 10px;
  height: 50px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  transform: scale(1);
  transition: .3s ease-in-out;
}

.swiper-slider {
  margin-bottom: 50px;
  overflow: hidden;
}

.slider-link {
  width: 100%;
  overflow: hidden;
  display: block;
}

/* ══════════════════════════
   FOOTER
   ══════════════════════════ */
.site-footer {
  color: #e5e5e5;
  background: #111111;
  margin-top: 80px;
  font-size: 14px;
}

.Social-icon ul {
  padding-left: 0;
  margin: 15px 0 0 0;
  display: flex;
  gap: 12px;
}

.Social-icon li {
  list-style: none;
  margin: 0;
}

.Social-icon li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.25s, transform 0.25s;
}

.Social-icon li a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.Social-icon li svg {
  fill: #fff;
  width: 16px;
  height: 16px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 80px 4px;
}

.site-footer h3 {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--white);
  text-align: left;
}

.site-footer .copyright {
  margin: 0;
  padding: 18px 24px;
  border-top: 1px solid #a7a7a7;
  color: #aaa;
  text-align: center;
}

.site-footer p {
  margin-bottom: 8px;
}

.site-footer a {
  margin-bottom: 12px;
}

.site-footer p,
.site-footer a {
  display: block;
  color: #a0a0a0;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: left;
  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: var(--white);
}

.newsletter form {
  display: flex;
  border-bottom: 1px solid #717171;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  height: 48px;
  border: 0;
  color: var(--white);
  background: transparent;
  outline: 0;
}

.newsletter input::placeholder {
  color: #aaa;
}

.newsletter .btn {
  min-height: 42px;
  min-width: 120px;
  margin-bottom: 6px;
}

/* ══════════════════════════
   CHAT & BACK TO TOP
   ══════════════════════════ */
.chat-button,
.back-top {
  position: fixed;
  z-index: 60;
  border: 0;
  cursor: pointer;
}

.chat-button {
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #25D366;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .3);
  transition: transform 0.25s ease;
}

.chat-button:hover {
  transform: scale(1.08);
}

.back-top {
  right: 25px;
  bottom: 90px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ══════════════════════════
   GALLERY (design showcase)
   ══════════════════════════ */
#gallery-menu {
  margin: 20px 0;
  text-align: center;
}

#gallery-menu button {
  margin: 5px;
  padding: 8px 15px;
  border: none;
  background: #29629f;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: Arial, sans-serif;
}

#gallery-menu button:hover {
  background: #555;
}

#gallery-menu button.active {
  background: #ff9800;
  color: #000;
}

.our-gallery {
  column-count: 4;
  column-gap: 15px;
  padding: 0 10px;
}

.our-gallery .filterDiv {
  position: relative;
  margin-bottom: 15px;
  display: none;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  background: #000;
}

.our-gallery .filterDiv img {
  width: 100%;
  border-radius: 8px;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  height: auto;
}

.our-gallery .filterDiv .middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  pointer-events: none;
}

.our-gallery .filterDiv:hover img {
  opacity: 0.28;
  transform: scale(1.02);
}

.our-gallery .filterDiv:hover .middle {
  opacity: 1;
}

.our-gallery .text {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  font-weight: 700;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  user-select: none;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover,
.next:hover,
.close:hover {
  color: #bbb;
}

/* ══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════ */

/* ── LAPTOP (≤ 1200px) ── */
@media (max-width: 1200px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand {
    font-size: 36px;
  }

  .nav-button {
    font-size: 13px;
    padding: 10px 10px;
    letter-spacing: 0.3px;
  }

  .category-grid,
  .category-mega,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-arrow {
    display: none;
  }

  .service-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }

  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── TABLET (≤ 900px) ── */
@media (max-width: 900px) {
  .header-contact {
    display: none;
  }

  .main-nav {
    height: 68px;
    flex-wrap: wrap;
  }

  .mobile-toggle {
    display: inline-grid;
    order: 2;
  }

  .akar-logo {
    order: 1;
    flex: 1;
  }

  .nav-actions {
    order: 3;
  }

  .desktop-menu {
    display: none;
  }



  /* ── Mobile Nav Drawer ── */
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0 16px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
    z-index: 100;
    max-height: 75vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-items {
    position: static;
    display: block;
    width: 100%;
  }

  .nav-button {
    width: 100%;
    min-width: 0;
    text-align: left;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f0ece8;
    display: block;
    box-sizing: border-box;
  }

  .nav-button:hover {
    background: #faf6f4;
    color: var(--accent);
  }

  .dropdown,
  .nav-items .dropdown.small,
  .nav-items:hover .dropdown.small,
  .nav-items.open .dropdown.small,
  .category-mega {
    position: static;
    width: 100%;
    box-shadow: none;
    transform: none;
    left: 0;
  }

  .category-mega {
    padding: 16px 12px 8px;
    grid-template-columns: 1fr;
  }

  /* Hide dropdowns by default on mobile */
  .nav-items .dropdown {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  /* Show dropdown when nav-items has .open class */
  .nav-items.open .dropdown {
    display: block;
  }

  .dropdown.small {
    padding: 8px 0 14px;
  }

  .dropdown.small a {
    padding: 10px 28px;
  }

  /* ── Hero ── */
  .hero-banner {
    height: auto;
    min-height: 400px;
    aspect-ratio: 16 / 10;
  }

  .hero-content,
  .hero-content.right {
    width: calc(100% - 88px);
    margin: 0 auto;
  }

  .slider-arrow {
    width: 44px;
    height: 44px;
    font-size: 34px;
  }

  .slider-arrow.prev {
    left: 10px;
  }

  .slider-arrow.next {
    right: 10px;
  }

  /* ── Promo Grid ── */
  .promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 0 40px;
  }

  .promo-tile.large {
    min-height: 400px;
    grid-row: span 1;
  }

  .promo-box {
    flex-direction: column;
    gap: 15px;
  }

  /* ── Product Grid ── */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-image {
    height: 260px;
  }

  /* ── Testimonial ── */
  .testimonial-inner {
    grid-template-columns: 1fr;
    padding: 48px 20px;
  }

  .person {
    justify-content: flex-start;
  }

  blockquote::after {
    display: none;
  }

  /* ── Footer ── */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px 16px;
  }

  /* ── Gallery ── */
  .our-gallery {
    column-count: 3;
  }

  /* ── Tabs ── */
  .tabs {
    flex-wrap: wrap;
    gap: 0;
  }

  .tab-button {
    flex: 1 1 auto;
    min-width: 100px;
    font-size: 15px;
  }

  /* ── Rich Section ── */
  .rich-title {
    font-size: 24px;
  }

  /* ── Swiper slides-per-view handled by attribute, but ensure images fit ── */
  .swiper-content .swiper-text {
    font-size: 13px;
    padding: 10px 8px 8px;
    height: auto;
  }
}

/* ── MOBILE (≤ 640px) ── */
@media (max-width: 640px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-footer {
    margin-top: 50px;
  }

  .promo-bar {
    height: 32px;
  }

  .promo-track {
    gap: 44px;
    font-size: 12px;
  }

  .promo-track span::after {
    margin-left: 44px;
  }

  .brand {
    font-size: 28px;
  }

  .akar-logo img {
    max-width: 120px;
  }

  .main-nav {
    height: 60px;
    gap: 12px;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-actions .icon-button:not(.cart-button) {
    display: none;
  }

  /* ── Hero Mobile ── */
  .hero-banner {
    height: auto;
    min-height: 350px;
    /*aspect-ratio: 9 / 12;*/
    max-height: 70vh;
  }

  .hero-slide {
    background-position: 68% center;
  }

  /*.hero-slide::before {*/
  /*  content: "";*/
  /*  position: absolute;*/
  /*  inset: 0;*/
  /*  z-index: 0;*/
  /*  background: linear-gradient(90deg, rgba(67, 12, 11, .96) 0%, rgba(67, 12, 11, .86) 58%, rgba(67, 12, 11, .25) 100%);*/
  /*}*/

  .hero-content,
  .hero-content.right {
    position: relative;
    z-index: 1;
    width: calc(100% - 100px);
    height: auto;
    margin: 0 auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, .28);
    white-space: normal;
  }

  .hero-banner h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .hero-banner p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-banner .btn {
    min-height: 42px;
    min-width: 120px;
    padding: 0 20px;
    font-size: 13px;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .45);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
  }

  .slider-arrow.prev {
    left: 8px;
  }

  .slider-arrow.next {
    right: 8px;
  }

  /* ── Promo ── */
  .promo-grid {
    gap: 15px;
    padding: 15px 0 30px;
  }

  .promo-tile.large {
    min-height: 300px;
  }

  .promo-tile.wide,
  .promo-tile.small {
    min-height: 200px;
  }

  .promo-tile>div {
    padding: 24px 20px;
  }

  .promo-tile h2 {
    font-size: 20px;
    letter-spacing: 0.5px;
  }

  .promo-tile p {
    font-size: 14px;
  }

  /* ── Grids → Single Column ── */
  .category-grid,
  .category-mega,
  .product-grid,
  .service-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-image {
    height: 220px;
  }

  /* ── Footer Mobile ── */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 16px;
  }

  .site-footer h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  /* ── Newsletter ── */
  .newsletter form {
    display: flex;
    flex-direction: column;
    border-bottom: 0;
  }

  .newsletter input {
    width: 100%;
    border-bottom: 1px solid #717171;
    margin-bottom: 10px;
  }

  .newsletter .btn {
    margin-top: 8px;
    width: 100%;
  }

  /* ── Gallery ── */
  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 10px 0 40px;
  }

  .gallery-strip img {
    height: 160px;
  }

  .our-gallery {
    column-count: 2;
  }

  /* ── Tabs ── */
  .tabs {
    flex-wrap: wrap;
  }

  .tab-button {
    flex: 1 1 130px;
    border: 1px solid var(--line);
    font-size: 14px;
    height: 40px;
  }

  /* ── Service Row ── */
  .service-row h3 {
    font-size: 18px;
  }

  /* ── Blockquote ── */
  blockquote {
    padding: 24px 16px;
  }

  /* ── Rich Section ── */
  .rich-title {
    font-size: 20px;
  }

  .rich-section {
    padding: 30px 0;
  }

  /* ── Back to Top ── */
  .back-top {
    right: 16px;
    bottom: 84px;
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  /* ── Chat Button ── */
  .chat-button {
    width: 48px;
    height: 48px;
    left: 12px;
    bottom: 12px;
  }

  .chat-button svg {
    width: 24px;
    height: 24px;
  }

  /* ── Footer Banner ── */
  .footer-banner-wrapper {
    padding: 30px 10px;
  }

  /* ── Swiper mobile ── */
  .swiper-content .swiper-text {
    font-size: 11px;
    padding: 6px 6px;
    height: auto;
  }

  .swiper-slider {
    margin-bottom: 30px;
  }

  /* ── Countdown ── */
  .countdown {
    gap: 14px;
  }

  .countdown b {
    font-size: 14px;
  }
}

/* ── EXTRA SMALL (≤ 400px) ── */
@media (max-width: 400px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .akar-logo img {
    max-width: 100px;
  }

  .main-nav {
    height: 54px;
  }

  .hero-banner h1 {
    font-size: 24px;
  }

  .hero-banner p {
    font-size: 13px;
  }

  .promo-tile h2 {
    font-size: 18px;
  }

  .product-image {
    height: 180px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .our-gallery {
    column-count: 1;
  }
}