/* ===================================================================
   MANISH JEWELLERS — Luxury Navbar
   Clean & Optimized
=================================================================== */

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

input {
  font-family: inherit;
  border: none;
  outline: none;
}

svg {
  display: block;
  flex-shrink: 0;
}

img {
  max-width: 100%;
  display: block;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: #00254e;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

:focus-visible {
  outline: 2px solid #c9a227;
  outline-offset: 2px;
  border-radius: 4px;
}

[hidden] {
  display: none !important;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== ICONS ===== */
.icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.icon--chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

/* ===== SITE HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #ffffff;
  border-bottom: 1px solid #efefef;
}

/* ===== MAIN HEADER ===== */
.header-main {
  background: #ffffff;
  height: 74px;
  display: flex;
  align-items: center;
}

.header-main__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  height: 100%;
  padding: 0 24px;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo__emblem {
  width: 34px;
  height: 34px;
  color: #00254e;
  transition: color 0.3s ease;
}

.logo:hover .logo__emblem {
  color: #c9a227;
}

.logo__text {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #00254e;
  line-height: 1;
}

.logo__highlight {
  font-weight: 600;
  color: #00254e;
}

/* ===== DELIVERY BOX ===== */
.delivery-box {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 260px;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.3s ease;
  flex-shrink: 0;
}

.delivery-box:hover {
  border-color: #c9a227;
}

.delivery-box__icon {
  width: 20px;
  height: 20px;
  color: #00254e;
  flex-shrink: 0;
}

.delivery-box__content {
  flex: 1;
  min-width: 0;
}

.delivery-box__title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.2;
}

.delivery-box__subtitle {
  display: block;
  font-size: 12px;
  color: #666666;
  line-height: 1.2;
}

.delivery-box__arrow {
  width: 16px;
  height: 16px;
  color: #666666;
  flex-shrink: 0;
}

/* ===== SEARCH BAR ===== */
.search-bar {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 48px;
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  background: #ffffff;
  transition: all 0.3s ease;
  overflow: hidden;
}

.search-bar:focus-within {
  border-color: #00254e;
  box-shadow: 0 0 0 3px rgba(0, 37, 78, 0.08);
}

.search-bar input {
  flex: 1;
  height: 100%;
  padding: 0 16px 0 20px;
  font-size: 16px;
  font-weight: 400;
  color: #1a1a1a;
  background: transparent;
  min-width: 0;
}

.search-bar input::placeholder {
  color: #999999;
  font-weight: 400;
}

.search-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: transparent;
  transition: background 0.3s ease;
  border-radius: 0 8px 8px 0;
}

.search-bar__btn:hover {
  background: #f5f5f5;
}

.search-bar__btn .icon {
  width: 22px;
  height: 22px;
  color: #666666;
  transition: color 0.3s ease;
}

.search-bar__btn:hover .icon {
  color: #00254e;
}

/* ===== HEADER ACTIONS ===== */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

/* ===== SOCIAL ACTIONS - Desktop Only ===== */
.header-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  transition: all 0.3s ease;
  border-radius: 4px;
  color: #1a1a1a;
  position: relative;
  min-width: 56px;
}

.header-action:hover {
  color: #c9a227;
  transform: translateY(-2px);
  background: #f5f5f5;
}

.header-action .icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.header-action__label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666666;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.header-action:hover .header-action__label {
  color: #c9a227;
}

/* Desktop Only - Hidden on mobile */
.desktop-only {
  display: flex;
}

/* ===== CART ===== */
.header-action--cart {
  position: relative;
}

.header-action__icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-action__badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 50%;
  background: #c9a227;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  padding: 8px;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.hamburger:hover {
  background: #f5f5f5;
}

.hamburger__line {
  width: 22px;
  height: 2px;
  background: #00254e;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== CATEGORY NAV ===== */
.category-nav {
  height: 46px;
  background: #00254e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
}

.category-nav .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.category-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  height: 100%;
}

.category-nav__list > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.category-nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  padding: 0 4px;
  height: 100%;
  transition: color 0.3s ease;
  position: relative;
}

.category-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #c9a227;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.category-nav__link:hover,
.category-nav__link[aria-expanded="true"] {
  color: #c9a227;
}

.category-nav__link:hover::after,
.category-nav__link[aria-expanded="true"]::after {
  transform: scaleX(1);
}

.category-nav__link .icon--chevron {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== DROPDOWN PANELS ===== */
.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-top: 2px solid #c9a227;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  z-index: 1000;
  animation: dropIn 0.3s ease;
  max-height: 400px;
  overflow-y: auto;
}

.dropdown-panel--mega {
  min-width: 700px;
  max-width: 900px;
  width: max-content;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  left: 50%;
  transform: translateX(-50%);
}

/* For dropdowns that appear near the right edge */
.category-nav__list > li:last-child .dropdown-panel,
.category-nav__list > li:nth-last-child(2) .dropdown-panel {
  left: auto;
  right: 0;
  transform: none;
}

.category-nav__list > li:last-child .dropdown-panel--mega,
.category-nav__list > li:nth-last-child(2) .dropdown-panel--mega {
  left: auto;
  right: 0;
  transform: none;
}

/* For dropdowns that appear near the left edge */
.category-nav__list > li:first-child .dropdown-panel {
  left: 0;
  transform: none;
}

.category-nav__list > li:first-child .dropdown-panel--mega {
  left: 0;
  transform: none;
}

.dropdown-panel__col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  color: #00254e;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e5e5;
}

.dropdown-panel a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: #666666;
  transition: all 0.3s ease;
}

.dropdown-panel a:hover {
  color: #c9a227;
  padding-left: 8px;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Fix for mega dropdown animation */
.dropdown-panel--mega {
  animation: dropInMega 0.3s ease;
}

@keyframes dropInMega {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Fix for right-aligned dropdown animation */
.category-nav__list > li:last-child .dropdown-panel,
.category-nav__list > li:nth-last-child(2) .dropdown-panel {
  animation: dropInRight 0.3s ease;
}

@keyframes dropInRight {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fix for left-aligned dropdown animation */
.category-nav__list > li:first-child .dropdown-panel {
  animation: dropInLeft 0.3s ease;
}

@keyframes dropInLeft {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MOBILE SEARCH DRAWER ===== */
.mobile-search {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 12px 16px;
  border-bottom: 1px solid #efefef;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  z-index: 50;
}

.mobile-search__form {
  display: flex;
  align-items: center;
  height: 44px;
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.mobile-search__form input {
  flex: 1;
  height: 100%;
  padding: 0 16px;
  font-size: 15px;
  background: transparent;
}

.mobile-search__form button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: transparent;
}

.mobile-search__form button .icon {
  width: 20px;
  height: 20px;
  color: #666666;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(320px, 85vw);
  background: #ffffff;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #efefef;
  background: #00254e;
}

.mobile-menu__brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 1px;
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #ffffff;
  transition: background 0.3s ease;
}

.mobile-menu__close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu__close .icon {
  width: 24px;
  height: 24px;
}

/* ===== MOBILE MENU SEARCH ===== */
.mobile-menu__search {
  padding: 12px 20px;
  border-bottom: 1px solid #efefef;
}

.mobile-menu__search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #f9f9f9;
  transition: border-color 0.3s ease;
}

.mobile-menu__search-form:focus-within {
  border-color: #00254e;
  background: #ffffff;
}

.mobile-menu__search-form .icon {
  width: 20px;
  height: 20px;
  color: #999999;
  flex-shrink: 0;
}

.mobile-menu__search-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 6px 0;
  font-size: 15px;
  color: #1a1a1a;
}

.mobile-menu__search-form input::placeholder {
  color: #999999;
}

.mobile-menu__search-form input:focus {
  outline: none;
}

/* ===== MOBILE MENU LIST ===== */
.mobile-menu__list {
  padding: 8px 0;
  flex: 1;
}

.mobile-menu__list > li {
  border-bottom: 1px solid #f5f5f5;
}

.mobile-menu__list a,
.mobile-menu__list > li.has-dropdown > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  text-align: left;
  transition: background 0.3s ease;
}

.mobile-menu__list a:hover,
.mobile-menu__list > li.has-dropdown > button:hover {
  background: #f5f5f5;
}

.mobile-menu__list .dropdown-panel {
  position: static;
  transform: none;
  border: none;
  border-top: none;
  box-shadow: none;
  background: #f9f9f9;
  padding: 4px 0 8px 32px;
  border-radius: 0;
  animation: none;
  min-width: auto;
}

.mobile-menu__list .dropdown-panel a {
  padding: 8px 0;
  font-size: 14px;
  font-weight: 400;
}

.mobile-menu__list .has-dropdown > button[aria-expanded="true"] .icon--chevron {
  transform: rotate(180deg);
}

/* ===== MOBILE MENU FOOTER - ONLY SOCIAL ICONS ===== */
.mobile-menu__footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #efefef;
  background: #fafafa;
}

.mobile-menu__footer .mobile-social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 8px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  color: #666666;
  border-right: 1px solid #efefef;
  transition: all 0.3s ease;
  cursor: pointer;
}

.mobile-menu__footer .mobile-social-link:last-child {
  border-right: none;
}

.mobile-menu__footer .mobile-social-link:hover {
  background: #f0f0f0;
  color: #c9a227;
}

.mobile-menu__footer .icon {
  width: 22px;
  height: 22px;
  color: #00254e;
}

.mobile-menu__footer .mobile-social-link:hover .icon {
  color: #c9a227;
}

/* ===== SEARCH TOGGLE BUTTON ===== */
.search-toggle-btn {
  display: none;
}

/* ===== RESPONSIVE ===== */

/* Desktop */
@media (min-width: 1024px) {
  .desktop-only {
    display: flex !important;
  }
  
  .hamburger {
    display: none !important;
  }
}

