*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  --primary-color: #BDA44C;
  --secondary-color: #008080;
  --background-color: #fff;
  --text-color: #333;
}

.col-sec{
  color: var(--secondary-color);
}
.col-pri{
  color: var(--primary-color);
}
/* header  */

  header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1001;
  }

  .header-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
    gap: 16px;
  }

  .mobile-brand {
    display: none;
    align-items: center;
    gap: 12px;
  }

  .desktop-logo {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    /* color: var(--secondary-color); */
    color: var(--primary-color);
    font-size: 24px;
    padding: 8px;
    line-height: 1;
    cursor: pointer;
    width: 40px;
    height: 40px;
    z-index: 1051;
    flex-shrink: 0;
  }

  .header-logo{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
  }

  .header-logo a{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
  }

  .logo {
    height: 50px;
  }

  .search-box{
    display: flex;
    align-items: center;
    border: 1px solid var(--secondary-color);
    gap: 10px;
    /* background: var(--primary-color); */
    border-radius: 30px;
  }

  #search-box {
    padding: 8px;
    /* border: 1px solid #ccc; */
    border-radius: 25px;
    border: none;
        color: dimgray;
    padding-left: 20px;
    width: 400px;
  }

  #search-box:focus {
    outline: none;
    border-color: none;
  }
  .search-box i{
        color: var(--secondary-color);
    /* border: 2px solid black; */
    font-size: 18px;
    padding-right: 10px;
  }
  .header-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .header-icons a {
    color: var(--primary-color);
    font-size: 18px;
  }

  .header-icons .icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 16px;
    transition: color 0.3s ease;
  }

  .header-icons .icon-item:hover {
    color: var(--secondary-color);
  }

  .header-icons .icon-item i {
    font-size: 20px;
  }

  .header-icons .icon-item span {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
  }

  .more-menu {
    position: relative;
  }

  .more-menu-toggle {
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    font: inherit;
  }

  .more-menu-panel {
    top: calc(100% + 14px);
    right: 0;
    min-width: 320px;
    width: 360px;
    padding: 0;
    overflow: hidden;
  }

  /* Prevent the panel from opening on hover; open only when `.is-open` is added via JS */
  .more-menu:not(.is-open):hover .more-menu-panel,
  .more-menu.nav-item.has-mega-menu:not(.is-open):hover .more-menu-panel {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(8px) !important;
  }

  .more-menu-accordion {
    display: flex;
    flex-direction: column;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    padding:0;
    border-bottom: 1px solid #eef1f5;
  }

  .more-menu-section-toggle,
  .more-menu-quick-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 22px;
    background: transparent;
    border: 0;
    color: #0f2d5c;
    text-decoration: none;
    font-size: 15px !important;
    text-align: left;
    cursor: pointer;
  }

  .more-menu-section-toggle {
    font-weight: 500;
  }

  .more-menu-section-icon {
    color: #b8bfd0;
    font-size: 18px;
    transition: transform 0.2s ease, color 0.2s ease;
  }

  .more-menu-section-content {
    display: none;
    padding: 0 0 8px;
  }

  /* Make section links stack top -> bottom */
  .more-menu-section-content a {
    display: block;
    padding: 12px 22px 12px 30px;
    color: #27324a;
    text-decoration: none;
  }

  .more-menu-section.is-open .more-menu-section-content {
    display: block;
  }

  .more-menu-section.is-open .more-menu-section-toggle {
    color: var(--secondary-color);
  }

  .more-menu-section.is-open .more-menu-section-icon {
    color: var(--secondary-color);
    transform: rotate(180deg);
  }

  .more-menu-section-content a,
  .more-menu-quick-link {
    font-size: 14px;
    /* padding: 12px 22px 12px 30px; */
    color: #27324a;
    border-top: 1px solid #f2f4f7;
  }

  .more-menu-section-content a {
    justify-content: space-between;
  }

  .more-menu-section-content a i,
  .more-menu-quick-link i {
    color: #b8bfd0;
    font-size: 13px;
    flex: 0 0 auto;
  }

  .more-menu-quick-link {
    border-bottom: 0;
    font-weight: 500;
  }

  .more-menu-quick-link i {
    color: #b8bfd0;
    font-size: 14px;
  }

  .more-menu.is-open .more-menu-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .more-menu.is-open .more-menu-toggle {
    color: var(--secondary-color);
  }

  .nav-main{
    position: sticky;
    top: 90px;
    width: 100%;
    background-color: var(--secondary-color);
    display: block;
    z-index: 999;
    left: 0;
    right: 0;
  }
  .nav-main .nav-link{
    color: #fff;
    font-weight: 500;
    padding: 15px 20px;
    transition: background-color 0.3s ease;
  }

  .nav-caret {
    /* margin-left: 6px; */
    font-size: 12px;
    vertical-align: middle;
  }

  .nav-item.has-mega-menu {
    position: relative;
  }

  .mega-menu {
    position: absolute;
    /* top: calc(100% + 10px); */
    left: 0;
    width: max-content;
    max-width: calc(100vw - 40px);
    transform: translateY(8px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.14);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1200;
  }

  .nav-item.has-mega-menu.is-open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-item.has-mega-menu.submenu-end .mega-menu {
    left: auto;
    right: 0;
  }

  .nav-item.has-mega-menu:hover .mega-menu,
  .nav-item.has-mega-menu:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-item.has-mega-menu.submenu-end:hover .mega-menu,
  .nav-item.has-mega-menu.submenu-end:focus-within .mega-menu,
  .nav-item.has-mega-menu.submenu-end.is-open .mega-menu {
    left: auto;
    right: 0;
  }

  .mega-menu-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 28px;
    align-items: start;
    width: max-content;
  }

  .mega-menu-column {
    min-width: 180px;
    flex: 0 0 180px;
  }

  .mega-menu-column h4 {
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9edf2;
    color: #0f2d5c;
    font-size: 18px;
    font-weight: 600;
  }

  .mega-menu-column a {
    display: block;
    margin-bottom: 12px;
    color: #27324a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
  }

  .mega-menu-column a:hover {
    color: var(--secondary-color);
  }

  .mega-menu-promo {
    display: block;
    flex: 0 0 240px;
  }

  .mega-menu-image-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mega-menu-image-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    color: #0f2d5c;
  }

  .mega-menu-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e6edf7;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    background: #fff;
  }

  .mega-menu-image-label {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
  }

  .promo-box {
    min-height: 240px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef3fb 100%);
    border: 1px solid #e6edf7;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #0f2d5c;
    font-size: 18px;
    line-height: 1.5;
  }

  .promo-box-soft {
    background: linear-gradient(135deg, rgba(189, 164, 76, 0.08), rgba(0, 128, 128, 0.08));
  }

  .nav-close-btn {
    display: none;
  }

  @media (max-width: 767.98px) {
    .mobile-brand {
      display: flex;
    }

    .header-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .mobile-menu-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .header-logo {
      justify-content: flex-start;
    }

    .desktop-logo {
      display: none;
    }

    .header-logo a {
      font-size: 13px;
      gap: 4px;
      text-align: left;
    }

    .mobile-brand {
      gap: 8px;
      flex: 1;
      min-width: 0;
    }

    .logo {
      height: 34px;
    }

    .search-box {
      display: none;
    }

    .header-icons a {
      margin-left: 12px;
      font-size: 16px;
    }

    .nav-main {
      position: fixed;
      top: 0;
      left: 0;
      width: 290px;
      height: 100vh;
      z-index: 1050;
      display: block;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
      overflow-y: hidden;
      overflow-x: hidden;
      box-shadow: 4px 0 18px rgba(0, 0, 0, 0.18);
      background-color: var(--secondary-color);
    }

    .nav-main.is-open {
      transform: translateX(0);
    }

    .nav-close-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 14px;
      left: 14px;
      width: 36px;
      height: 36px;
      border: none;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
      font-size: 18px;
      z-index: 2;
    }

    .nav-main .nav {
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      padding-top: 60px;
    }

    .nav-main .nav-link {
      padding: 12px 16px;
      text-align: left;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .nav-item.has-mega-menu .mega-menu {
      display: none;
    }

    .nav-item.has-mega-menu.is-open .mega-menu {
      display: block;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      position: static;
      width: 100%;
      transform: none;
      box-shadow: none;
      border-radius: 0;
      padding: 0 0 10px;
      margin-top: 0;
    }

    .nav-item.has-mega-menu.is-open .mega-menu-grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .nav-item.has-mega-menu.is-open .mega-menu-column h4 {
      font-size: 16px;
    }

    .nav-item.has-mega-menu.is-open .mega-menu-column a {
      margin-bottom: 10px;
    }

    body.nav-open::after {
      content: '';
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.35);
      z-index: 1040;
    }
  }

  /* Auto-collapse nav when it wraps: apply mobile nav styles when body.nav-collapsed is set */
  body.nav-collapsed .mobile-brand {
    display: flex;
  }

  body.nav-collapsed .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  body.nav-collapsed .desktop-logo {
    display: none;
  }

  body.nav-collapsed .header-logo {
    justify-content: flex-start;
  }

  body.nav-collapsed .header-logo a {
    font-size: 13px;
    gap: 4px;
    text-align: left;
  }

  body.nav-collapsed .logo {
    height: 34px;
  }

  body.nav-collapsed .search-box {
    display: none;
  }

  body.nav-collapsed .header-icons a {
    margin-left: 12px;
    font-size: 16px;
  }

  body.nav-collapsed .nav-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 290px;
    height: 100vh;
    z-index: 1050;
    display: block;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 4px 0 18px rgba(0, 0, 0, 0.18);
    background-color: var(--secondary-color);
  }

  body.nav-collapsed .nav-main.is-open {
    transform: translateX(0);
  }

  body.nav-collapsed .nav-close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 14px;
    left: 14px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 18px;
    z-index: 2;
  }

  body.nav-collapsed .nav-main .nav {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding-top: 60px;
  }

  body.nav-collapsed .nav-main .nav-link {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  body.nav-collapsed .nav-item.has-mega-menu .mega-menu {
    display: none;
  }

  body.nav-collapsed .nav-item.has-mega-menu.is-open .mega-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: static;
    width: 100%;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 10px;
    margin-top: 0;
  }

  /* Sidebar: stack mega-menu sections vertically (top → down) and keep sidebar responsive */
  body.nav-collapsed .nav-item.has-mega-menu.is-open .mega-menu-grid {
    display: block;
    width: 100%;
    padding: 8px 10px 12px;
    box-sizing: border-box;
  }

  body.nav-collapsed .nav-item.has-mega-menu.is-open .mega-menu-column,
  body.nav-collapsed .nav-item.has-mega-menu.is-open .mega-menu-promo {
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 45, 92, 0.06);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 12px;
  }

  body.nav-collapsed .mega-menu-image {
    height: 130px;
  }

  body.nav-collapsed .nav-item.has-mega-menu.is-open .mega-menu-promo {
    margin-bottom: 8px;
  }

  /* Make the sidebar width responsive on small screens */
  body.nav-collapsed .nav-main {
    width: 320px;
    max-width: calc(100vw - 40px);
  }

  body.nav-collapsed .nav-item.has-mega-menu.is-open .mega-menu-grid::-webkit-scrollbar {
    display: none;
  }

  /* leave existing overlay (body.nav-open::after) to provide backdrop */

  @media (min-width: 768px) {
    body:not(.nav-collapsed) .nav-main {
      position: relative;
      top: auto;
      left: auto;
      width: 100%;
      height: auto;
      transform: none;
      overflow: visible;
      box-shadow: none;
      display: block;
    }

    body:not(.nav-collapsed) .nav-main .nav {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      padding-top: 0;
    }

  body:not(.nav-collapsed) .nav-main .nav-link {
      border-bottom: 0;
      white-space: nowrap;
    }
  }

