@charset "UTF-8";
/*==================================================
GOOGLE FONT
==================================================*/
/*==================================================
VARIABLES
==================================================*/
/*==================================================
RESET
==================================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #222222;
  font-family: "Inter", sans-serif;
  background: #f7f7f7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  border: none;
  font-family: inherit;
  outline: none;
  background: none;
}

.container {
  margin: auto;
  width: 1600px;
  max-width: 95%;
}

@media (max-width: 1400px) {
  .container {
    max-width: 98%;
  }
}
.top-bar {
  color: #fff;
  background: linear-gradient(180deg, #9b0909, #830707);
}
.top-bar .container {
  height: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-item i {
  color: #d6a646;
  font-size: 22px;
}
.top-item h5 {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
}
.top-item span {
  margin-top: 4px;
  display: block;
  color: #f3e5e5;
  font-size: 14px;
}

.divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.22);
}

/*-------------------
RIGHT
--------------------*/
.top-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.top-right a {
  color: #fff;
  font-size: 15px;
  transition: 0.35s ease;
}
.top-right a:hover {
  color: #ffe4a0;
}
.top-right span {
  color: rgba(255, 255, 255, 0.45);
}
.top-right i {
  margin-right: 6px;
}
.top-right .fa-solid {
  color: #C9A227;
}