/* Tablet */
@media (max-width: 1023px) {
  .header-main {
    height: auto;
    min-height: 64px;
  }

  .header-main__inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 12px 16px;
    height: auto;
  }

  .hamburger {
    display: flex;
  }

  .logo {
    justify-content: center;
    text-align: center;
  }

  .logo__text {
    font-size: 31px;
    text-align: center;
  }

  .logo__emblem {
    width: 28px;
    height: 28px;
  }

  .search-bar {
    display: none;
  }

  .delivery-box {
    display: none;
  }

  .desktop-only {
    display: none !important;
  }

  .header-action {
    min-width: 40px;
    padding: 4px 6px;
  }

  .header-action .icon {
    width: 20px;
    height: 20px;
  }

  .header-action__label {
    font-size: 10px;
  }

 .search-toggle-btn {
  display: none !important;
}

  .search-toggle-btn:hover {
    background: #f5f5f5;
  }

  .search-toggle-btn .icon {
    width: 22px;
    height: 22px;
  }

  .category-nav {
    height: auto;
    min-height: 44px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .category-nav::-webkit-scrollbar {
    display: none;
  }

  .category-nav .container {
    justify-content: flex-start;
    padding: 0 16px;
  }

  .category-nav__list {
    gap: 24px;
    flex-wrap: nowrap;
  }

  .category-nav__link {
    font-size: 14px;
    white-space: nowrap;
    padding: 8px 0;
  }

  .category-nav__link::after {
    display: none;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .header-main {
    height: 64px;
    min-height: 64px;
  }

  .header-main__inner {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    padding: 8px 12px;
    height: 64px;
  }

  .hamburger {
    display: flex;
    width: 36px;
    height: 36px;
    padding: 6px;
  }

  .hamburger__line {
    width: 20px;
  }

  .logo__emblem {
    width: 24px;
    height: 24px;
  }

  .logo__text {
    font-size: 30px;
    letter-spacing: 0.5px;
  }

  .header-action {
    min-width: 32px;
    padding: 2px 4px;
  }

  .header-action .icon {
    width: 18px;
    height: 18px;
  }

  .header-action__label {
    font-size: 9px;
    letter-spacing: 0.2px;
  }

  .header-action__badge {
    min-width: 16px;
    height: 16px;
    font-size: 10px;
    top: -5px;
    right: -6px;
  }

  .search-toggle-btn {
    width: 36px;
    height: 36px;
  }

  .search-toggle-btn .icon {
    width: 20px;
    height: 20px;
  }

  .category-nav {
    display: none !important;
  }

  .mobile-menu__brand {
    font-size: 18px;
  }

  .mobile-menu__search {
    padding: 10px 16px;
  }

  .mobile-menu__search-form {
    padding: 6px 12px;
  }

  .mobile-menu__search-form input {
    font-size: 14px;
  }

  .mobile-menu__footer {
    grid-template-columns: repeat(3, 1fr);
  }

  .mobile-menu__footer .mobile-social-link {
    font-size: 10px;
    padding: 12px 6px;
  }

  .mobile-menu__footer .icon {
    width: 20px;
    height: 20px;
  }
}

/* Small Mobile */
@media (max-width: 419px) {
  .logo__emblem {
    width: 20px;
    height: 20px;
  }

  .logo__text {
    font-size: 17px;
  }

  .header-main__inner {
    gap: 6px;
    padding: 6px 10px;
  }

  .hamburger {
    width: 32px;
    height: 32px;
    padding: 5px;
  }

  .hamburger__line {
    width: 18px;
  }

  .header-action {
    min-width: 28px;
    padding: 2px 3px;
  }

  .header-action .icon {
    width: 16px;
    height: 16px;
  }

  .header-action__label {
    font-size: 8px;
  }

  .header-action__badge {
    min-width: 14px;
    height: 14px;
    font-size: 9px;
    top: -4px;
    right: -5px;
  }

  .mobile-menu__brand {
    font-size: 16px;
  }

  .mobile-menu__search-form input {
    font-size: 13px;
  }

  .mobile-menu__footer .mobile-social-link {
    font-size: 9px;
    padding: 10px 4px;
  }

  .mobile-menu__footer .icon {
    width: 18px;
    height: 18px;
  }
}

/* ===== UTILITY ===== */
.has-dropdown > button[aria-expanded="true"] .icon--chevron {
  transform: rotate(180deg);
}

/* ================================================================ */
/* NEW CATEGORY SLIDER - COMPLETE WORKING SOLUTION                 */
/* ================================================================ */

/* ===== HEADING ===== */
.cat-slider__header {
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}

.cat-slider__title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: #082A66;
  margin: 0;
  letter-spacing: 1px;
}

.cat-slider__highlight {
  background: linear-gradient(135deg, #4a90d9, #7ab8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== SECTION ===== */
.cat-slider {
  width: 100%;
  padding: 16px 0 24px 0;
  background: #ffffff;
  position: relative;
  overflow: visible;
}

.cat-slider__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  overflow: visible;
}

/* ===== WRAPPER ===== */
.cat-slider__wrapper {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  position: relative;
  overflow: visible;
}

/* ===== TRACK WRAPPER ===== */
.cat-slider__track-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  margin: 0 8px;
  padding: 10px 0;
}

.cat-slider__track {
  display: flex;
  gap: 14px;
  align-items: center;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  padding: 4px 0;
}

/* ===== ITEMS ===== */
.cat-slider__item {
  flex: 0 0 130px;
  width: 130px;
  padding: 4px 0;
}

/* ===== CARD ===== */
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #00254e;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cat-card:hover {
  transform: translateY(-4px);
}

.cat-card__image-wrapper {
  width: 110px;
  height: 110px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, #faf0f2, #f5e8ea);
  flex-shrink: 0;
  border: 1.5px solid #ffe4e9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cat-card:hover .cat-card__image-wrapper {
  transform: scale(1.04);
  box-shadow: 0 6px 25px rgba(0, 37, 78, 0.1);
  border-color: #ffb6c1;
}

.cat-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.cat-card:hover .cat-card__image {
  transform: scale(1.05);
}

.cat-card__name {
  margin-top: 10px;
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #00254e;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 110px;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.cat-card:hover .cat-card__name {
  color: #667c95;
}

/* ===== ARROWS ===== */
.cat-slider__arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #ffe4e9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 10;
  transition: all 0.3s ease;
}

.cat-slider__arrow:hover {
  background: #faf0f2;
  border-color: #ffb6c1;
  transform: scale(1.05);
}

.cat-slider__arrow svg {
  width: 18px;
  height: 18px;
  stroke: #00254e;
}

.cat-slider__arrow--left {
  margin-right: 4px;
}

.cat-slider__arrow--right {
  margin-left: 4px;
}

/* ================================================================ */
/* MOBILE - FORCE HORIZONTAL SCROLL                                */
/* ================================================================ */

@media (max-width: 768px) {
  /* Container */
  .cat-slider__container {
    padding: 0 8px !important;
    display: block !important;
    overflow: visible !important;
    max-width: 100% !important;
  }
  
  /* Wrapper */
  .cat-slider__wrapper {
    display: block !important;
    width: 100% !important;
    overflow: visible !important;
  }
  
  /* HIDE ARROWS */
  .cat-slider__arrow,
  .cat-slider__arrow--left,
  .cat-slider__arrow--right {
    display: none !important;
  }
  
  /* TRACK WRAPPER - ENABLE SCROLL */
  .cat-slider__track-wrapper {
    margin: 0 !important;
    padding: 8px 4px 12px 4px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    -webkit-scroll-snap-type: x mandatory !important;
    display: block !important;
    width: 100% !important;
    flex: none !important;
  }
  
  /* HIDE SCROLLBAR */
  .cat-slider__track-wrapper::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }
  
  /* TRACK - FLEX ROW */
  .cat-slider__track {
    display: flex !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    gap: 12px !important;
    transform: none !important;
    transition: none !important;
    padding: 2px 0 !important;
    width: auto !important;
    min-width: 100% !important;
    overflow: visible !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }
  
  /* ITEMS - FIXED WIDTH */
  .cat-slider__item {
    flex: 0 0 85px !important;
    width: 85px !important;
    min-width: 85px !important;
    max-width: 85px !important;
    scroll-snap-align: start !important;
    padding: 2px 4px !important;
    display: flex !important;
    justify-content: center !important;
  }
  
  /* IMAGES */
  .cat-card__image-wrapper {
    width: 72px !important;
    height: 72px !important;
    max-width: 72px !important;
    min-width: 72px !important;
    border-radius: 16px !important;
    border-width: 1px !important;
    margin: 0 auto !important;
  }
  
  .cat-card__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  
  /* TEXT */
  .cat-card__name {
    width: 72px !important;
    max-width: 72px !important;
    min-width: 72px !important;
    font-size: 11px !important;
    margin-top: 6px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    text-align: center !important;
  }
  
  /* HEADING */
  .cat-slider__header {
    margin-bottom: 20px !important;
  }
  
  .cat-slider__title {
    font-size: 28px !important;
  }
  
  /* DISABLE HOVER */
  .cat-card:hover,
  .cat-card:hover .cat-card__image-wrapper,
  .cat-card:hover .cat-card__image {
    transform: none !important;
    box-shadow: none !important;
  }
}

@media (max-width: 576px) {
  .cat-slider__container {
    padding: 0 6px !important;
  }
  
  .cat-slider__track-wrapper {
    padding: 6px 2px 10px 2px !important;
  }
  
  .cat-slider__track {
    gap: 10px !important;
  }
  
  .cat-slider__item {
    flex: 0 0 75px !important;
    width: 75px !important;
    min-width: 75px !important;
    max-width: 75px !important;
  }
  
  .cat-card__image-wrapper {
    width: 64px !important;
    height: 64px !important;
    max-width: 64px !important;
    min-width: 64px !important;
    border-radius: 14px !important;
  }
  
  .cat-card__name {
    width: 64px !important;
    max-width: 64px !important;
    min-width: 64px !important;
    font-size: 10px !important;
    margin-top: 5px !important;
  }
  
  .cat-slider__title {
    font-size: 24px !important;
  }
}

@media (max-width: 379px) {
  .cat-slider__track-wrapper {
    padding: 4px 2px 8px 2px !important;
  }
  
  .cat-slider__track {
    gap: 8px !important;
  }
  
  .cat-slider__item {
    flex: 0 0 65px !important;
    width: 65px !important;
    min-width: 65px !important;
    max-width: 65px !important;
  }
  
  .cat-card__image-wrapper {
    width: 55px !important;
    height: 55px !important;
    max-width: 55px !important;
    min-width: 55px !important;
    border-radius: 12px !important;
  }
  
  .cat-card__name {
    width: 55px !important;
    max-width: 55px !important;
    min-width: 55px !important;
    font-size: 9px !important;
    margin-top: 4px !important;
  }
  
  .cat-slider__title {
    font-size: 20px !important;
  }
}
/* ============================================================
   BESTSELLER SECTION - Light Blue Theme
   Matching Manish Jewellers Brand
   ============================================================ */

.bestseller-section {
  width: 100%;
  padding: 60px 20px 70px;
  background:linear-gradient(135deg, #F8F5F0, #EFE6D8);
  position: relative;
}

.bestseller-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(74, 144, 217, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.bestseller-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== SECTION HEADER ===== */
.bestseller-header {
  text-align: center;
  margin-bottom: 40px;
}

.bestseller-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: #1a2a6c;
  margin: 0 0 8px 0;
  position: relative;
  display: inline-block;
}

.bestseller-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4a90d9, #7ab8f0);
  border-radius: 2px;
}

.bestseller-subtitle {
  font-size: 16px;
  color: #3a5a7a;
  margin: 16px 0 0 0;
  font-weight: 400;
}