/* Shop wishlist heart */
.product-img .product-wishlist-btn {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #9aa0a6;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.product-img .product-wishlist-btn i {
  font-size: 21px;
}

.product-img .product-wishlist-btn:hover,
.product-img .product-wishlist-btn.is-active {
  background: #fff;
  color: #d23b3b;
  transform: scale(1.06);
}

.wishlist-toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 1600;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  background: #0f2d5c;
  color: #fff;
  border-radius: 6px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(15, 45, 92, 0.22);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.wishlist-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Wishlist Page */
.wishlist-page {
  background: #faf8f2;
  padding: 42px 0 70px;
}

.wishlist-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}

.wishlist-kicker {
  display: inline-flex;
  color: var(--secondary-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.wishlist-hero h1 {
  color: #0f2d5c;
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 10px;
}

.wishlist-hero p {
  color: #5f6675;
  font-size: 16px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0;
}

.wishlist-summary {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(189, 164, 76, 0.35);
  box-shadow: 0 16px 35px rgba(15, 45, 92, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #0f2d5c;
  text-align: center;
}

.wishlist-summary span {
  color: var(--primary-color);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.wishlist-summary small {
  color: #6c7280;
  font-size: 13px;
  margin-top: 6px;
}

.wishlist-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.wishlist-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wishlist-filter,
.wishlist-clear {
  border: 1px solid rgba(15, 45, 92, 0.14);
  background: #fff;
  color: #0f2d5c;
  border-radius: 6px;
  min-height: 40px;
  padding: 8px 15px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.wishlist-filter:hover,
.wishlist-filter.is-active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
}

.wishlist-clear {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9a3b3b;
}

.wishlist-clear:hover {
  background: #9a3b3b;
  border-color: #9a3b3b;
  color: #fff;
  transform: translateY(-1px);
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.wishlist-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15, 45, 92, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 45, 92, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease;
}

.wishlist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(15, 45, 92, 0.12);
}

.wishlist-card.is-hidden {
  display: none;
}

.wishlist-card.is-removing {
  opacity: 0;
  transform: scale(0.96);
}

.wishlist-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #9a3b3b;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.wishlist-remove:hover {
  background: #9a3b3b;
  color: #fff;
}

.wishlist-image {
  display: block;
  aspect-ratio: 1 / 0.82;
  background: #f5f1e8;
  overflow: hidden;
}

.wishlist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.wishlist-card:hover .wishlist-image img {
  transform: scale(1.06);
}

.wishlist-card-body {
  padding: 18px;
}

.wishlist-category {
  color: var(--secondary-color);
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
}

.wishlist-card-body h2 {
  color: #0f2d5c;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  min-height: 48px;
  margin: 0 0 8px;
}

.wishlist-card-body p {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
}

.wishlist-actions {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 10px;
}

.wishlist-primary,
.wishlist-secondary,
.wishlist-empty a {
  min-height: 44px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
}

.wishlist-primary {
  background: var(--primary-color);
  color: #fff;
}

.wishlist-primary:hover {
  background: var(--secondary-color);
  color: #fff;
}

.wishlist-secondary {
  border: 1px solid rgba(15, 45, 92, 0.16);
  color: #0f2d5c;
}

.wishlist-secondary:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.wishlist-empty {
  background: #fff;
  border: 1px solid rgba(15, 45, 92, 0.08);
  border-radius: 8px;
  padding: 56px 22px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(15, 45, 92, 0.06);
}

.wishlist-empty i {
  color: var(--primary-color);
  font-size: 42px;
  margin-bottom: 16px;
}

.wishlist-empty h2 {
  color: #0f2d5c;
  font-size: 26px;
  margin-bottom: 8px;
}

.wishlist-empty p {
  color: #626b7a;
  margin-bottom: 22px;
}

.wishlist-empty a {
  background: var(--secondary-color);
  color: #fff;
  padding: 0 22px;
}

.wishlist-empty a:hover {
  background: var(--primary-color);
  color: #fff;
}

@media (max-width: 991.98px) {
  .wishlist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .wishlist-page {
    padding: 30px 0 52px;
  }

  .wishlist-hero {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .wishlist-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .wishlist-hero h1 {
    font-size: 34px;
  }

  .wishlist-summary {
    width: 100%;
    height: auto;
    border-radius: 8px;
    padding: 16px;
  }

  .wishlist-filters,
  .wishlist-clear {
    width: 100%;
  }

  .wishlist-filter {
    flex: 1 1 auto;
  }

  .wishlist-clear {
    justify-content: center;
  }

  .wishlist-grid {
    grid-template-columns: 1fr;
  }
}

  /* footer  */

  .site-footer {
    background: #042846;
    /* background: var(--secondary-color); */
    color: #e8f1ff;
    padding: 60px 0 26px;
    margin-top: 60px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 44px;
  }

  .footer-col,
  .footer-col-wide {
    min-width: 0;
  }

  .footer-col h3 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
  }

  .footer-heading-spaced {
    margin-top: 26px;
  }

  .footer-col ul {
    list-style: none;
    margin: 0 0 0;
    padding: 0;
  }

  .footer-col li {
    margin-bottom: 12px;
  }

  .footer-col a,
  .footer-note {
    color: #d0dced;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .footer-col a:hover {
    color: #ffffff;
  }

/* Overrides: ensure More menu opens only on click and section links stack vertically */
.more-menu.nav-item.has-mega-menu:not(.is-open):hover .mega-menu,
.more-menu.nav-item.has-mega-menu:not(.is-open):focus-within .mega-menu {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(8px) !important;
}

.more-menu-section-content {
  display: none;
  padding: 0 0 8px;
}

.more-menu-section-content a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100% !important;
  padding: 12px 22px 12px 30px !important;
  box-sizing: border-box !important;
}

.more-menu-section-content a span {
  padding-right: 12px;
}

.more-menu-section-content a i {
  margin-left: auto;
  flex: 0 0 auto;
}

/* Keep the header More dropdown out of the header flow in collapsed/mobile layouts. */
.header-icons .more-menu.nav-item.has-mega-menu .more-menu-panel {
  display: block;
  position: absolute;
  top: calc(100% + 12px);
  left: auto;
  right: 0;
  min-width: min(320px, calc(100vw - 24px));
  width: min(360px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  padding: 0;
  z-index: 1300;
}

.header-icons .more-menu.nav-item.has-mega-menu.is-open .more-menu-panel {
  display: block;
  position: absolute;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.14);
  border-radius: 12px;
}

  .footer-text {
    color: #d0dced;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .footer-col-wide {
    grid-column: span 1;
  }

  .app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
  }

  .app-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    min-width: 155px;
  }

  .app-btn i {
    font-size: 26px;
  }

  .app-btn small {
    display: block;
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
  }

  .app-btn strong {
    display: block;
    font-size: 15px;
    line-height: 1.1;
  }

  .newsletter-block h3 {
    margin-bottom: 14px;
  }

  .newsletter-form {
    display: flex;
    width: 100%;
    max-width: 520px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
  }

  .newsletter-form input {
    flex: 1;
    border: 0;
    outline: none;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 15px;
  }

  .newsletter-form input::placeholder {
    color: #b9c9da;
  }

  .newsletter-form button {
    border: 0;
    padding: 14px 20px;
    background: #ffffff;
    color: #0a2e4e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1.2fr  1fr;
    gap: 20px;
    align-items: center;
    margin-top: 40px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-social,
  .footer-payments,
  .footer-copy {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .footer-social span,
  .footer-payments span,
  .footer-copy p {
    margin: 0;
    color: #d0dced;
    font-size: 14px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #ffffff;
    color: #042846;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }

  .payment-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .payment-badges span {
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);

  
    color: #d0dced;
    font-size: 13px;
  }

  .footer-copy {
    justify-content: flex-end;
    text-align: right;
  }

  @media (max-width: 991.98px) {
    .footer-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 30px;
    }

    .footer-bottom {
      grid-template-columns: 1fr;
      text-align: left;
    }

    .footer-copy {
      justify-content: flex-start;
      text-align: left;
    }
  }

  @media (max-width: 767.98px) {
    .site-footer {
      padding: 44px 0 22px;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 22px;
    }

    .footer-heading-spaced {
      margin-top: 18px;
    }

    .app-buttons {
      flex-direction: column;
      align-items: stretch;
    }

  

    .app-btn {
      width: 100%;
      min-width: 0;
      justify-content: center;
    }

    .newsletter-form {
      flex-direction: column;
      max-width: none;
      border-radius: 0;
      background: transparent;
      gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
      width: 100%;
      border-radius: 10px;
    }

    .footer-social,
    .footer-payments,
    .footer-copy {
      width: 100%;
    }

    .footer-social {
      justify-content: flex-start;
    }

    .footer-bottom {
      gap: 18px;
    }

    .footer-payments,
    .footer-copy {
      justify-content: flex-start;
    }
  }

  @media (max-width: 479.98px) {
    .footer-col h3 {
      font-size: 16px;
    }

    .footer-col a,
    .footer-note,
    .footer-text,
    .footer-social span,
    .footer-payments span,
    .footer-copy p {
      font-size: 13px;
    }

    .footer-social a {
      width: 36px;
      height: 36px;
    }

    .payment-badges span {
      font-size: 12px;
      padding: 7px 10px;
    }
  }


  /* style strip section */
  .style-strip-section {
    padding: 24px 0 0;
    background: #fff;
  }

  .style-strip-scroll {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 8px;
    overflow-x: auto !important;
    overflow-y: hidden;
    padding: 40px 0 12px ;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #8f8f8f transparent;
  }

  .style-strip-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    flex: 0 0 320px;
  }

  .style-strip-label {
    display: block;
    font-size: 14px;
    color: #c7c7c7;
    margin: 0 0 8px 6px;
    white-space: nowrap;
  }

  .style-strip-media {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border: 2px solid #b08bb4;
    border-radius: 10px;
    background: #111;
  }

  .style-strip-scroll::-webkit-scrollbar {
    height: 8px;
  }

  .style-strip-scroll::-webkit-scrollbar-track {
    background: transparent;
  }

  .style-strip-scroll::-webkit-scrollbar-thumb {
    background: #8f8f8f;
    border-radius: 999px;
  }

  @media (max-width: 1599.98px) {
    .style-strip-card {
      flex-basis: 300px;
    }

    .style-strip-media {
      height: 460px;
    }
  }

  @media (max-width: 1399.98px) {
    .style-strip-card {
      flex-basis: 280px;
    }

    .style-strip-media {
      height: 430px;
    }
  }

  @media (max-width: 1199.98px) {
    .style-strip-card {
      flex-basis: 260px;
    }

    .style-strip-media {
      height: 420px;
    }
  }

  @media (max-width: 767.98px) {
    .style-strip-section {
      padding-top: 20px;
    }

    .style-strip-scroll {
      gap: 8px;
      padding-inline: 14px;
    }

    .style-strip-card {
      flex-basis: 240px;
    }

    .style-strip-media {
      height: 360px;
    }
  }

  @media (max-width: 479.98px) {
    .style-strip-scroll {
      padding-inline: 10px;
    }

    .style-strip-card {
      flex-basis: 220px;
    }

    .style-strip-media {
      height: 320px;
    }

    .style-strip-label {
      margin-left: 4px;
      font-size: 12px;
    }
  }


  /* photo design section */
  .photo-design-section {
    padding: 24px 0 0;
    background: #fff;
  }

  .photo-design-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 10px;
    align-items: stretch;
  }

  .photo-design-side {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-width: 0;
  }

  .photo-design-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    min-width: 0;
  }

  .photo-design-card-large {
    max-height: 500px;
  }

  .photo-design-card-small {
    max-height: 245px;
  }

  .photo-design-label {
    position: absolute;
    top: 12px;
    left: 14px;
    z-index: 2;
    color: #cfcfcf;
    font-size: 15px;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  }

  .photo-design-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  @media (max-width: 1199.98px) {
    .photo-design-card-large {
      min-height: 500px;
    }

    .photo-design-card-small {
      min-height: 245px;
    }
  }

  @media (max-width: 991.98px) {
    .photo-design-grid {
      grid-template-columns: 1fr;
    }

    .photo-design-side {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: none;
    }

    .photo-design-card-large {
      min-height: 400px;
    }

    .photo-design-card-small {
      min-height: 195px;
    }
  }

  @media (max-width: 767.98px) {
    .photo-design-section {
      padding-top: 20px;
    }

    .photo-design-side {
      grid-template-columns: 1fr;
    }

    .photo-design-card-large,
    .photo-design-card-small {
      min-height: 360px;
    }
  }

  @media (max-width: 479.98px) {
    .photo-design-card-large,
    .photo-design-card-small {
      min-height: 300px;
    }

    .photo-design-label {
      font-size: 12px;
      top: 10px;
      left: 10px;
    }
  }

  /* Trust Badges Section */
  .trust-badges-section {
    /* background-color: #f5f3f0; */
    background-color: #CCE5E5;
    padding: 40px 20px;
  }

  .badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .badge-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
  }

  .badge-item i{
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 24px;
  }

  .badge-icon {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 12px;
  }

  .badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    line-height: 1.4;
  }

  /* Responsive Trust Badges */
  @media (max-width: 1199.98px) {
    .badges-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }
  }

  @media (max-width: 767.98px) {
    .trust-badges-section {
      padding: 30px 15px;
    }

    .badges-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .badge-icon {
      font-size: 36px;
      margin-bottom: 8px;
    }

    .badge-text {
      font-size: 12px;
    }
  }

  @media (max-width: 479.98px) {
    .trust-badges-section {
      padding: 25px 15px;
    }

    .badges-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .badge-icon {
      font-size: 32px;
    }

    .badge-text {
      font-size: 11px;
    }
  }

  /* CTA Section */
  .cta-section {
    background: linear-gradient(135deg, rgba(189, 164, 76, 0.08) 0%, rgba(0, 128, 128, 0.06) 100%);
    padding: 80px 20px;
    margin: 60px 0;
  }

  .cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .cta-headline {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .cta-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
  }

  .cta-button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .cta-button:hover {
    background-color: #4ea6a6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px #ace3e3;
  }

  .cta-button:active {
    transform: translateY(0);
  }

  /* Responsive CTA Section */
  @media (max-width: 767.98px) {
    .cta-section {
      padding: 60px 20px;
      margin: 40px 0;
    }

    .cta-headline {
      font-size: 32px;
    }

    .cta-description {
      font-size: 16px;
    }

    .cta-button {
      padding: 14px 40px;
      font-size: 14px;
    }
  }

  @media (max-width: 479.98px) {
    .cta-section {
      padding: 40px 15px;
      margin: 30px 0;
    }

    .cta-headline {
      font-size: 24px;
      margin-bottom: 16px;
    }

    .cta-description {
      font-size: 14px;
      margin-bottom: 30px;
    }

    .cta-button {
      padding: 12px 36px;
      font-size: 13px;
      width: 100%;
    }
  }

  /* home page  */

  /* hero section  */

  .hero-section {
  position: relative;
  height: 75vh;
  margin: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.slider {
  display: flex;

  .store-section{
    padding: 0 0 16px;
  }
  .store-section .container{
    padding-left: 0;
    padding-right: 0;
  }
  width: auto;
  height: 100%;
  transition: transform 1s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-btn {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-50%);
}
.nav-btn button {
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  padding: 10px;
  width: 40px;
    align-items: center;
    display: flex;
    justify-content: center;
  height: 40px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
}
.nav-btn button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  padding: 12px 15px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

.prev:hover, .next:hover {
  background: rgba(0,0,0,0.7);
}


/* category section  */

.category-section{
    padding: 50px 20px;
  }
  .category-slider {
    --category-gap: 16px;
  }
  .category-card{
    display: block;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    background: #CCE5E5;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .category-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .category-image{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
  }
  .category-title{
    margin-top: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
  }

  @media (max-width: 767.98px) {
    .category-slider {
      display: grid;
      grid-auto-flow: column;
      grid-template-rows: repeat(2, auto);
      grid-auto-columns: calc(50% - (var(--category-gap) / 2));
      overflow-x: auto;
      gap: var(--category-gap);
      padding-bottom: 10px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }

    .category-slider::-webkit-scrollbar {
      display: none;
    }

    .category-slider > [class*="col-"] {
      width: 100%;
      scroll-snap-align: start;
    }

    .category-image {
      height: 150px;
    }

    .category-title {
      font-size: 14px;
      margin-top: 10px;
    }

    .category-swipe-hint {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 10px;
      color: var(--secondary-color);
      font-size: 13px;
      font-weight: 600;
    }

    .category-swipe-hint i {
      font-size: 14px;
    }
  }



  /* shop now section  */


  /* Shop Now Section */
  .shop-now-section {
    padding: 0;
    background: #fff;
  }

  .promo-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .promo-image {
    position: absolute;
    width: 100%;
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
  }

  .promo-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
  }

  .promo-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .promo-btn {
    background-color: #222;
    color: #fff;
    border: none;
    padding: 12px 35px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .promo-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
  }

  .products-section {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    height: 400px;
    justify-content: center;
  }

  .products-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
  }

  .shop-carousel-wrapper {
    position: relative;
    margin-bottom: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .shop-carousel {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    scroll-behavior: smooth;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
  }

  .shop-carousel::-webkit-scrollbar {
    height: 6px;
  }

  .shop-carousel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .shop-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
  }

  .shop-product-card {
    flex: 0 0 calc(50% - 7.5px);
    background: #fff;
    border-radius: 15px;
    border: 2px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    scroll-snap-align: start;
  }

  .shop-product-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(189, 164, 76, 0.2);
  }

  .shop-product-image {
    width: 100%;
    height: 180px;
    background: #f5f5f5;
    overflow: hidden;
  }

  .shop-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .shop-product-card:hover .shop-product-image img {
    transform: scale(1.08);
  }

  .shop-product-info {
    padding: 12px;
    text-align: center;
  }

  .shop-product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 3px 0;
  }

  .shop-product-name {
    font-size: 12px;
    color: #666;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .shop-nav-btn {
    position: absolute;
    bottom: -60px;
    right: 0;
    display: flex;
    gap: 10px;
  }

  .shop-nav-btn button {
    background-color: var(--secondary-color);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .shop-nav-btn button:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
  }

  .shop-now-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .shop-now-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
  }

  @media (max-width: 992px) {
    .promo-title {
      font-size: 36px;
    }
    .products-section {
      height: auto;
      padding: 30px 20px;
    }
  }

  @media (max-width: 768px) {
    .shop-now-section .row {
      flex-direction: column;
    }

    .promo-banner {
      height: 400px;
    }

    .promo-title {
      font-size: 32px;
    }

    .products-section {
      height: auto;
    }

    .shop-product-card {
      flex: 0 0 calc(50% - 7.5px);
    }
  }


  /* contact section  */

  .contact-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.contact-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  margin-bottom: 15px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.contact-info ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