.header {
  background: #fff;
}
.header .container {
  height: 145px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*==================================================
LOGO
==================================================*/
.logo {
  width: 240px;
  flex-shrink: 0;
}
.logo img {
  width: 100%;
  object-fit: contain;
}

.search-wrapper {
  border: 1px solid #ececec;
  border-radius: 60px;
  width: 720px;
  height: 62px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: 0.35s ease;
}
.search-wrapper:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/*==================================================
CATEGORY DROPDOWN
==================================================*/
.category-dropdown {
  width: 235px;
  height: 100%;
  border-right: 1px solid #ededed;
}

/*==================================================
CATEGORY BUTTON
==================================================*/
.category-btn {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 24px;
  cursor: pointer;
  transition: 0.35s ease;
}
.category-btn:hover {
  background: #fafafa;
}

/*==================================================
CATEGORY ICON
==================================================*/
.category-icon {
  margin-right: 14px;
  border-radius: 10px;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff8ec;
}
.category-icon i {
  color: #d6a646;
  font-size: 18px;
}

/*==================================================
CATEGORY TEXT
==================================================*/
.category-text {
  color: #222222;
  font-weight: 600;
  font-size: 16px;
  flex: 1;
}

/*==================================================
ARROW
==================================================*/
.arrow {
  color: #666;
  font-size: 12px;
  transition: 0.35s ease;
}

.category-btn:hover .arrow {
  transform: rotate(180deg);
}

/*==================================================
SEARCH BOX
==================================================*/
.search-box {
  height: 100%;
  display: flex;
  align-items: center;
  flex: 1;
}

/*==================================================
INPUT
==================================================*/
.search-box input {
  height: 100%;
  padding: 0 28px;
  color: #444;
  font-size: 16px;
  flex: 1;
}

.search-box input::placeholder {
  color: #9d9d9d;
}

/*==================================================
SEARCH BUTTON (FIXED)
==================================================*/
.search-box button {
  margin-right: 8px;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: linear-gradient(180deg, #b50d0d, #8c0808);
  cursor: pointer;
  transition: 0.35s;
  box-shadow: 0 12px 24px rgba(181, 13, 13, 0.25);
}

/* ICON */
.search-box button i {
  font-size: 22px;
}

/* HOVER */
.search-box button:hover {
  transform: scale(1.05);
}

/*==================================================
HEADER RIGHT
==================================================*/
.header-right {
  display: flex;
  align-items: center;
  gap: 34px;
}

/*==================================================
CALL BOX
==================================================*/
.call-box {
  display: flex;
  align-items: center;
  gap: 5px;
}

/*==================================================
CALL ICON (SMALL SIZE)
==================================================*/
.call-box .icon {
  border: 1px solid #e9e9e9;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-box .icon i {
  color: #d4af37;
  font-size: 16px;
  /* gold fix (Sass $gold hata diya) */
}

/*==================================================
CALL TEXT
==================================================*/
.call-box small {
  margin-bottom: 5px;
  display: block;
  color: #666;
  font-size: 14px;
}

.call-box h4 {
  font-weight: 600;
  font-size: 16px;
}

/*==================================================
HEADER ICONS
==================================================*/
.header-icon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}

.header-icon i {
  border: 1px solid #ececec;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #222;
  font-size: 22px;
  transition: 0.3s;
}

.header-icon p {
  margin-top: 10px;
  font-weight: 500;
  font-size: 14px;
}

.header-icon:hover i {
  border-color: #9f0d0d;
  color: #fff;
  background: #9f0d0d;
}

.header-icon:hover {
  transform: translateY(-3px);
}

/*==================================================
BADGE
==================================================*/
.badge {
  position: absolute;
  z-index: 5;
  top: -3px;
  right: 4px;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  background: #b80b0b;
}

/*==================================================
NAVIGATION WRAPPER
==================================================*/
.navbar {
  margin-top: 5px;
  margin-bottom: 18px;
}

.navbar .container {
  border: 1px solid #ececec;
  border-radius: 18px;
  display: flex;
  align-items: center;
  background: #fff;
  overflow: visible;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

/*==================================================
LEFT CATEGORY BUTTON
==================================================*/
.menu-category {
  width: 290px;
  flex-shrink: 0;
}

.menu-category button {
  border-radius: 14px 0 0 14px;
  width: 100%;
  height: 47px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  background: linear-gradient(180deg, #a40b0b, #8d0909);
  cursor: pointer;
  transition: 0.35s;
  /* Left corners only */
}

.menu-category button:hover {
  background: linear-gradient(180deg, #b80d0d, #960808);
}

.menu-category button i {
  margin-right: 18px;
  font-size: 24px;
}

/*==================================================
CATEGORY DROPDOWN MENU
==================================================*/
.menu-category {
  position: relative;
}

.menu-category .categories-toggle.active {
  background: linear-gradient(180deg, #b80d0d, #960808);
}

.categories-dropdown-panel {
  position: absolute;
  z-index: 99999;
  top: calc(100% + 2px);
  left: 0;
  border: 1px solid #ececec;
  border-radius: 16px;
  width: 320px;
  padding: 10px;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease, max-height 0.35s ease;
  pointer-events: none;
}

.categories-dropdown-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 620px;
  pointer-events: auto;
}

.categories-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.category-item {
  border-radius: 12px;
  overflow: hidden;
}

.category-item.active > .category-link,
.category-link:hover {
  color: #9f0d0d;
  background: #fff8ec;
}

.category-link {
  border-radius: 12px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  color: #222222;
  gap: 10px;
  cursor: pointer;
  transition: 0.35s ease;
  text-align: left;
}

.category-link-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.category-link-main i {
  border-radius: 10px;
  width: 34px;
  height: 34px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  color: #d6a646;
  font-size: 16px;
  background: #f7f1e6;
}

.category-link-main span {
  color: inherit;
  font-weight: 600;
  font-size: 15px;
}

.category-chevron {
  flex-shrink: 0;
  color: #999;
  font-size: 12px;
  transition: 0.35s ease;
}

@media (max-width: 991px) {
  .menu-category {
    width: 100%;
  }
  .categories-dropdown-panel {
    width: min(100%, 320px);
  }
}
@media (max-width: 767px) {
  .navbar .container {
    overflow: visible;
  }
  .menu-category {
    width: 100%;
  }
  .menu-category .categories-toggle {
    height: 64px;
  }
  .categories-dropdown-panel {
    top: calc(100% + 8px);
    left: 0;
    border-radius: 16px;
    width: 100%;
    padding: 8px;
    max-width: none;
    box-shadow: none;
  }
  .shop-dropdown .mega-menu {
    display: none;
  }
  .nav-links {
    display: none;
  }
}
/*==================================================
NAVIGATION LINKS
==================================================*/
.nav-links {
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  gap: 62px;
}

/*==================================================
LINKS
==================================================*/
.nav-links li {
  position: relative;
}

.nav-links li a {
  display: flex;
  align-items: center;
  color: #222;
  font-weight: 600;
  font-size: 15px;
  gap: 8px;
  transition: 0.35s;
  text-transform: uppercase;
}

.nav-links li a i {
  font-size: 11px;
}

/*==================================================
ACTIVE
==================================================*/
.nav-links li.active a {
  color: #b00b0b;
}

.nav-links li.active::after {
  position: absolute;
  bottom: -25px;
  left: 50%;
  border-radius: 50px;
  width: 44px;
  height: 3px;
  display: none;
  content: "";
  transform: translateX(-50%);
  background: #d8a646;
}

/*==================================================
HOVER
==================================================*/
.nav-links li::before {
  position: absolute;
  bottom: -25px;
  left: 50%;
  border-radius: 50px;
  width: 0;
  height: 3px;
  display: none;
  content: "";
  transform: translateX(-50%);
  background: #d8a646;
  transition: 0.35s;
}

.nav-links li:hover::before {
  width: 44px;
}

.nav-links li:hover a {
  color: #b00b0b;
}

/*==================================================
OFFERS
==================================================*/
.offer a {
  color: #b00b0b;
}

/*==================================================
DROPDOWN ICON
==================================================*/
.nav-links li:hover i {
  transform: rotate(180deg);
}

.nav-links li i {
  transition: 0.35s;
}

/*==================================================
MENU BUTTON HOVER
==================================================*/
.menu-category button:hover i {
  transform: rotate(90deg);
}

.menu-category button i {
  transition: 0.35s;
}

/*==================================================
STICKY NAVBAR
==================================================*/
.navbar.sticky {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  animation: sticky 0.4s ease;
}

@keyframes sticky {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/*=============================
MOBILE SEARCH
==============================*/
@media (max-width: 768px) {
  .search-wrapper {
    border-radius: 18px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 10px;
    overflow: hidden;
    gap: 10px;
  }
  .category-dropdown {
    width: 100%;
    height: 54px;
    border-right: none;
    border-bottom: 1px solid #ececec;
  }
  .category-btn {
    height: 54px;
    padding: 0 16px;
  }
  .category-icon {
    width: 34px;
    height: 34px;
  }
  .category-text {
    font-size: 15px;
  }
  .search-box {
    border: 1px solid #eee;
    border-radius: 30px;
    width: 100%;
    height: 52px;
    overflow: hidden;
    background: #fff;
  }
  .search-box input {
    padding: 0 18px;
    font-size: 14px;
  }
  .search-box button {
    margin: 0;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }
}
/*==================================================
MEGA MENU
==================================================*/
.mega-menu {
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0;
  margin-top: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.35s ease;
}

.mega-wrapper {
  border-radius: 0 0 18px 18px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 330px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/*==================================================
COLUMN
==================================================*/
.mega-column {
  position: relative;
  padding: 38px 34px;
}

/* Vertical Divider */
.mega-column:not(:last-child)::after {
  position: absolute;
  top: 35px;
  right: 0;
  width: 1px;
  height: 78%;
  content: "";
  background: #ededed;
}

/*==================================================
IMAGE
==================================================*/
.mega-column img {
  margin-bottom: 22px;
  width: 90px;
  height: 110px;
  object-fit: contain;
  transition: 0.4s;
}

.mega-column:hover img {
  transform: scale(1.08);
}

/*==================================================
TITLE
==================================================*/
.mega-column h4 {
  margin-bottom: 22px;
  color: #222;
  font-weight: 700;
  font-size: 22px;
}

/*==================================================
LINKS
==================================================*/
.mega-column ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mega-column ul li a {
  color: #555;
  font-size: 17px;
  transition: 0.3s;
}

.mega-column ul li:hover a {
  padding-left: 8px;
  color: #b20b0b;
}

/*==================================================
VIEW ALL
==================================================*/
.view-all {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  color: #b10b0b;
  font-weight: 700;
  font-size: 16px;
  gap: 8px;
  transition: 0.35s;
}

.view-all:hover {
  letter-spacing: 0.5px;
}

/*==================================================
PROMOTION CARD
==================================================*/
.mega-offer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  background: linear-gradient(135deg, #a20909, #760505);
  overflow: hidden;
}

/*==================================================
PROMO TEXT
==================================================*/
.offer-content span {
  margin-bottom: 18px;
  display: block;
  color: #d9a847;
  font-weight: 600;
  font-size: 15px;
}

.offer-content h2 {
  margin-bottom: 34px;
  color: #fff;
  font-weight: 800;
  font-size: 52px;
  line-height: 1.15;
}

.offer-content a {
  border: 2px solid #d9a847;
  border-radius: 12px;
  width: 185px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  transition: 0.35s;
}

.offer-content a:hover {
  color: #fff;
  background: #d9a847;
}

/*==================================================
PROMO IMAGE
==================================================*/
.mega-offer img {
  margin-top: 30px;
  margin-left: auto;
  width: 250px;
  transition: 0.5s;
}

.mega-offer:hover img {
  transform: scale(1.08);
}

/*==================================================
COLUMN HOVER
==================================================*/
.mega-column:hover {
  background: #fcfcfc;
}

.mega-column:hover h4 {
  color: #a20909;
}

/*==================================================
FLOAT ANIMATION (mega menu images)
==================================================*/
/* FIX: renamed from "float" to "floatMega" — the hero section also defines
a "@keyframes float" (in hero.scss) with a different translateY value.
Two @keyframes blocks sharing the same name is a silent bug: whichever
stylesheet loads/parses last wins and quietly overrides the other one.
Now each section has its own uniquely named animation. */
@keyframes floatMega {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
.mega-column img {
  animation: floatMega 4s ease-in-out infinite;
}

.mega-offer img {
  animation: floatMega 5s ease-in-out infinite;
}

.shop-dropdown {
  position: relative;
}

/* MEGA MENU DROPDOWN */
.shop-dropdown .mega-menu {
  position: absolute;
  z-index: 99999;
  top: calc(100% + 3px);
  left: -140px;
  width: 1000px;
  padding-top: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s ease;
  pointer-events: none;
}

.shop-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.shop-dropdown .mega-menu {
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.shop-dropdown .mega-wrapper {
  border-radius: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.shop-dropdown .mega-column {
  border: 1px solid #f3f3f3;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  padding: 22px 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
  min-height: 300px;
}

.shop-dropdown .mega-column img {
  margin-bottom: 16px;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.shop-dropdown .mega-column h4 {
  margin-bottom: 16px;
  color: #222;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
}

.shop-dropdown .mega-column ul {
  gap: 12px;
  flex: 1;
}

.shop-dropdown .mega-column ul li a {
  display: block;
  padding: 8px 0;
  color: #666;
  font-size: 14px;
  transition: all 0.2s ease;
}

/* HOVER EFFECTS */
.shop-dropdown .mega-column:hover {
  background: #fafafa;
  transform: translateY(-2px);
}

.shop-dropdown .mega-column:hover img {
  transform: scale(1.05);
}

.shop-dropdown .mega-column:hover h4 {
  color: #9f0d0d;
}

.shop-dropdown .mega-column ul li:hover a {
  color: #9f0d0d;
}

/*==================================================
MOBILE OFFCANVAS
==================================================*/
.mobile-nav-toggle {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: none;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  color: #222222;
  font-size: 18px;
  background: #f7f7f7;
  cursor: pointer;
  transition: 0.35s ease;
}
.mobile-nav-toggle:hover {
  color: #fff;
  background: #9f0d0d;
}

.mobile-offcanvas-backdrop {
  position: fixed;
  z-index: 9998;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-offcanvas-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-offcanvas {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  width: min(92vw, 360px);
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-offcanvas.is-open {
  transform: translateX(0);
}

.mobile-offcanvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #ececec;
}

.mobile-logo {
  display: flex;
  align-items: center;
}
.mobile-logo img {
  width: 170px;
  height: auto;
  display: block;
  object-fit: contain;
}

.mobile-offcanvas-close {
  margin-bottom: 45px;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #222;
  background: #f5f5f5;
  cursor: pointer;
  transition: 0.3s;
}
.mobile-offcanvas-close i {
  font-size: 18px;
}
.mobile-offcanvas-close:hover {
  color: #fff;
  background: #9f0d0d;
}

.mobile-offcanvas-body {
  padding: 14px 16px 24px;
  overflow-y: auto;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-list a,
.mobile-nav-toggle-item {
  border-radius: 14px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 11px 14px;
  color: #222222;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: 0.1px;
  gap: 14px;
  background: #fff;
  transition: all 0.2s ease;
}

.mobile-nav-list > li > a {
  justify-content: flex-start;
}

.mobile-nav-toggle-item {
  justify-content: space-between;
}

.mobile-nav-list a:hover,
.mobile-nav-toggle-item:hover {
  color: #9f0d0d;
  background: #fff8ec;
}

/* the label group inside the toggle button (icon + text together) */
.mobile-nav-toggle-item > span {
  display: flex;
  align-items: center;
  color: inherit;
  font-weight: 600;
  font-size: 17px;
  gap: 14px;
}

/* the plain <span> that just holds the text next to a sibling icon */
.mobile-nav-list a > span {
  color: inherit;
  font-weight: 600;
  font-size: 17px;
}

/* ICON BUBBLE — the leading icon, whether it's a direct sibling of the text (pattern 1)
or sits inside the label span in front of the text (pattern 2) */
.mobile-nav-list a > i,
.mobile-nav-toggle-item > span > i {
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  color: #d6a646;
  font-size: 16px;
  background: #fff8ec;
  transition: 0.35s ease;
}

.mobile-nav-list a:hover > i,
.mobile-nav-toggle-item:hover > span > i {
  color: #fff;
  background: #9f0d0d;
}

/* TRAILING CHEVRON — sits directly inside the button, after the label span. Never gets the circle. */
.mobile-nav-toggle-item > i {
  flex-shrink: 0;
  color: #999;
  font-size: 13px;
  transition: 0.35s ease;
}

.mobile-nav-item.has-children.open > .mobile-nav-toggle-item > i {
  color: #9f0d0d;
  transform: rotate(90deg);
}

.mobile-nav-item.has-children .mobile-submenu {
  padding-left: 26px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.25s ease;
}

.mobile-nav-item.has-children.open .mobile-submenu {
  padding-top: 6px;
  padding-bottom: 4px;
  max-height: 220px;
  opacity: 1;
}

.mobile-submenu li a {
  border-radius: 10px;
  display: block;
  padding: 9px 14px;
  color: #666666;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 15px;
}

.mobile-submenu li a:hover {
  padding-left: 18px;
  color: #9f0d0d;
  background: #fff8ec;
}

/*==================================================
RESPONSIVE FIXES (header / navbar / footer)
==================================================*/
@media (max-width: 1200px) {
  .header .container {
    gap: 20px;
  }
  .search-wrapper {
    width: 540px;
  }
  .header-right {
    gap: 20px;
  }
  .call-box h4 {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  /* Sub header / top bar & desktop-only header widgets are fully hidden on mobile */
  .top-bar,
  .header-right,
  .call-box,
  .header-icon,
  .top-left,
  .top-right {
    display: none;
  }
  /* Header is fixed to the top of the viewport on mobile so it stays
  visible while scrolling. Actual pixel height varies with content, so we
  don't hardcode it here — main.js measures the real height and sets it
  as a CSS variable (--mobile-header-h) on :root, which the spacer rule
  below uses. */
  .header {
    position: fixed;
    z-index: 9997;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }
  /* Spacer so page content doesn't sit underneath the now-fixed header.
  --mobile-header-h is set by main.js (falls back to 130px if JS hasn't
  run yet, which is roughly the header's natural height on mobile). */
  body {
    padding-top: var(--mobile-header-h, 130px);
  }
  .header .container {
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 12px;
    row-gap: 12px;
  }
  /* Logo stays left */
  .logo {
    width: 150px;
    display: flex;
    justify-content: flex-start;
    order: 1;
  }
  /* Toggle button sits to the right of the logo */
  .mobile-nav-toggle {
    margin: 0 0 0 auto;
    display: flex;
    order: 2;
  }
  /* Search bar drops to its own full-width row below */
  .search-wrapper {
    border-radius: 18px;
    width: 100%;
    height: 54px;
    order: 3;
    flex-basis: 100%;
  }
  /* Hide the whole navbar wrapper on mobile — its children (menu-category,
  nav-links) are already hidden below, so the empty bordered container was
  collapsing to an almost-zero-height box and showing up as a stray
  horizontal line. Mobile navigation is handled by the offcanvas menu. */
  .navbar {
    display: none;
  }
  .navbar .container {
    position: relative;
    padding: 0;
    overflow: visible;
  }
  .menu-category {
    width: 100%;
    display: none;
  }
  .nav-links {
    display: none;
  }
  .categories-dropdown-panel {
    display: none;
  }
  .shop-dropdown .mega-menu,
  .mega-menu {
    display: none;
  }
}
@media (max-width: 768px) {
  .search-wrapper {
    border-radius: 16px;
    height: auto;
    flex-direction: column;
    overflow: hidden;
  }
  .category-dropdown {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #ededed;
  }
  .category-btn {
    justify-content: center;
  }
  .search-box {
    width: 100%;
    height: 54px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-col h3 {
    position: relative;
    cursor: pointer;
  }
  .footer-col h3::after {
    position: absolute;
    top: 50%;
    right: 0;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f107";
    transform: translateY(-50%);
    transition: 0.35s ease;
  }
  .footer-col ul,
  .footer-col p,
  .footer-newsletter form,
  .footer-social,
  .footer-contact {
    display: none;
  }
  .footer-col.open ul,
  .footer-col.open p,
  .footer-col.open form,
  .footer-col.open .footer-social,
  .footer-col.open .footer-contact {
    display: block;
  }
  .footer-col.open h3::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .footer-payment {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .container {
    max-width: 94%;
  }
  .logo {
    width: 130px;
  }
  .search-box input {
    padding: 0 16px;
    font-size: 14px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form button {
    width: 100%;
  }
  .mobile-offcanvas {
    width: min(90vw, 340px);
  }
}
@media (max-width: 480px) {
  .search-wrapper {
    padding: 0;
  }
  .search-box button {
    width: 44px;
    height: 44px;
  }
  .logo {
    width: 120px;
  }
}
@media (max-width: 360px) {
  .search-box input {
    font-size: 13px;
  }
  .mobile-nav-list a,
  .mobile-nav-toggle-item {
    padding: 10px 12px;
    font-size: 16px;
  }
  .mobile-nav-list a span i,
  .mobile-nav-toggle-item span i {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
}
/*====================================================
FOOTER
====================================================*/
.footer {
  margin-top: 0;
  padding: 70px 0 0;
  color: #d6d6d6;
  /* This margin-top used to stack on top of the hero's own bottom padding,
  producing a large empty white block between the hero and the footer.
  The footer's own top padding already provides enough visual breathing
  room, so the extra margin is removed. */
  background: #111;
}

.footer .container {
  margin: 0 auto;
  width: 1320px;
  max-width: 95%;
}

/*====================================================
TOP
====================================================*/
.footer-top {
  display: grid;
  padding-bottom: 55px;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/*====================================================
LOGO
====================================================*/
.footer-logo {
  margin-bottom: 25px;
  width: 180px;
}

.footer-about p {
  margin-bottom: 30px;
  color: #b8b8b8;
  font-size: 15px;
  line-height: 1.9;
}

/*====================================================
CONTACT
====================================================*/
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-contact i {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  color: #d6a646;
  font-size: 18px;
  background: #1b1b1b;
  transition: 0.35s;
}

.footer-contact span {
  color: #d5d5d5;
  font-size: 15px;
  line-height: 1.8;
}

.footer-contact div:hover i {
  border-color: #9f0d0d;
  color: #fff;
  background: #9f0d0d;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(159, 13, 13, 0.35);
}

/*====================================================
COLUMN
====================================================*/
.footer-col h3 {
  position: relative;
  margin-bottom: 28px;
  padding-bottom: 12px;
  color: #fff;
  font-size: 22px;
}

.footer-col h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 20px;
  width: 42px;
  height: 3px;
  content: "";
  background: #b40f0f;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 16px;
}

.footer-col a {
  color: #cfcfcf;
  transition: 0.3s;
}

.footer-col a:hover {
  padding-left: 6px;
  color: #fff;
}

/*====================================================
NEWSLETTER
====================================================*/
.footer-newsletter p {
  margin-bottom: 25px;
  color: #b8b8b8;
  line-height: 1.8;
}

.newsletter-form {
  margin-bottom: 30px;
  height: 48px;
  display: flex;
}

.newsletter-form input {
  border-radius: 6px 0 0 6px;
  padding: 0 18px;
  color: #fff;
  flex: 1;
  background: #1c1c1c;
}

.newsletter-form input::placeholder {
  color: #888;
}

.newsletter-form button {
  border-radius: 0 6px 6px 0;
  padding: 0 24px;
  color: #fff;
  font-weight: 600;
  background: #b40f0f;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: #910b0b;
}

/*====================================================
SOCIAL
====================================================*/
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  background: #1d1d1d;
  transition: 0.35s;
}

.footer-social a:hover {
  background: #b40f0f;
  transform: translateY(-4px);
}

/*====================================================
BOTTOM
====================================================*/
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  color: #bdbdbd;
  font-size: 14px;
}

.footer-bottom strong {
  color: #fff;
}

.footer-bottom a {
  color: #fff;
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: #b40f0f;
}

@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding-top: 55px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-col h3 {
    cursor: default;
  }
  .footer-col h3::after {
    display: none;
  }
  .footer-col ul,
  .footer-col p,
  .footer-newsletter p,
  .footer-newsletter form,
  .footer-social,
  .footer-contact {
    display: block !important;
    opacity: 1 !important;
    max-height: none !important;
    visibility: visible !important;
  }
  .footer-contact {
    display: flex !important;
  }
  .footer-social {
    display: flex !important;
    justify-content: flex-start;
  }
  .newsletter-form {
    height: auto;
    flex-direction: column;
    gap: 12px;
  }
  .newsletter-form input {
    border-radius: 6px;
    height: 48px;
  }
  .newsletter-form button {
    border-radius: 6px;
    height: 48px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .footer-logo {
    width: 150px;
  }
  .footer-col h3 {
    font-size: 20px;
  }
  .footer-about p,
  .footer-contact span,
  .footer-newsletter p,
  .footer-col a {
    font-weight: 500;
    font-size: 16px;
  }
}

/*# sourceMappingURL=main.css.map */