/* ===== PRODUCTS GRID ===== */
.bestseller-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px 18px 24px;
  border: 1px solid rgba(74, 144, 217, 0.08);
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 2px 12px rgba(26, 42, 108, 0.04);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 35px rgba(26, 42, 108, 0.10);
  border-color: rgba(74, 144, 217, 0.15);
  background: rgba(255, 255, 255, 0.98);
}

.product-badge {
  display: inline-block;
  background: linear-gradient(135deg, #4a90d9, #7ab8f0);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 12px;
  border-radius: 20px;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(74, 144, 217, 0.2);
}

.product-image {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 14px;
  background: #f0f4fa;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* ===== PRODUCT RATING ===== */
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.stars {
  color: #f5a623;
  font-size: 14px;
  letter-spacing: 1px;
}

.rating-text {
  font-size: 13px;
  color: #5a7a9a;
  font-weight: 500;
}

/* ===== PRODUCT NAME ===== */
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: #1a2a6c;
  margin: 0 0 10px 0;
  line-height: 1.3;
  min-height: 42px;
}

/* ===== PRODUCT PRICE ===== */
.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.price-current {
  font-size: 18px;
  font-weight: 700;
  color: #1a2a6c;
}

.price-original {
  font-size: 14px;
  color: #8a9bb0;
  text-decoration: line-through;
}

.price-drop {
  font-size: 11px;
  font-weight: 700;
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.08);
  padding: 2px 10px;
  border-radius: 12px;
  letter-spacing: 0.3px;
}

/* ===== PRODUCT BUTTON ===== */
.product-btn {
  width: 100%;
  padding: 10px 0;
  background: linear-gradient(135deg, #4a90d9, #2d5a9e);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(74, 144, 217, 0.15);
}

.product-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(74, 144, 217, 0.25);
  background: linear-gradient(135deg, #5ba0e8, #3a7abd);
}

/* ===== VIEW MORE BUTTON ===== */
.bestseller-viewmore {
  text-align: center;
}

.viewmore-btn {
  display: inline-block;
  padding: 12px 45px;
  background: transparent;
  color: #1a2a6c;
  border: 2px solid #4a90d9;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.viewmore-btn:hover {
  background: linear-gradient(135deg, #4a90d9, #2d5a9e);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(74, 144, 217, 0.2);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .bestseller-section {
    padding: 50px 16px 60px;
  }

  .bestseller-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .bestseller-title {
    font-size: 32px;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  .bestseller-section {
    padding: 40px 14px 50px;
  }

  .bestseller-header {
    margin-bottom: 30px;
  }

  .bestseller-title {
    font-size: 28px;
  }

  .bestseller-subtitle {
    font-size: 14px;
  }

  .bestseller-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .product-card {
    padding: 14px 12px 18px;
    border-radius: 12px;
  }

  .product-badge {
    font-size: 9px;
    padding: 2px 10px;
    top: 8px;
    left: 8px;
  }

  .product-name {
    font-size: 14px;
    min-height: 36px;
  }

  .price-current {
    font-size: 16px;
  }

  .price-original {
    font-size: 12px;
  }

  .price-drop {
    font-size: 10px;
  }

  .product-btn {
    font-size: 13px;
    padding: 8px 0;
  }

  .viewmore-btn {
    padding: 10px 35px;
    font-size: 14px;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .bestseller-section {
    padding: 30px 10px 40px;
  }

  .bestseller-title {
    font-size: 24px;
  }

  .bestseller-subtitle {
    font-size: 13px;
  }

  .bestseller-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .product-card {
    padding: 10px 8px 14px;
    border-radius: 10px;
  }

  .product-badge {
    font-size: 8px;
    padding: 2px 8px;
    top: 6px;
    left: 6px;
  }

  .product-rating {
    gap: 4px;
    margin-bottom: 6px;
  }

  .stars {
    font-size: 11px;
  }

  .rating-text {
    font-size: 10px;
  }

  .product-name {
    font-size: 12px;
    min-height: 30px;
    margin-bottom: 6px;
  }

  .product-price {
    gap: 6px;
    margin-bottom: 10px;
  }

  .price-current {
    font-size: 14px;
  }

  .price-original {
    font-size: 11px;
  }

  .price-drop {
    font-size: 8px;
    padding: 1px 6px;
  }

  .product-btn {
    font-size: 11px;
    padding: 6px 0;
    border-radius: 8px;
  }

  .viewmore-btn {
    padding: 8px 28px;
    font-size: 12px;
  }
}

/* Extra Small */
@media (max-width: 380px) {
  .bestseller-grid {
    gap: 10px;
  }

  .product-card {
    padding: 8px 6px 12px;
  }

  .product-name {
    font-size: 11px;
    min-height: 26px;
  }

  .price-current {
    font-size: 12px;
  }

  .price-original {
    font-size: 10px;
  }

  .product-btn {
    font-size: 10px;
    padding: 5px 0;
  }

  .stars {
    font-size: 10px;
  }

  .rating-text {
    font-size: 9px;
  }
}
/* ============================================================
  
/* ============================================================
   FOOTER - Premium Dark Blue Theme with White Text
   Matching Manish Jewellers Brand
   ============================================================ */

.site-footer {
  background: linear-gradient(160deg, #0a1628 0%, #0f2040 30%, #162a4e 60%, #0f2040 100%);
  color: #ffffff;
  padding: 60px 20px 0;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, #2d5a9e, #4a90d9, #7ab8f0, #4a90d9, #2d5a9e) 1;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(74, 144, 217, 0.04) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(26, 42, 108, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== FOOTER TOP ===== */
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== BRAND COLUMN ===== */
.footer-col--brand {
  padding-right: 20px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo__text {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 1px;
}

.footer-logo__highlight {
  font-weight: 600;
  color: #7ab8f0;
}

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 20px;
  max-width: 320px;
  opacity: 0.9;
}

/* ===== SOCIAL ICONS ===== */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: rgba(74, 144, 217, 0.25);
  transform: translateY(-3px);
  border-color: rgba(74, 144, 217, 0.4);
  box-shadow: 0 4px 15px rgba(74, 144, 217, 0.2);
}

.footer-social-link:hover svg {
  color: #7ab8f0;
}

/* ===== FOOTER COLUMNS ===== */
.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #4a90d9, #7ab8f0);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  opacity: 0.85;
}

.footer-links a::before {
  content: '›';
  position: absolute;
  left: -12px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #7ab8f0;
  font-size: 16px;
}

.footer-links a:hover {
  color: #7ab8f0;
  padding-left: 16px;
  opacity: 1;
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

/* ===== CONTACT LINKS ===== */
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 14px;
  opacity: 0.85;
}

.footer-contact li svg {
  width: 18px;
  height: 18px;
  color: #7ab8f0;
  flex-shrink: 0;
}

.footer-contact li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: #7ab8f0;
}

.footer-contact li span {
  color: #ffffff;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  padding: 24px 0 20px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 13px;
  color: #ffffff;
  margin: 0;
  opacity: 0.7;
}

.footer-credit {
  font-size: 13px;
  color: #ffffff;
  margin: 0;
  opacity: 0.7;
}

.credit-name {
  background: linear-gradient(135deg, #4a90d9, #7ab8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  opacity: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .site-footer {
    padding: 50px 20px 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
    padding-right: 0;
    text-align: center;
  }

  .footer-brand-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact li {
    justify-content: center;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 16px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 30px;
  }

  .footer-col {
    text-align: center;
  }

  .footer-logo__text {
    font-size: 24px;
  }

  .footer-brand-desc {
    font-size: 13px;
  }

  .footer-title {
    font-size: 16px;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-links a::before {
    display: none;
  }

  .footer-links a:hover {
    padding-left: 0;
  }

  .footer-contact li {
    justify-content: center;
    font-size: 13px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .footer-copyright,
  .footer-credit {
    font-size: 12px;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .site-footer {
    padding: 30px 12px 0;
  }

  .footer-top {
    gap: 24px;
    padding-bottom: 24px;
  }

  .footer-logo__text {
    font-size: 20px;
  }

  .footer-brand-desc {
    font-size: 12px;
  }

  .footer-social-link {
    width: 36px;
    height: 36px;
  }

  .footer-social-link svg {
    width: 18px;
    height: 18px;
  }

  .footer-title {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    font-size: 12px;
  }

  .footer-contact li {
    font-size: 12px;
    gap: 10px;
  }

  .footer-contact li svg {
    width: 16px;
    height: 16px;
  }

  .footer-bottom {
    padding: 18px 0 16px;
  }

  .footer-copyright,
  .footer-credit {
    font-size: 11px;
  }
}

/* Extra Small */
@media (max-width: 360px) {
  .footer-logo__text {
    font-size: 18px;
  }

  .footer-title {
    font-size: 14px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-contact li {
    font-size: 11px;
  }

  .footer-social-link {
    width: 32px;
    height: 32px;
  }

  .footer-social-link svg {
    width: 16px;
    height: 16px;
  }
}

/* ============================================================
   PROMISE SECTION - Full Width Image
   Object-fit: Cover for Perfect Display
   ============================================================ */

.promise-section {
  width: 100%;
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fc 0%, #eef3f9 100%);
}

.promise-section__container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* ===== TITLE ===== */
.promise-section__title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #1a2a6c;
  margin: 0 0 30px 0;
  position: relative;
  display: inline-block;
  width: 100%;
}

.promise-section__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4a90d9, #7ab8f0);
  border-radius: 2px;
}

/* ===== IMAGE WRAPPER ===== */
.promise-section__image-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 0;
  position: relative;
}

/* ===== IMAGE - 100% Width & Height with Object-fit ===== */
.promise-section__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

/* Optional hover zoom effect */
.promise-section__image-wrapper:hover .promise-section__image {
  transform: scale(1.02);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .promise-section {
    padding: 30px 0;
  }

  .promise-section__title {
    font-size: 28px;
    margin: 0 0 25px 0;
  }

  .promise-section__image {
    height: auto;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  .promise-section {
    padding: 25px 0;
  }

  .promise-section__title {
    font-size: 24px;
    margin: 0 0 20px 0;
  }

  .promise-section__title::after {
    width: 40px;
    height: 2px;
    bottom: -6px;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .promise-section {
    padding: 20px 0;
  }

  .promise-section__title {
    font-size: 20px;
    margin: 0 0 15px 0;
  }

  .promise-section__title::after {
    width: 35px;
    height: 2px;
    bottom: -5px;
  }
}

/* ============================================================
   BEST SELLERS CAROUSEL - Premium Luxury Design
   White Background | Gold Accents | Navy Theme
   ============================================================ */

.bestseller-carousel {
  width: 100%;
  padding: 70px 0 80px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.bestseller-carousel__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== SECTION HEADER ===== */
.bestseller-carousel__header {
  text-align: center;
  margin-bottom: 50px;
}

.bestseller-carousel__title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: #082A66;
  letter-spacing: 6px;
  margin: 0 0 16px 0;
  text-transform: uppercase;
}

.bestseller-carousel__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
}

.bestseller-carousel__line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A227, transparent);
}

.bestseller-carousel__diamond {
  color: #C9A227;
  font-size: 14px;
  line-height: 1;
}

.bestseller-carousel__subtitle {
  font-size: 16px;
  color: #8a9bb0;
  font-weight: 400;
  margin: 0;
  letter-spacing: 1px;
}

/* ===== CAROUSEL WRAPPER ===== */
.bestseller-carousel__wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 -10px;
  padding: 10px 10px 20px;
}

.bestseller-carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.bestseller-carousel__track:active {
  cursor: grabbing;
}

/* ===== PRODUCT CARD ===== */
.bestseller-carousel__card {
  min-width: 320px;
  max-width: 320px;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e8ecf1;
  box-shadow: 0 2px 20px rgba(8, 42, 102, 0.06);
  transition: all 0.4s ease;
  overflow: hidden;
}

.bestseller-carousel__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 45px rgba(8, 42, 102, 0.10);
  border-color: rgba(201, 162, 39, 0.15);
}