.contact-info i {
  color: var(--secondary-color);
  /* margin-right: 10px; */
}
.contact-info i:hover {
  /* color: #fff; */
  transform: translateY(-5px);

}

/* Social Icons */
.social-icons:hover{
  color: #fff;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  background: #fff;
  padding: 10px;
  border-radius: 50%;
  color: #333;
  transition: 0.3s;
}

.social-icons a:hover {
  /* background: var(--secondary-color); */
  /* color: #fff; */
  transform: translateY(-5px);
}

/* FORM */
.contact-form {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form h2 {
  margin-bottom: 20px;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.contact-form button {
  background: var(--secondary-color);
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.contact-list li {
  margin-bottom: 15px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  color: #333;
  transition: 0.3s;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* Icon Style */
.contact-list i {
  font-size: 18px;
  color: var(--secondary-color);
  transition: 0.3s;
}

/* Hover Effect */
.contact-list a:hover {
  transform: translateX(5px);
  background: var(--secondary-color);
  color: #fff;
}

.contact-list a:hover i {
  color: #fff;
}

/* Social Icons */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  color: #333;
  transition: 0.3s;
}

.social-icons a:hover {
  /* background: var(--secondary-color);
  color: #fff; */
  transform: scale(1.1);
}

.contact-form button:hover {
  background: var(--secondary-color);
}

/* MAP */
.map-section iframe {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}

/* faq section  */


.faq-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #fafafa;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 15px 0;
  font-size: 14px;
  color: #555;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* Hover */
.faq-question:hover {
  background: #f1f1f1;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-title {
    font-size: 26px;
  }
}

/* testimonial section  */

.testimonial-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
}

/* GRID */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  text-align: left;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
}

/* GOLD TOP BORDER EFFECT */
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--secondary-color));
}

/* USER INFO */
.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.user-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary-color);
}

.user-info h4 {
  margin: 0;
  font-size: 16px;
}

.user-info span {
  font-size: 13px;
  color: #777;
}

/* REVIEW */
.review {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

/* STARS */
.stars {
  color: var(--primary-color);
}

/* HOVER EFFECT */
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 26px;
  }
}



/* =========================
   WRAPPER
========================= */

.editorial-wrapper{
    background: #CCE5E5;
    padding: 20px;
}

/* =========================
   MAIN GRID
========================= */

.editorial-grid{
    display: grid;
    grid-template-columns: 1.6fr 2.4fr;
    gap: 12px;
    margin-bottom: 12px;
}

/* SECOND SECTION REVERSE */

.reverse-layout{
    grid-template-columns: 2.4fr 1.6fr;
}

/* =========================
   LARGE CARD
========================= */

.large-card{
    position: relative;
    min-height: 720px;
    overflow: hidden;
    border-radius: 18px;
}

/* =========================
   RIGHT SMALL GRID
========================= */

.right-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
}

/* =========================
   CARD
========================= */

.editorial-card{
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #111;
}

.editorial-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .4s;
}

.editorial-card:hover img{
    transform: scale(1.05);
}