/* ===== IMAGE CONTAINER ===== */
.bestseller-carousel__image-wrap {
  position: relative;
  height: 330px;
  background: #fafafa;
  overflow: hidden;
}

.bestseller-carousel__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
  padding: 10px;
}

.bestseller-carousel__card:hover .bestseller-carousel__image-wrap img {
  transform: scale(1.03);
}

/* ===== BESTSELLER RIBBON ===== */
.bestseller-carousel__ribbon {
  position: absolute;
  top: 14px;
  left: 0;
  background: linear-gradient(135deg, #C9A227, #d4af37);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 18px 5px 16px;
  clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%);
  box-shadow: 0 2px 10px rgba(201, 162, 39, 0.25);
}

/* ===== WISHLIST BUTTON ===== */
.bestseller-carousel__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.bestseller-carousel__wishlist svg {
  width: 18px;
  height: 18px;
  stroke: #082A66;
  fill: transparent;
  transition: all 0.3s ease;
}

.bestseller-carousel__wishlist:hover {
  background: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.bestseller-carousel__wishlist:hover svg {
  stroke: #C9A227;
}

.bestseller-carousel__wishlist--active svg {
  fill: #C9A227;
  stroke: #C9A227;
}

/* ===== RATING BADGE ===== */
.bestseller-carousel__rating {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.92);
  padding: 4px 14px 4px 10px;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(5px);
  font-size: 13px;
}

.bestseller-carousel__stars {
  font-size: 13px;
  line-height: 1;
}

.bestseller-carousel__rating-text {
  font-weight: 500;
  color: #082A66;
}

/* ===== PRODUCT INFO ===== */
.bestseller-carousel__info {
  padding: 18px 20px 22px;
}

.bestseller-carousel__name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: #082A66;
  margin: 0 0 10px 0;
  line-height: 1.3;
  min-height: 44px;
}

.bestseller-carousel__price-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.bestseller-carousel__price-current {
  font-size: 20px;
  font-weight: 700;
  color: #082A66;
}

.bestseller-carousel__price-old {
  font-size: 15px;
  color: #8a9bb0;
  text-decoration: line-through;
}

.bestseller-carousel__discount {
  font-size: 12px;
  font-weight: 700;
  color: #064789;
  background: rgba(6, 71, 137, 0.06);
  padding: 2px 12px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

/* ===== ADD TO CART BUTTON ===== */
.bestseller-carousel__add-btn {
  width: 100%;
  height: 52px;
  background: #082A66;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bestseller-carousel__add-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.bestseller-carousel__add-btn:hover::after {
  width: 300px;
  height: 300px;
}

.bestseller-carousel__add-btn:hover {
  background: #C9A227;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201, 162, 39, 0.3);
}

/* ===== NAVIGATION ARROWS ===== */
.bestseller-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e8ecf1;
  box-shadow: 0 2px 20px rgba(8, 42, 102, 0.06);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.bestseller-carousel__arrow:hover {
  background: #ffffff;
  box-shadow: 0 4px 30px rgba(8, 42, 102, 0.12);
  border-color: #C9A227;
  transform: translateY(-50%) scale(1.05);
}

.bestseller-carousel__arrow svg {
  width: 22px;
  height: 22px;
  stroke: #082A66;
  stroke-width: 2.5;
}

.bestseller-carousel__arrow--prev {
  left: -8px;
}

.bestseller-carousel__arrow--next {
  right: -8px;
}

.bestseller-carousel__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: translateY(-50%) scale(0.95);
}

.bestseller-carousel__arrow:disabled:hover {
  transform: translateY(-50%) scale(0.95);
  border-color: #e8ecf1;
}