/* =========================
   OVERLAY
========================= */

.editorial-card::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.35),
        rgba(0,0,0,0)
    );
}

/* =========================
   TAGS
========================= */

.editorial-tag{
    position: absolute;
    z-index: 2;
    color: #fff;
    font-family: serif;
    letter-spacing: 5px;
    font-weight: 300;
}

.top-left{
    top: 20px;
    left: 20px;
    font-size: 58px;
}

.bottom-right{
    bottom: 20px;
    right: 20px;
    font-size: 42px;
}

/* =========================
   BUTTON
========================= */

.shop-btn{
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    border: none;
    background: #fff;
    color: #000;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .editorial-grid,
    .reverse-layout{
        grid-template-columns: 1fr;
    }

    .large-card{
        min-height: 600px;
    }
}

@media(max-width:768px){

    .right-grid{
        grid-template-columns: repeat(2,1fr);
        grid-template-rows: repeat(3,260px);
    }

    .large-card{
        min-height: 450px;
    }

    .top-left{
        font-size: 42px;
    }

    .bottom-right{
        font-size: 30px;
    }
}

@media(max-width:576px){

    .editorial-wrapper{
        padding: 6px;
    }

    .editorial-grid,
    .reverse-layout{
        grid-template-columns: 1fr;
        gap: 6px;
        margin-bottom: 6px;
    }

    /* LARGE CARD */

    .large-card{
        min-height: 320px;
        order: 1;
    }

    /* SMALL GRID */

    .right-grid{
        order: 2;

        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-auto-rows: 160px;
        gap: 6px;
    }

    /* SMALL CARD */

    .right-grid .editorial-card{
        height: auto;
    }

    /* TEXT */

    .top-left{
        font-size: 30px;
        letter-spacing: 3px;
    }


    .bottom-right{
        font-size: 22px;
        letter-spacing: 2px;
    }

    /* BUTTON */

    .shop-btn{
        padding: 10px 18px;
        font-size: 12px;
    }
}