/* ===== INDICATORS ===== */
.bestseller-carousel__indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.bestseller-carousel__indicator {
  width: 32px;
  height: 4px;
  border-radius: 4px;
  background: #d0d7e3;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}

.bestseller-carousel__indicator:hover {
  background: #8a9bb0;
}

.bestseller-carousel__indicator--active {
  background: #082A66;
  width: 48px;
}

/* ===== VIEW MORE BUTTON ===== */
.bestseller-carousel__viewmore {
  text-align: center;
  margin-top: 30px;
}

.bestseller-carousel__viewmore-btn {
  display: inline-block;
  padding: 14px 50px;
  background: transparent;
  color: #082A66;
  border: 2px solid #082A66;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
}

.bestseller-carousel__viewmore-btn:hover {
  background: #082A66;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(8, 42, 102, 0.2);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .bestseller-carousel {
    padding: 60px 0 70px;
  }

  .bestseller-carousel__title {
    font-size: 36px;
    letter-spacing: 4px;
  }

  .bestseller-carousel__card {
    min-width: 280px;
    max-width: 280px;
  }

  .bestseller-carousel__image-wrap {
    height: 280px;
  }

  .bestseller-carousel__arrow {
    width: 40px;
    height: 40px;
  }

  .bestseller-carousel__arrow--prev {
    left: -4px;
  }

  .bestseller-carousel__arrow--next {
    right: -4px;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  .bestseller-carousel {
    padding: 50px 0 60px;
  }

  .bestseller-carousel__container {
    padding: 0 14px;
  }

  .bestseller-carousel__title {
    font-size: 30px;
    letter-spacing: 3px;
  }

  .bestseller-carousel__divider {
    gap: 12px;
  }

  .bestseller-carousel__line {
    width: 50px;
  }

  .bestseller-carousel__subtitle {
    font-size: 14px;
  }

  .bestseller-carousel__card {
    min-width: 260px;
    max-width: 260px;
  }

  .bestseller-carousel__image-wrap {
    height: 260px;
  }

  .bestseller-carousel__name {
    font-size: 14px;
    min-height: 38px;
  }

  .bestseller-carousel__price-current {
    font-size: 18px;
  }

  .bestseller-carousel__price-old {
    font-size: 14px;
  }

  .bestseller-carousel__add-btn {
    height: 46px;
    font-size: 14px;
  }

  .bestseller-carousel__arrow {
    display: none;
  }

  .bestseller-carousel__wrapper {
    margin: 0;
    padding: 5px 0 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  }

  .bestseller-carousel__wrapper::-webkit-scrollbar {
    display: none;
  }

  .bestseller-carousel__track {
    gap: 16px;
    transform: none !important;
    transition: none !important;
    cursor: default;
    flex-wrap: nowrap;
    padding: 0 14px;
    scroll-snap-type: x mandatory;
  }

  .bestseller-carousel__card {
    min-width: 260px;
    max-width: 260px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}
/* Mobile Small */
/* Mobile Small */
@media (max-width: 480px) {
  .bestseller-carousel {
    padding: 40px 0 50px;
  }

  .bestseller-carousel__container {
    padding: 0 10px;
  }

  .bestseller-carousel__title {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .bestseller-carousel__line {
    width: 35px;
  }

  .bestseller-carousel__diamond {
    font-size: 10px;
  }

  .bestseller-carousel__subtitle {
    font-size: 13px;
  }

  .bestseller-carousel__card {
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
  }

  .bestseller-carousel__image-wrap {
    height: 280px;
  }

  .bestseller-carousel__info {
    padding: 14px 16px 18px;
  }

  .bestseller-carousel__name {
    font-size: 15px;
    min-height: 40px;
  }

  .bestseller-carousel__price-current {
    font-size: 18px;
  }

  .bestseller-carousel__price-old {
    font-size: 14px;
  }

  .bestseller-carousel__add-btn {
    height: 48px;
    font-size: 14px;
  }

  .bestseller-carousel__track {
    gap: 14px;
    padding: 0 10px;
  }

  .bestseller-carousel__indicator {
    width: 24px;
    height: 3px;
  }

  .bestseller-carousel__indicator--active {
    width: 36px;
  }

  .bestseller-carousel__viewmore-btn {
    padding: 12px 35px;
    font-size: 13px;
  }

  .bestseller-carousel__rating {
    font-size: 12px;
    padding: 3px 12px 3px 8px;
  }
}

/* Extra Small */
@media (max-width: 360px) {
  .bestseller-carousel__title {
    font-size: 20px;
    letter-spacing: 1.5px;
  }

  .bestseller-carousel__image-wrap {
    height: 260px;
  }

  .bestseller-carousel__name {
    font-size: 13px;
    min-height: 34px;
  }

  .bestseller-carousel__price-current {
    font-size: 16px;
  }

  .bestseller-carousel__price-old {
    font-size: 13px;
  }

  .bestseller-carousel__discount {
    font-size: 10px;
  }

  .bestseller-carousel__add-btn {
    height: 42px;
    font-size: 13px;
  }
}
/* ===============================
   SHOP BY RECIPIENT SECTION
================================ */

:root {
  --section-padding: 80px;
  --border-radius: 28px;
  --transition: 0.4s ease;
  --text-dark: #111111;
}

/* Section */
.recipient-section {

  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);

}

.container {
  max-width: 1400px;
  margin: auto;
}

.section-title {
  text-align: center;
    border: solid 1px;
    border-radius: 3rem;
    border-block-color: #a5a3a3;
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 500;
    margin-bottom: 60px;
    color: #111;
    letter-spacing: 1px;
}

/* Grid Layout */
.recipient-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Card */
.recipient-card {
  display: block;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.recipient-card img {
  width: 100%;
  height: auto; /* VERY IMPORTANT: prevents cutting */
  display: block;
  border-radius: var(--border-radius);
  transition: transform var(--transition);
}

/* Hover Effect (Desktop only) */
@media (hover: hover) {
  .recipient-card:hover img {
    transform: scale(1.03);
  }

  .recipient-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .recipient-grid {
    gap: 25px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .recipient-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    margin-bottom: 40px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .recipient-section {
    padding: 60px 15px;
  }
}
/* ================================================================ */
/* LUXURY PROMOTIONAL SECTION - Manish Jewellers                   */
/* Premium Gradient Banner with Floating Category Badges           */
/* ================================================================ */

/* ===== SECTION CONTAINER ===== */
.luxury-banner {
  width: 100%;
  background: #ffffff;
  padding: 30px 0 60px 0;
  position: relative;
}

.luxury-banner__container {
  width: 92%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

/* ===== TOP GRADIENT BANNER ===== */
.luxury-banner__banner {
  width: 100%;
  height: 210px;
  border-radius: 35px;
  background: linear-gradient(135deg, #F6E8E0 0%, #DCEBFF 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(8, 42, 102, 0.04);
}

/* Subtle decorative overlay */
.luxury-banner__banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.luxury-banner__banner::after {
  content: '✦';
  position: absolute;
  bottom: 18px;
  right: 30px;
  font-size: 18px;
  color: rgba(8, 42, 102, 0.06);
  pointer-events: none;
}

/* ===== HEADING ===== */
.luxury-banner__heading {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  color: #082A66;
  letter-spacing: 2px;
  text-align: center;
  margin: 0;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

/* ===== BADGES CONTAINER ===== */
.luxury-banner__badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: -60px;
  position: relative;
  z-index: 5;
  padding: 0 20px;
  flex-wrap: wrap;
}

/* ===== INDIVIDUAL BADGE ===== */
.luxury-banner__badge {
  flex: 0 0 520px;
  max-width: 520px;
  height: 150px;
  border-radius: 100px;
  background: linear-gradient(135deg, #FFFFFF 0%, #EEF5FF 100%);
  border: 2px solid rgba(8, 42, 102, 0.08);
  box-shadow: 0 12px 35px rgba(8, 42, 102, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Badge subtle decorative glow */
.luxury-banner__badge::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.02) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.luxury-banner__badge::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* ===== BADGE HOVER EFFECT ===== */
.luxury-banner__badge:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(8, 42, 102, 0.18);
  border-color: rgba(201, 162, 39, 0.2);
}

.luxury-banner__badge:hover::after {
  opacity: 1;
}

/* ===== BADGE TEXT ===== */
.luxury-banner__badge-text {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 500;
  color: #082A66;
  letter-spacing: 1px;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Premium Gifts - slightly bolder */
.luxury-banner__badge-text--premium {
  font-weight: 600;
  background: linear-gradient(135deg, #082A66, #064789);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================================ */
/* RESPONSIVE - TABLET (769px - 1024px)                           */
/* ================================================================ */

@media (max-width: 1024px) {
  .luxury-banner__container {
    width: 90%;
  }

  .luxury-banner__banner {
    height: 180px;
    border-radius: 30px;
  }

  .luxury-banner__heading {
    font-size: 40px;
  }

  .luxury-banner__badges {
    gap: 35px;
    margin-top: -50px;
  }

  .luxury-banner__badge {
    flex: 0 0 300px;
    max-width: 300px;
    height: 100px;
    border-radius: 60px;
  }

  .luxury-banner__badge-text {
    font-size: 28px;
  }
}

/* ================================================================ */
/* RESPONSIVE - MOBILE LARGE (481px - 768px)                      */
/* ================================================================ */

@media (max-width: 768px) {
  .luxury-banner {
    padding: 20px 0 40px 0;
  }

  .luxury-banner__container {
    width: 90%;
  }

  .luxury-banner__banner {
    height: 150px;
    border-radius: 25px;
  }

  .luxury-banner__heading {
    font-size: 32px;
    letter-spacing: 1.5px;
  }

  .luxury-banner__badges {
    gap: 20px;
    margin-top: -40px;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
  }

  .luxury-banner__badge {
    flex: 0 0 auto;
    width: 90%;
    max-width: 500px;
    height: 75px;
    border-radius: 50px;
  }

  .luxury-banner__badge-text {
    font-size: 24px;
  }
}

/* ================================================================ */
/* RESPONSIVE - MOBILE SMALL (320px - 480px)                      */
/* ================================================================ */

@media (max-width: 480px) {
  .luxury-banner {
    padding: 15px 0 30px 0;
  }

  .luxury-banner__container {
    width: 94%;
  }

  .luxury-banner__banner {
    height: 120px;
    border-radius: 20px;
  }

  .luxury-banner__heading {
    font-size: 28px;
    letter-spacing: 1px;
    padding: 0 15px;
  }

  .luxury-banner__badges {
    gap: 16px;
    margin-top: -30px;
    padding: 0 5px;
  }

  .luxury-banner__badge {
    width: 92%;
    height: 65px;
    border-radius: 40px;
  }

  .luxury-banner__badge-text {
    font-size: 22px;
    letter-spacing: 0.5px;
    padding: 0 15px;
  }
}

/* ================================================================ */
/* PERFORMANCE OPTIMIZATION                                         */
/* ================================================================ */

.luxury-banner__badge,
.luxury-banner__heading,
.luxury-banner__banner {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.luxury-banner__badge {
  will-change: transform;
}


/* ================================================================ */
/* MOBILE MENU - Gold Dropdown with Proper Spacing                */
/* ================================================================ */

/* Dropdown section wrapper */
.mobile-menu__list .dropdown-section {
  margin-bottom: 12px;
  padding: 0 4px;
}

.mobile-menu__list .dropdown-section:last-child {
  margin-bottom: 0;
}

/* Dropdown label - Bold & Spacious */
.mobile-menu__list .dropdown-label {
  display: block;
  padding: 12px 0 8px 0;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: #00254e;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(201, 162, 39, 0.25);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.mobile-menu__list .dropdown-label:first-of-type {
  padding-top: 4px;
}

/* Dropdown links - Better spacing */
.mobile-menu__list .dropdown-panel a {
  display: block;
  padding: 10px 0 10px 8px;
  font-size: 14px;
  font-weight: 500;
  color: #3a4a6a;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.mobile-menu__list .dropdown-panel a:last-child {
  border-bottom: none;
}

.mobile-menu__list .dropdown-panel a:hover {
  color: #c9a227;
  background: rgba(201, 162, 39, 0.05);
  padding-left: 16px;
}

/* Mobile menu dropdown panel - Gold specific */
#m-dd-gold.dropdown-panel {
  padding: 6px 20px 16px 20px !important;
  background: rgba(0, 37, 78, 0.03);
  border-left: 2px solid rgba(201, 162, 39, 0.15);
}

/* Mobile menu list items - Better spacing */
.mobile-menu__list > li {
  border-bottom: 1px solid rgba(0, 37, 78, 0.06);
}

.mobile-menu__list a,
.mobile-menu__list > li.has-dropdown > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #00254e;
  text-align: left;
  transition: background 0.3s ease;
  letter-spacing: 0.3px;
}

.mobile-menu__list a:hover,
.mobile-menu__list > li.has-dropdown > button:hover {
  background: rgba(0, 37, 78, 0.04);
}

/* Chevron icon styling */
.mobile-menu__list .icon--chevron {
  width: 18px;
  height: 18px;
  color: #4a7a9a;
  opacity: 0.6;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.mobile-menu__list .has-dropdown > button[aria-expanded="true"] .icon--chevron {
  transform: rotate(180deg);
  opacity: 1;
  color: #c9a227;
}


/* ===== MOBILE - FULL SCREEN COVERAGE WITH VH ===== */
@media (max-width: 768px) {
  .slider-track {
    height: 100vh; /* Full viewport height */
    min-height: 300px;
    max-height: 500px;
  }
  
  .slide {
    height: 100%;
  }
  
  .slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center;
  }
}

@media (max-width: 480px) {
  .slider-track {
    height: 100vh;
    min-height: 250px;
    max-height: 400px;
  }
  
  .slide {
    min-height: 250px;
  }
}


/* ============================================================
   PROMISE SECTION - 3 Images Horizontal
   Medium Size | Responsive | All Devices
   ============================================================ */

.promise-section {
  width: 100%;
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fc 0%, #eef3f9 100%);
}

.promise-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TITLE ===== */
.promise-section__title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #1a2a6c;
  margin: 0 0 30px 0;
  position: relative;
  display: block;
  width: 100%;
}

.promise-section__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4a90d9, #7ab8f0);
  border-radius: 2px;
}

/* ===== POSTER CONTAINER - HORIZONTAL ===== */
.promise-section__poster {
  width: 100%;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(8, 42, 102, 0.06);
  border: 1px solid rgba(8, 42, 102, 0.04);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transition: all 0.4s ease;
}

.promise-section__poster:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(8, 42, 102, 0.10);
}

/* ===== IMAGE ITEM - MEDIUM SIZE ===== */
.promise-section__image-item {
  flex: 1;
  max-width: 33.33%;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  background: #f5f7fa;
  transition: all 0.4s ease;
  aspect-ratio: 4 / 3;
}

.promise-section__image-item:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 25px rgba(8, 42, 102, 0.10);
}

/* ===== IMAGE - FULL COVER ===== */
.promise-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.promise-section__image-item:hover .promise-section__image {
  transform: scale(1.05);
}

/* ============================================================
   RESPONSIVE - ALWAYS HORIZONTAL
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .promise-section {
    padding: 30px 0;
  }
  
  .promise-section__container {
    padding: 0 16px;
  }
  
  .promise-section__poster {
    padding: 16px;
    gap: 16px;
    border-radius: 14px;
  }
  
  .promise-section__image-item {
    aspect-ratio: 4 / 3;
  }
  
  .promise-section__title {
    font-size: 28px;
    margin: 0 0 25px 0;
  }
}

/* Mobile - KEEP HORIZONTAL */
@media (max-width: 768px) {
  .promise-section {
    padding: 25px 0;
  }
  
  .promise-section__container {
    padding: 0 12px;
  }
  
  .promise-section__poster {
    padding: 12px;
    gap: 12px;
    border-radius: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  
  .promise-section__image-item {
    flex: 0 0 140px;
    max-width: 140px;
    aspect-ratio: 4 / 3;
    flex-shrink: 0;
  }
  
  .promise-section__title {
    font-size: 24px;
    margin: 0 0 20px 0;
  }
  
  .promise-section__title::after {
    width: 40px;
    height: 2px;
    bottom: -6px;
  }
  
  /* Hide scrollbar */
  .promise-section__poster::-webkit-scrollbar {
    display: none;
  }
  .promise-section__poster {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .promise-section {
    padding: 20px 0;
  }
  
  .promise-section__container {
    padding: 0 10px;
  }
  
  .promise-section__poster {
    padding: 10px;
    gap: 10px;
    border-radius: 10px;
  }
  
  .promise-section__image-item {
    flex: 0 0 110px;
    max-width: 110px;
    aspect-ratio: 4 / 3;
  }
  
  .promise-section__title {
    font-size: 20px;
    margin: 0 0 15px 0;
  }
  
  .promise-section__title::after {
    width: 35px;
    height: 2px;
    bottom: -5px;
  }
}

/* Extra Small */
@media (max-width: 360px) {
  .promise-section__image-item {
    flex: 0 0 90px;
    max-width: 90px;
  }
  
  .promise-section__poster {
    padding: 8px;
    gap: 8px;
  }
}

/* ================================================================ */
/* HERO SECTION - Desktop Optimized | 60/40 Split                  */
/* ================================================================ */

.hero {
    width: 100%;
    min-height: 520px;
    background: #f8f4ef;
    overflow: hidden;
}

.hero-desktop-layout {
    display: grid;
    grid-template-columns: 60% 40%;
    max-width: 1440px;
    margin: 0 auto;
    min-height: 520px;
    gap: 0;
}

/* ===== LEFT CONTENT ===== */
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 70px 60px 80px;
    background: #f8f4ef;
    position: relative;
}

.hero-tag {
    display: inline-block;
    background: linear-gradient(135deg, #c9a227, #d4af37);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    width: fit-content;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.25);
}

.hero-left h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: #082A66;
    line-height: 1.08;
    margin: 0 0 14px 0;
    max-width: 90%;
}

.hero-sub {
    font-size: 19px;
    color: #4a5a7a;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.5px;
    max-width: 85%;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 44px;
    background: #082A66;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    width: fit-content;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(8, 42, 102, 0.15);
}

.btn-cta:hover {
    background: #c9a227;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(8, 42, 102, 0.25);
}

/* ===== RIGHT IMAGE - FULL FIT ===== */
.hero-right {
    min-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ede8e2;
    padding: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ================================================================ */
/* RESPONSIVE - TABLET                                            */
/* ================================================================ */

@media (max-width: 1024px) {
    .hero {
        min-height: 420px;
    }

    .hero-desktop-layout {
        grid-template-columns: 55% 45%;
        min-height: 420px;
    }

    .hero-left {
        padding: 40px 40px 40px 50px;
    }

    .hero-left h1 {
        font-size: 38px;
        max-width: 100%;
    }

    .hero-sub {
        font-size: 17px;
        max-width: 100%;
    }

    .btn-cta {
        padding: 14px 35px;
        font-size: 14px;
    }

    .hero-right {
        min-height: 420px;
        padding: 0;
    }

    .hero-image {
        object-fit: cover;
        object-position: center;
    }
}

/* ================================================================ */
/* RESPONSIVE - MOBILE (STACK LAYOUT)                             */
/* ================================================================ */

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        background: #ffffff;
    }

    .hero-desktop-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        padding: 32px 24px 38px;
        text-align: center;
        order: 2;
        background: #ffffff;
        border-top: 1px solid rgba(8, 42, 102, 0.05);
    }

    .hero-tag {
        margin: 0 auto 14px;
        font-size: 10px;
        padding: 5px 16px;
        letter-spacing: 2px;
    }

    .hero-left h1 {
        font-size: 28px;
        max-width: 100%;
    }

    .hero-left h1 br {
        display: none;
    }

    .hero-sub {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
    }

    .hero-right {
        min-height: 280px;
        order: 1;
        padding: 0;
        background: #ede8e2;
    }

    .hero-image {
        object-fit: cover;
        object-position: center top;
        min-height: 280px;
    }
}

/* ================================================================ */
/* RESPONSIVE - SMALL MOBILE                                      */
/* ================================================================ */

@media (max-width: 480px) {
    .hero-left {
        padding: 24px 16px 28px;
    }

    .hero-left h1 {
        font-size: 24px;
    }

    .hero-sub {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .btn-cta {
        padding: 12px 16px;
        font-size: 13px;
    }

    .hero-right {
        min-height: 220px;
        padding: 0;
    }

    .hero-image {
        min-height: 220px;
    }
}

/* ================================================================ */
/* RESPONSIVE - EXTRA SMALL                                       */
/* ================================================================ */

@media (max-width: 360px) {
    .hero-left {
        padding: 18px 12px 22px;
    }

    .hero-left h1 {
        font-size: 20px;
    }

    .hero-sub {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .btn-cta {
        padding: 10px 14px;
        font-size: 12px;
    }

    .hero-right {
        min-height: 180px;
        padding: 0;
    }

    .hero-image {
        min-height: 180px;
    }
}

/* ================================================================ */
/* CATEGORY GRID - Box Shape | 2 Equal Rows                       */
/* Both Scroll Together | Fully Responsive                         */
/* ================================================================ */

/* ===== SECTION ===== */
.category-grid {
  width: 100%;
  padding: 40px 0 60px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.category-grid__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.category-grid__header {
  text-align: center;
  margin-bottom: 35px;
}

.category-grid__title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: #082A66;
  margin: 0;
}

.category-grid__highlight {
  background: linear-gradient(135deg, #4a90d9, #7ab8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== SCROLL WRAPPER ===== */
.category-grid__scroll-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: visible;
  position: relative;
}

/* ===== ROWS - Equal Distribution ===== */
.category-grid__row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* ===== ITEMS - BOX SHAPE ===== */
.category-grid__item {
  display: flex;
  justify-content: center;
}

.category-grid__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #00254e;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.category-grid__card:hover {
  transform: translateY(-6px);
}

/* ===== IMAGE WRAPPER - RECTANGLE / BOX SHAPE ===== */
.category-grid__image-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  background: #FFFFFF;
  border: 2px solid #e8ecf1;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 37, 78, 0.04);
}

.category-grid__card:hover .category-grid__image-wrapper {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 37, 78, 0.12);
  border-color: #c9a227;
}

.category-grid__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.category-grid__card:hover .category-grid__image {
  transform: scale(1.05);
}

.category-grid__name {
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #00254e;
  text-align: center;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.category-grid__card:hover .category-grid__name {
  color: #c9a227;
}

/* ================================================================ */
/* TABLET RESPONSIVE                                               */
/* ================================================================ */

@media (max-width: 1024px) {
  .category-grid {
    padding: 30px 0 50px;
  }

  .category-grid__title {
    font-size: 32px;
  }

  .category-grid__row {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .category-grid__image-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 14px;
    background: #FFFFFF;
    border-color: #e8ecf1;
  }

  .category-grid__name {
    font-size: 13px;
  }

  .category-grid__scroll-wrapper {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .category-grid {
    padding: 25px 0 40px;
  }

  .category-grid__container {
    padding: 0 16px;
  }

  .category-grid__title {
    font-size: 28px;
  }

  .category-grid__row {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .category-grid__image-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    background: #FFFFFF;
    border-color: #e8ecf1;
  }

  .category-grid__name {
    font-size: 12px;
    margin-top: 8px;
  }

  .category-grid__scroll-wrapper {
    gap: 20px;
  }
}

/* ================================================================ */
/* MOBILE - Horizontal Scroll (≤576px)                            */
/* ================================================================ */

@media (max-width: 576px) {
  .category-grid {
    padding: 20px 0 30px;
  }

  .category-grid__container {
    padding: 0;
    overflow: hidden;
  }

  .category-grid__header {
    padding: 0 16px;
    margin-bottom: 20px;
  }

  .category-grid__title {
    font-size: 24px;
  }

  /* SIMPLE HORIZONTAL SCROLL - FLEX */
  .category-grid__scroll-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: visible;
  }

  .category-grid__row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 4px 16px 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
  }

  .category-grid__row::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .category-grid__item {
    flex: 0 0 100px;
    width: 100px;
    scroll-snap-align: start;
  }

  .category-grid__image-wrapper {
    width: 85px;
    height: 85px;
    border-radius: 12px;
    border-width: 1.5px;
    background: #FFFFFF;
    border-color: #e8ecf1;
  }

  .category-grid__name {
    font-size: 11px;
    margin-top: 6px;
  }

  /* Disable hover on touch */
  .category-grid__card:hover {
    transform: none !important;
  }

  .category-grid__card:hover .category-grid__image-wrapper {
    transform: none !important;
    box-shadow: none !important;
  }

  .category-grid__card:hover .category-grid__image {
    transform: none !important;
  }

  .category-grid__card:hover .category-grid__name {
    color: #00254e !important;
  }
}

/* ================================================================ */
/* SMALL MOBILE (≤400px)                                           */
/* ================================================================ */

@media (max-width: 400px) {
  .category-grid__row {
    gap: 10px;
    padding: 4px 12px 8px;
  }

  .category-grid__item {
    flex: 0 0 85px;
    width: 85px;
  }

  .category-grid__image-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background: #FFFFFF;
    border-color: #e8ecf1;
  }

  .category-grid__name {
    font-size: 10px;
  }

  .category-grid__title {
    font-size: 20px;
  }

  .category-grid__scroll-wrapper {
    gap: 12px;
  }
}

/* ================================================================ */
/* EXTRA SMALL (≤340px)                                            */
/* ================================================================ */

@media (max-width: 340px) {
  .category-grid__item {
    flex: 0 0 75px;
    width: 75px;
  }

  .category-grid__image-wrapper {
    width: 62px;
    height: 62px;
    border-radius: 8px;
    background: #FFFFFF;
    border-color: #e8ecf1;
  }

  .category-grid__name {
    font-size: 9px;
    margin-top: 4px;
  }

  .category-grid__row {
    gap: 8px;
    padding: 4px 10px 8px;
  }
}

/* ================================================================ */
/* PERFORMANCE OPTIMIZATION                                         */
/* ================================================================ */

.category-grid__card,
.category-grid__image,
.category-grid__image-wrapper {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.category-grid__image-wrapper {
  will-change: transform;
}

.category-grid__scroll-wrapper {
  will-change: scroll-position;
}

.category-grid__row {
  will-change: scroll-position;
  -webkit-overflow-scrolling: touch;
}


/* ================================================================ */
/* SHOP BY RECIPIENT SECTION - Plain White Background              */
/* Centered Heading | Side by Side on All Devices                  */
/* Fully Responsive                                                 */
/* ================================================================ */

/* ===== SECTION ===== */
.recipient-section {
    width: 100%;
    padding: 60px 20px 70px;
    background: #ffffff;
    margin: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== SECTION TITLE - CENTERED ===== */
.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: #082A66;
    letter-spacing: 1px;
    margin: 0 0 45px 0;
    padding: 0;
    border: none;
    border-radius: 0;
    display: block;
    width: 100%;
    position: relative;
}

/* Decorative underline */
.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4a90d9, #7ab8f0);
    border-radius: 2px;
}

/* ===== GRID - Always Side by Side ===== */
.recipient-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* ===== CARDS ===== */
.recipient-card {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(8, 42, 102, 0.06);
    height: 100%;
}

.recipient-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

/* ===== HOVER EFFECT (Desktop) ===== */
@media (hover: hover) {
    .recipient-card:hover {
        box-shadow: 0 12px 40px rgba(8, 42, 102, 0.12);
        transform: translateY(-6px);
    }

    .recipient-card:hover img {
        transform: scale(1.03);
    }
}

/* ================================================================ */
/* RESPONSIVE - ALWAYS SIDE BY SIDE                               */
/* ================================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .recipient-section {
        padding: 45px 16px 55px;
    }

    .recipient-grid {
        gap: 20px;
    }

    .section-title {
        font-size: 32px;
        margin: 0 0 35px 0;
    }

    .section-title::after {
        width: 50px;
        height: 3px;
        bottom: -10px;
    }

    .recipient-card {
        border-radius: 16px;
    }

    .recipient-card img {
        border-radius: 16px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .recipient-section {
        padding: 35px 12px 45px;
    }

    .recipient-grid {
        gap: 15px;
    }

    .section-title {
        font-size: 28px;
        margin: 0 0 30px 0;
    }

    .section-title::after {
        width: 45px;
        height: 2px;
        bottom: -8px;
    }

    .recipient-card {
        border-radius: 14px;
    }

    .recipient-card img {
        border-radius: 14px;
    }

    /* Keep side by side on mobile */
    .recipient-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .recipient-section {
        padding: 25px 10px 35px;
    }

    .container {
        padding: 0 10px;
    }

    .recipient-grid {
        gap: 10px;
    }

    .section-title {
        font-size: 22px;
        margin: 0 0 22px 0;
    }

    .section-title::after {
        width: 35px;
        height: 2px;
        bottom: -6px;
    }

    .recipient-card {
        border-radius: 12px;
    }

    .recipient-card img {
        border-radius: 12px;
    }
}

/* Extra Small */
@media (max-width: 380px) {
    .recipient-section {
        padding: 20px 6px 28px;
    }

    .container {
        padding: 0 6px;
    }

    .recipient-grid {
        gap: 8px;
    }

    .section-title {
        font-size: 19px;
        margin: 0 0 18px 0;
    }

    .section-title::after {
        width: 30px;
        height: 2px;
        bottom: -5px;
    }

    .recipient-card {
        border-radius: 10px;
    }

    .recipient-card img {
        border-radius: 10px;
    }
}

/* ================================================================ */
/* PERFORMANCE OPTIMIZATION                                         */
/* ================================================================ */

.recipient-card img {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.recipient-card img {
    will-change: transform;
}
    
/* ================================================================ */
/* PROMISE SECTION - Luxury Brand Trust Section                    */
/* Fully Responsive | Continuous Infinite Scroll                   */
/* ================================================================ */

.promise-section {
    width: 100%;
    padding: 80px 20px 90px;
    background: #ffffff;
    overflow: hidden;
}

.promise-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 0 15px;
}

/* ===== TOP BADGE ===== */
.promise-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.promise-badge-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #4a90d9;
}

.promise-badge-new {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #082A66;
    color: #ffffff;
    padding: 3px 12px;
    border-radius: 20px;
}

/* ===== MAIN HEADING ===== */
.promise-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 62px;
    font-weight: 400;
    color: #082A66;
    margin: 0 0 45px 0;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.promise-brand {
    font-weight: 600;
    color: #4a90d9;
}

/* ================================================================ */
/* PROMISE GRID WRAPPER - Infinite Scroll                          */
/* ================================================================ */

.promise-grid-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    margin-bottom: 55px;
    position: relative;
}

/* ================================================================ */
/* PROMISE GRID - Continuous Infinite Scroll                       */
/* ================================================================ */

.promise-grid {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: scrollPromises 25s linear infinite;
}

.promise-grid:hover {
    animation-play-state: paused;
}

/* ===== CONTINUOUS SCROLL ANIMATION ===== */
@keyframes scrollPromises {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ================================================================ */
/* PROMISE CARD                                                    */
/* ================================================================ */

.promise-card {
    position: relative;
    width: 100px;
    height: 100px;
    background: #ffffff;
    border: 1px solid #dce8f5;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 2px 12px rgba(8, 42, 102, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.promise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(8, 42, 102, 0.08);
}

/* ===== CARD BADGE ===== */
.promise-card-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: #082A66;
    color: #ffffff;
    padding: 3px 12px;
    border-radius: 20px;
    line-height: 1.4;
    z-index: 2;
}

/* ===== CARD ICON ===== */
.promise-card-icon {
    width: 44px;
    height: 44px;
    background: #e8f0fe;
    border: 1px solid #c5d8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.promise-card:hover .promise-card-icon {
    background: #d4e4fc;
    border-color: #8db4e8;
}

.promise-card-icon svg {
    width: 22px;
    height: 22px;
    display: block;
    stroke: #4a90d9;
}