/* ========== Editorial height overrides (global, strong specificity) ========== */
.editorial-wrapper{
  --thumb-row: 160px;
  --thumb-gap: 8px;
}

/* Small-card rows use the variable so both sides can be calculated */
.editorial-wrapper .right-grid{
  grid-template-rows: repeat(2, var(--thumb-row)) !important;
  gap: var(--thumb-gap) !important;
}

/* Large card height = sum of thumbnail rows + gaps */
.editorial-wrapper .large-card{
  min-height: 0 !important;
  height: auto !important;
  max-height: calc(var(--thumb-row) * 2 + var(--thumb-gap)) !important;
  overflow: hidden !important;
}

/* Images fill their card */
.editorial-wrapper .editorial-card img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

@media (max-width:1200px){
  .editorial-wrapper{
    --thumb-row: 140px;
    --thumb-gap: 8px;
  }
  .editorial-wrapper .large-card{
    max-height: calc(var(--thumb-row) * 2 + var(--thumb-gap)) !important;
  }
}

@media (max-width:768px){
  .editorial-wrapper{
    --thumb-row: 120px;
    --thumb-gap: 8px;
  }
  /* on smaller screens we use 3 rows of thumbnails */
  .editorial-wrapper .right-grid{
    grid-template-rows: repeat(3, var(--thumb-row)) !important;
  }
  .editorial-wrapper .large-card{
    max-height: calc(var(--thumb-row) * 3 + calc(var(--thumb-gap) * 2)) !important;
  }
}

@media (max-width:576px){
  .editorial-wrapper{
    --thumb-row: 120px;
    --thumb-gap: 6px;
  }
  .editorial-wrapper .right-grid{
    grid-auto-rows: var(--thumb-row) !important;
  }
  .editorial-wrapper .large-card{
    max-height: calc(var(--thumb-row) * 2 + var(--thumb-gap)) !important;
  }
}

/* Larger screens: increase thumbnail + large-card height for clarity */
@media (min-width:2100px){
  .editorial-wrapper{
    --thumb-row: 340px;
    --thumb-gap: 16px;
  }
  .editorial-wrapper .right-grid{
    grid-template-rows: repeat(2, var(--thumb-row)) !important;
  }
  .editorial-wrapper .large-card{
    max-height: calc(var(--thumb-row) * 2 + var(--thumb-gap)) !important;
  }
}


/* Store section  */

.store-section{
  padding: 60px 20px;
  /* background: #f9f9f9; */
}