/* ===== CARD LABEL ===== */
.promise-card-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #082A66;
    text-align: center;
    line-height: 1.2;
}

/* ================================================================ */
/* BOTTOM QUOTE                                                    */
/* ================================================================ */

.promise-quote {
    max-width: 850px;
    margin: 0 auto;
}

.promise-quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    color: #4a5a7a;
    line-height: 1.5;
    margin: 0;
}

.promise-quote-text strong {
    font-weight: 600;
    color: #082A66;
    font-style: normal;
}

/* ================================================================ */
/* RESPONSIVE - TABLET (769px - 1024px)                           */
/* ================================================================ */

@media (max-width: 1024px) {
    .promise-section {
        padding: 60px 20px 70px;
    }

    .promise-title {
        font-size: 50px;
        margin-bottom: 40px;
    }

    .promise-grid {
        gap: 16px;
        animation: scrollPromises 20s linear infinite;
    }

    .promise-card {
        width: 90px;
        height: 90px;
        border-radius: 20px;
    }

    .promise-card-icon {
        width: 38px;
        height: 38px;
    }

    .promise-card-icon svg {
        width: 18px;
        height: 18px;
    }

    .promise-card-label {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .promise-card-badge {
        font-size: 7px;
        padding: 2px 10px;
        top: -6px;
        right: -6px;
    }

    .promise-quote-text {
        font-size: 28px;
    }
}

/* ================================================================ */
/* RESPONSIVE - MOBILE (≤768px)                                   */
/* ================================================================ */

@media (max-width: 768px) {
    .promise-section {
        padding: 50px 16px 60px;
    }

    .promise-title {
        font-size: 38px;
        margin-bottom: 30px;
    }

    .promise-badge-text {
        font-size: 10px;
        letter-spacing: 4px;
    }

    .promise-badge-new {
        font-size: 8px;
        padding: 2px 10px;
    }

    .promise-grid-wrapper {
        margin-bottom: 35px;
        padding: 10px 0;
    }

    .promise-grid {
        justify-content: flex-start;
        gap: 14px;
        padding: 0 16px;
        animation: scrollPromisesMobile 15s linear infinite;
    }

    .promise-grid:hover {
        animation-play-state: paused;
    }

    @keyframes scrollPromisesMobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    .promise-card {
        width: 85px;
        height: 85px;
        border-radius: 18px;
        gap: 4px;
        padding: 10px 6px;
    }

    .promise-card-icon {
        width: 34px;
        height: 34px;
    }

    .promise-card-icon svg {
        width: 16px;
        height: 16px;
    }

    .promise-card-label {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .promise-card-badge {
        font-size: 6px;
        padding: 2px 8px;
        top: -5px;
        right: -5px;
    }

    .promise-quote-text {
        font-size: 22px;
        line-height: 1.5;
    }
}

/* ================================================================ */
/* RESPONSIVE - SMALL MOBILE (≤480px)                             */
/* ================================================================ */

@media (max-width: 480px) {
    .promise-section {
        padding: 40px 12px 50px;
    }

    .promise-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .promise-badge-text {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .promise-badge-new {
        font-size: 7px;
        padding: 2px 8px;
    }

    .promise-grid-wrapper {
        margin-bottom: 30px;
        padding: 8px 0;
    }

    .promise-grid {
        gap: 12px;
        padding: 0 12px;
        animation: scrollPromisesMobile 12s linear infinite;
    }

    .promise-card {
        width: 75px;
        height: 75px;
        border-radius: 16px;
        gap: 4px;
        padding: 8px 4px;
    }

    .promise-card-icon {
        width: 30px;
        height: 30px;
    }

    .promise-card-icon svg {
        width: 14px;
        height: 14px;
    }

    .promise-card-label {
        font-size: 8px;
        letter-spacing: 0.8px;
    }

    .promise-card-badge {
        font-size: 5px;
        padding: 2px 6px;
        top: -4px;
        right: -4px;
    }

    .promise-quote-text {
        font-size: 20px;
        line-height: 1.5;
    }
}

/* ================================================================ */
/* RESPONSIVE - EXTRA SMALL (≤360px)                              */
/* ================================================================ */

@media (max-width: 360px) {
    .promise-section {
        padding: 30px 10px 40px;
    }

    .promise-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .promise-grid {
        gap: 10px;
        padding: 0 10px;
        animation: scrollPromisesMobile 10s linear infinite;
    }

    .promise-card {
        width: 65px;
        height: 65px;
        border-radius: 14px;
        gap: 3px;
        padding: 6px 4px;
    }

    .promise-card-icon {
        width: 26px;
        height: 26px;
    }

    .promise-card-icon svg {
        width: 12px;
        height: 12px;
    }

    .promise-card-label {
        font-size: 7px;
        letter-spacing: 0.5px;
    }

    .promise-card-badge {
        font-size: 5px;
        padding: 1px 6px;
        top: -4px;
        right: -4px;
    }

    .promise-quote-text {
        font-size: 17px;
    }
}
/* ================================================================ */
/* TOP MARQUEE STRIP - Premium Header Banner                      */
/* Fully Responsive | Continuous Smooth Animation                  */
/* ================================================================ */

.top-marquee {
    width: 100%;
    background: #082A66;
    color: #ffffff;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    z-index: 999;
    border-bottom: 2px solid #c9a227;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
    padding: 0 20px;
    will-change: transform;
}

.marquee-track:hover {
    animation-play-state: paused;
}

/* ===== CONTINUOUS SMOOTH ANIMATION ===== */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== MARQUEE ITEMS ===== */
.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.marquee-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.marquee-icon svg {
    width: 16px;
    height: 16px;
    stroke: #c9a227;
    stroke-width: 2.5;
    flex-shrink: 0;
}

.marquee-text {
    color: #ffffff;
    opacity: 0.9;
    font-weight: 500;
}

.marquee-dot {
    color: #c9a227;
    font-size: 18px;
    font-weight: 700;
    margin-left: 4px;
}

/* ================================================================ */
/* RESPONSIVE - TABLET (769px - 1024px)                           */
/* ================================================================ */

@media (max-width: 1024px) {
    .top-marquee {
        padding: 6px 0;
    }

    .marquee-track {
        gap: 30px;
        animation: marqueeScroll 25s linear infinite;
    }

    .marquee-item {
        font-size: 12px;
        gap: 8px;
    }

    .marquee-icon svg {
        width: 14px;
        height: 14px;
    }

    .marquee-dot {
        font-size: 16px;
    }
}

/* ================================================================ */
/* RESPONSIVE - MOBILE (481px - 768px)                            */
/* ================================================================ */

@media (max-width: 768px) {
    .top-marquee {
        padding: 5px 0;
        border-bottom-width: 1.5px;
    }

    .marquee-track {
        gap: 20px;
        animation: marqueeScroll 18s linear infinite;
        padding: 0 12px;
    }

    .marquee-item {
        font-size: 10px;
        gap: 6px;
    }

    .marquee-icon svg {
        width: 12px;
        height: 12px;
    }

    .marquee-dot {
        font-size: 14px;
    }
}

/* ================================================================ */
/* RESPONSIVE - SMALL MOBILE (380px - 480px)                      */
/* ================================================================ */

@media (max-width: 480px) {
    .top-marquee {
        padding: 4px 0;
    }

    .marquee-track {
        gap: 14px;
        animation: marqueeScroll 14s linear infinite;
        padding: 0 8px;
    }

    .marquee-item {
        font-size: 8px;
        gap: 4px;
        letter-spacing: 0.3px;
    }

    .marquee-icon svg {
        width: 10px;
        height: 10px;
    }

    .marquee-dot {
        font-size: 10px;
    }
}

/* ================================================================ */
/* RESPONSIVE - EXTRA SMALL (≤379px)                              */
/* ================================================================ */

@media (max-width: 379px) {
    .top-marquee {
        padding: 3px 0;
    }

    .marquee-track {
        gap: 10px;
        animation: marqueeScroll 12s linear infinite;
        padding: 0 6px;
    }

    .marquee-item {
        font-size: 7px;
        gap: 3px;
        letter-spacing: 0.2px;
    }

    .marquee-icon svg {
        width: 8px;
        height: 8px;
    }

    .marquee-dot {
        font-size: 8px;
    }
}

/* ================================================================ */
/* RESPONSIVE - VERY SMALL (≤320px)                               */
/* ================================================================ */

@media (max-width: 320px) {
    .marquee-track {
        gap: 8px;
        animation: marqueeScroll 10s linear infinite;
        padding: 0 4px;
    }

    .marquee-item {
        font-size: 6px;
        gap: 2px;
        letter-spacing: 0;
    }

    .marquee-icon svg {
        width: 7px;
        height: 7px;
    }

    .marquee-dot {
        font-size: 6px;
    }
}

/* ================================================================ */
/* PERFORMANCE OPTIMIZATION                                        */
/* ================================================================ */

.marquee-track {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.marquee-track {
    will-change: transform;
}/* ================================================================ */
/* TOP MARQUEE STRIP - Premium Header Banner                      */
/* Fully Responsive | Continuous Smooth Animation                  */
/* ================================================================ */

.top-marquee {
    width: 100%;
    background: #082A66;
    color: #ffffff;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    z-index: 999;
    border-bottom: 2px solid #c9a227;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
    padding: 0 20px;
    will-change: transform;
}

.marquee-track:hover {
    animation-play-state: paused;
}

/* ===== CONTINUOUS SMOOTH ANIMATION ===== */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== MARQUEE ITEMS ===== */
.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.marquee-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.marquee-icon svg {
    width: 16px;
    height: 16px;
    stroke: #c9a227;
    stroke-width: 2.5;
    flex-shrink: 0;
}

.marquee-text {
    color: #ffffff;
    opacity: 0.9;
    font-weight: 500;
}

.marquee-dot {
    color: #c9a227;
    font-size: 18px;
    font-weight: 700;
    margin-left: 4px;
}

/* ================================================================ */
/* RESPONSIVE - TABLET (769px - 1024px)                           */
/* ================================================================ */

@media (max-width: 1024px) {
    .top-marquee {
        padding: 6px 0;
    }

    .marquee-track {
        gap: 30px;
        animation: marqueeScroll 25s linear infinite;
    }

    .marquee-item {
        font-size: 12px;
        gap: 8px;
    }

    .marquee-icon svg {
        width: 14px;
        height: 14px;
    }

    .marquee-dot {
        font-size: 16px;
    }
}

/* ================================================================ */
/* RESPONSIVE - MOBILE (481px - 768px)                            */
/* ================================================================ */

@media (max-width: 768px) {
    .top-marquee {
        padding: 5px 0;
        border-bottom-width: 1.5px;
    }

    .marquee-track {
        gap: 20px;
        animation: marqueeScroll 18s linear infinite;
        padding: 0 12px;
    }

    .marquee-item {
        font-size: 10px;
        gap: 6px;
    }

    .marquee-icon svg {
        width: 12px;
        height: 12px;
    }

    .marquee-dot {
        font-size: 14px;
    }
}

/* ================================================================ */
/* RESPONSIVE - SMALL MOBILE (380px - 480px)                      */
/* ================================================================ */

@media (max-width: 480px) {
    .top-marquee {
        padding: 4px 0;
    }

    .marquee-track {
        gap: 14px;
        animation: marqueeScroll 14s linear infinite;
        padding: 0 8px;
    }

    .marquee-item {
        font-size: 8px;
        gap: 4px;
        letter-spacing: 0.3px;
    }

    .marquee-icon svg {
        width: 10px;
        height: 10px;
    }

    .marquee-dot {
        font-size: 10px;
    }
}

/* ================================================================ */
/* RESPONSIVE - EXTRA SMALL (≤379px)                              */
/* ================================================================ */

@media (max-width: 379px) {
    .top-marquee {
        padding: 3px 0;
    }

    .marquee-track {
        gap: 10px;
        animation: marqueeScroll 12s linear infinite;
        padding: 0 6px;
    }

    .marquee-item {
        font-size: 7px;
        gap: 3px;
        letter-spacing: 0.2px;
    }

    .marquee-icon svg {
        width: 8px;
        height: 8px;
    }

    .marquee-dot {
        font-size: 8px;
    }
}

/* ================================================================ */
/* RESPONSIVE - VERY SMALL (≤320px)                               */
/* ================================================================ */

@media (max-width: 320px) {
    .marquee-track {
        gap: 8px;
        animation: marqueeScroll 10s linear infinite;
        padding: 0 4px;
    }

    .marquee-item {
        font-size: 6px;
        gap: 2px;
        letter-spacing: 0;
    }

    .marquee-icon svg {
        width: 7px;
        height: 7px;
    }

    .marquee-dot {
        font-size: 6px;
    }
}

/* ================================================================ */
/* PERFORMANCE OPTIMIZATION                                        */
/* ================================================================ */

.marquee-track {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.marquee-track {
    will-change: transform;
}



/* ================================================================ */
/* MOBILE SEARCH HERO - Appears above hero on mobile only          */
/* ================================================================ */

.mobile-search-hero {
  display: none;
  width: 100%;
  padding: 12px 16px 8px;
  background: #ffffff;
  border-bottom: 1px solid #efefef;
}

.mobile-search-hero__container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.mobile-search-hero__form {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 48px;
  padding: 0 6px 0 16px;
  border: 1.5px solid #bdbdbd;
  border-radius: 10px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.mobile-search-hero__form:focus-within {
  border-color: #00254e;
  box-shadow: 0 0 0 3px rgba(0, 37, 78, 0.08);
}

.mobile-search-hero__icon {
  width: 20px;
  height: 20px;
  color: #999999;
  flex-shrink: 0;
}

.mobile-search-hero__form input {
  flex: 1;
  height: 100%;
  padding: 0 8px;
  font-size: 15px;
  font-weight: 400;
  color: #1a1a1a;
  background: transparent;
  border: none;
  outline: none;
  min-width: 0;
}

.mobile-search-hero__form input::placeholder {
  color: #999999;
  font-weight: 400;
}

.mobile-search-hero__btn {
  padding: 8px 20px;
  background: linear-gradient(135deg, #4a90d9, #2d5a9e);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}

.mobile-search-hero__btn:hover {
  background: linear-gradient(135deg, #5ba0e8, #3a7abd);
  transform: scale(1.02);
}

.mobile-search-hero__btn:active {
  transform: scale(0.97);
}

/* ================================================================ */
/* SHOW ON MOBILE (≤ 1023px) - Hide Desktop Search Bar            */
/* ================================================================ */

@media (max-width: 1023px) {
  .mobile-search-hero {
    display: block;
  }

  /* Hide the desktop search bar */
  .search-bar {
    display: none !important;
  }

  /* Hide the mobile search drawer (inside header) */
  .mobile-search {
    display: none !important;
  }

  /* Adjust header spacing */
  .header-main__inner {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    padding: 8px 12px;
  }

  /* Hide search toggle button if exists */
  .search-toggle-btn {
    display: none !important;
  }
}

/* ================================================================ */
/* TABLET (768px - 1023px)                                        */
/* ================================================================ */

@media (min-width: 768px) and (max-width: 1023px) {
  .mobile-search-hero {
    padding: 10px 20px 6px;
  }

  .mobile-search-hero__form {
    height: 50px;
    border-radius: 12px;
  }

  .mobile-search-hero__form input {
    font-size: 16px;
  }

  .mobile-search-hero__btn {
    padding: 10px 28px;
    font-size: 15px;
    border-radius: 10px;
  }

  .mobile-search-hero__icon {
    width: 22px;
    height: 22px;
  }
}

/* ================================================================ */
/* MOBILE SMALL (≤ 480px)                                         */
/* ================================================================ */

@media (max-width: 480px) {
  .mobile-search-hero {
    padding: 10px 12px 6px;
  }

  .mobile-search-hero__form {
    height: 44px;
    padding: 0 4px 0 12px;
    border-radius: 8px;
  }

  .mobile-search-hero__form input {
    font-size: 14px;
    padding: 0 6px;
  }

  .mobile-search-hero__btn {
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 6px;
  }

  .mobile-search-hero__icon {
    width: 18px;
    height: 18px;
  }
}

/* ================================================================ */
/* EXTRA SMALL (≤ 360px)                                          */
/* ================================================================ */

@media (max-width: 360px) {
  .mobile-search-hero {
    padding: 8px 8px 4px;
  }

  .mobile-search-hero__form {
    height: 40px;
    padding: 0 4px 0 10px;
    border-radius: 6px;
  }

  .mobile-search-hero__form input {
    font-size: 13px;
  }

  .mobile-search-hero__btn {
    padding: 5px 12px;
    font-size: 11px;
    border-radius: 5px;
  }

  .mobile-search-hero__icon {
    width: 16px;
    height: 16px;
  }
}

/* ================================================================ */
/* PERFORMANCE OPTIMIZATION                                        */
/* ================================================================ */

.mobile-search-hero__form {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.mobile-search-hero__btn {
  transition: all 0.3s ease;
}