.store-image{
  width: 100%;
  height: auto;
  /* aspect-ratio: 16 / 9; */
  object-fit: contain;
  object-position: center center;
  display: block;
  border-radius: 20px;
  background: #fff;
}

@media (max-width: 768px){
  .store-image{
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 576px){
  .store-image{
    aspect-ratio: auto !important;
    object-fit: contain !important;
    height: auto !important;
    width: 100% !important;
    border-radius: 10px;
    margin: 0 auto;
  }
  .store-section{
    padding: 8px 0 12px;
  }
}

/* =========================
   ASJ PROMISE
   ========================= */
.promise-section{
  padding: 48px 0;
  background: #CCE5E5;
}
.promise-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.promise-left{
  padding-left: 20px;
  position: relative;
  display: flex;
  align-items: center;
}

.promise-image{
  max-width: 100%;
  height: auto;
  width: 500px;
  object-fit: contain;
  display: block;
  margin: 0;
}

.promise-title{
  font-family: serif;
  font-size: 72px;
  line-height: 0.9;
  color: #0f2d5c;
  margin: 0;
}
/* .promise-title:after{
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
} */
.promise-right .promise-card{
  border: 1px solid #dfe6ea;
  border-radius: 12px;
  padding: 28px 32px;
  background: #fff;
}
.promise-right .promise-card{
  border: 1px solid #dfe6ea;
  border-radius: 12px;
  padding: 28px 32px;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  align-items: center;
}
.promise-row{ display: contents }
.promise-item{
  text-align: center;
  color: #0f2d5c;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
}
.promise-item p{ margin:0; font-size:14px }
.promise-item i{
  display: inline-block;
  background: #CCE5E5;
  color: #008080;
  width: 54px;
  height: 54px;
  line-height: 54px;
  border-radius: 50%;
  font-size: 20px;
  margin: 0 0 8px 0;
}
.promise-item p{
  margin: 0;
  font-size: 14px;
}

@media (max-width: 992px){
  .promise-grid{
    grid-template-columns: 1fr;
  }
  .promise-title{
    font-size: 48px;
    text-align: left;
  }
  .promise-right .promise-card{
    margin-top: 20px;
  }
  .promise-row{
    flex-wrap: wrap;
  }
  .promise-item{
    flex: 0 0 33.333%;
    margin-bottom: 12px;
  }
}

@media (max-width: 576px){
  .promise-title{
    font-size: 36px;
  }
  .promise-item{
    flex: 0 0 50%;
  }
}

@media (max-width: 991.98px) {
  .promise-image{ width: 300px; }
  .promise-title{ font-size: 56px; }
}

@media (max-width: 767.98px) {
  .promise-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .promise-left::after, .promise-left::before{
    display: none;
  }
  .promise-image{ width: 300px }
  .promise-right .promise-card{ padding: 18px }
  .promise-row{ display: contents }
  .promise-right .promise-card{ grid-template-columns: repeat(2,1fr); gap:14px }
  .promise-item i{ width:46px; height:46px; line-height:46px; font-size:18px; margin-bottom:0 }
  .promise-title{ font-size: 42px }
}

@media (max-width: 479.98px){
  .promise-image{ width: 200px }
  .promise-row{ grid-template-columns: repeat(2,1fr) }
  .promise-title{ font-size: 36px }
}


/* term condition  */

/* =========================
   TERMS PAGE
========================= */

.terms-section{
    background: #f5f1f8;
    padding: 40px 0;
}

/* CONTAINER */

.terms-section .container{
    /* max-width: 1500px; */
    margin: auto;
    padding: 0 20px;
}

/* =========================
   TOP LABEL
========================= */

.terms-top-label{
    text-align: center;
    margin-bottom: 25px;
}

.terms-top-label span{
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--secondary-color);
    border-radius: 50px;
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* =========================
   HEADER
========================= */

.terms-header{
    text-align: center;
    margin-bottom: 60px;
}

.terms-header h1{
    font-size: 45px;
    font-weight: 600;
    color: #111;
    margin-bottom: 25px;
    font-family: serif;
}

.terms-header p{
    max-width: 900px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

/* =========================
   TERMS BOX
========================= */

.terms-box{
    background: #fff;
    border-radius: 28px;
    padding: 70px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

/* =========================
   TERMS ITEM
========================= */

.terms-item{
    margin-bottom: 25px;
}

.terms-item:last-child{
    margin-bottom: 0;
}

.terms-item h2{
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
    font-family: serif;
}

/* =========================
   LIST
========================= */

.terms-item ul{
    padding-left: 24px;
}

.terms-item ul li{
    font-size: 15px;
    line-height: 2;
    color: #444;
    margin-bottom: 5px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .terms-section{
        padding: 70px 0;
    }

    .terms-header h1{
        font-size: 52px;
    }

    .terms-header p{
        font-size: 18px;
    }

    .terms-box{
        padding: 50px;
    }

    .terms-item h2{
        font-size: 28px;
    }

    .terms-item ul li{
        font-size: 18px;
    }
}

@media(max-width:576px){

    .terms-section{
        padding: 50px 0;
    }

    .terms-section .container{
        padding: 0 14px;
    }

    .terms-top-label{
        margin-bottom: 20px;
    }

    .terms-top-label span{
        padding: 10px 20px;
        font-size: 13px;
    }

    .terms-header{
        margin-bottom: 35px;
    }

    .terms-header h1{
        font-size: 34px;
        margin-bottom: 16px;
    }

    .terms-header p{
        font-size: 15px;
        line-height: 1.7;
    }

    .terms-box{
        padding: 28px 22px;
        border-radius: 18px;
    }

    .terms-item{
        margin-bottom: 38px;
    }

    .terms-item h2{
        font-size: 22px;
        margin-bottom: 18px;
    }

    .terms-item ul{
        padding-left: 18px;
    }

    .terms-item ul li{
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 10px;
    }
}


/* =========================
   WHY BUY SECTION
========================= */

.why-buy-section{
    background: #f7f3f9;
    padding: 90px 0;
}

/* CONTAINER */

.why-buy-section .container{
    max-width: 1450px;
    margin: auto;
    padding: 0 20px;
}

/* =========================
   TOP LABEL
========================= */

.why-buy-top-label{
    text-align: center;
    margin-bottom: 22px;
}

.why-buy-top-label span{
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid var(--secondary-color);
    border-radius: 50px;
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* =========================
   HEADER
========================= */

.why-buy-header{
    text-align: center;
    margin-bottom: 70px;
}

.why-buy-header h1{
    font-size: 40px;
    font-family: serif;
    font-weight: 600;
    color: #111;
    margin-bottom: 22px;
}

.why-buy-header p{
    max-width: 900px;
    margin: auto;
    font-size: 20px;
    line-height: 1.9;
    color: #555;
}

/* =========================
   GRID
========================= */

.why-buy-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 28px;
}

/* =========================
   CARD
========================= */

.why-buy-card{
    background: #fff;
    padding: 45px 35px;
    border-radius: 24px;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    height: 100%;
}

.why-buy-card:hover{
    transform: translateY(-8px);
}

/* =========================
   ICON
========================= */

.why-buy-icon{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ace3e3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.why-buy-icon i{
    font-size: 32px;
    color: var(--secondary-color);
}

/* =========================
   CONTENT
========================= */

.why-buy-card h3{
    font-size: 28px;
    margin-bottom: 18px;
    color: #111;
    font-family: serif;
}

.why-buy-card p{
    font-size: 17px;
    line-height: 1.9;
    color: #666;
}

/* =========================
   LAPTOP
========================= */

@media(max-width:1200px){

    .why-buy-grid{
        grid-template-columns: repeat(3,1fr);
    }

    .why-buy-header h1{
        font-size: 56px;
    }
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .why-buy-section{
        padding: 70px 0;
    }

    .why-buy-grid{
        grid-template-columns: repeat(2,1fr);
        gap: 22px;
    }

    .why-buy-header{
        margin-bottom: 50px;
    }

    .why-buy-header h1{
        font-size: 46px;
    }

    .why-buy-header p{
        font-size: 18px;
    }

    .why-buy-card{
        padding: 35px 28px;
    }

    .why-buy-card h3{
        font-size: 24px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:576px){

    .why-buy-section{
        padding: 50px 0;
    }

    .why-buy-section .container{
        padding: 0 14px;
    }

    .why-buy-top-label{
        margin-bottom: 18px;
    }

    .why-buy-top-label span{
        padding: 10px 18px;
        font-size: 13px;
    }

    .why-buy-header{
        margin-bottom: 35px;
    }

    .why-buy-header h1{
        font-size: 34px;
        margin-bottom: 14px;
    }

    .why-buy-header p{
        font-size: 15px;
        line-height: 1.8;
    }

    .why-buy-grid{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .why-buy-card{
        padding: 28px 22px;
        border-radius: 18px;
    }

    .why-buy-icon{
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }

    .why-buy-icon i{
        font-size: 26px;
    }

    .why-buy-card h3{
        font-size: 21px;
        margin-bottom: 12px;
    }

    .why-buy-card p{
        font-size: 15px;
        line-height: 1.8;
    }
}

/* =========================
   WHY MORE SECTION
========================= */

.why-more-section{
    padding: 100px 0;
    background: #fff;
}

/* CONTAINER */

.why-more-section .container{
    max-width: 1450px;
    margin: auto;
    padding: 0 20px;
}

/* =========================
   WRAPPER
========================= */

.why-more-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* =========================
   IMAGE
========================= */

.why-more-image{
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    height: 750px;
}

.why-more-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   LABEL
========================= */

.why-more-label{
    margin-bottom: 24px;
}

.why-more-label span{
    display: inline-block;
    padding: 12px 22px;
    border-radius: 50px;
    border: 1px solid ;
    color: var(--secondary-color);
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 500;
}

/* =========================
   CONTENT
========================= */

.why-more-content h2{
    font-size: 64px;
    line-height: 1.2;
    color: #111;
    margin-bottom: 28px;
    font-family: serif;
    font-weight: 600;
}

.why-more-content > p{
    font-size: 19px;
    line-height: 2;
    color: #555;
    margin-bottom: 45px;
}

/* =========================
   FEATURES
========================= */

.why-more-features{
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 45px;
}

/* ITEM */

.why-more-item{
    display: flex;
    gap: 22px;
}

/* ICON */

.why-more-icon{
    min-width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #ace3e3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-more-icon i{
    font-size: 30px;
    color: var(--secondary-color);
}

/* TEXT */

.why-more-text h4{
    font-size: 28px;
    margin-bottom: 10px;
    color: #111;
    font-family: serif;
}

.why-more-text p{
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}

/* =========================
   BUTTONS
========================= */

.why-more-buttons{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.why-btn{
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;
}

.primary-btn{
    background: var(--secondary-color);
    color: #fff;
}

.primary-btn:hover{
    background: #111;
}

.secondary-btn{
    border: 1px solid #ddd;
    color: #111;
}

.secondary-btn:hover{
    background: #111;
    color: #fff;
}

/* =========================
   LAPTOP
========================= */

@media(max-width:1200px){

    .why-more-wrapper{
        gap: 50px;
    }

    .why-more-content h2{
        font-size: 52px;
    }

    .why-more-image{
        height: 650px;
    }
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .why-more-section{
        padding: 70px 0;
    }

    .why-more-wrapper{
        grid-template-columns: 1fr;
    }

    .why-more-image{
        height: 550px;
    }

    .why-more-content h2{
        font-size: 42px;
    }

    .why-more-content > p{
        font-size: 17px;
    }

    .why-more-text h4{
        font-size: 24px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:576px){

    .why-more-section{
        padding: 50px 0;
    }

    .why-more-section .container{
        padding: 0 14px;
    }

    .why-more-wrapper{
        gap: 30px;
    }

    .why-more-image{
        height: 380px;
        border-radius: 18px;
    }

    .why-more-label{
        margin-bottom: 18px;
    }

    .why-more-label span{
        padding: 10px 18px;
        font-size: 13px;
    }

    .why-more-content h2{
        font-size: 32px;
        margin-bottom: 18px;
    }

    .why-more-content > p{
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .why-more-features{
        gap: 22px;
        margin-bottom: 30px;
    }

    .why-more-item{
        gap: 16px;
    }

    .why-more-icon{
        min-width: 58px;
        height: 58px;
    }

    .why-more-icon i{
        font-size: 22px;
    }

    .why-more-text h4{
        font-size: 20px;
        margin-bottom: 8px;
    }

    .why-more-text p{
        font-size: 14px;
        line-height: 1.7;
    }

    .why-more-buttons{
        gap: 12px;
    }

    .why-btn{
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 14px;
    }
}
