* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main-black: #000000;
  --orange: #f97316;
  --light-orange: #fed7aa;
  --golden: #facc15;
  --text-dark: #111827;
  --border-soft: #e5e7eb;
  --white: #ffffff;
  --f1: "Poppins", sans-serif;
  --lux-container: min(1180px, calc(100% - 48px));
  --lux-ease: cubic-bezier(0.22, 1, 0.36, 1);
}
html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--text-dark);
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* navbar================================================================================================================================================== */
/* top nav-------------------------------------------------------------------------------------------------------------------------------------------------- */
.top-nav-container,
.menu-container {
  width: calc(100% - 100px);
  margin: 0 auto;
  padding: 0;
}

.top-navbar {
  background: #fff;
  /* background: linear-gradient(90deg, #fff7ed 0%, #ffffff 45%, #fffbeb 100%); */
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.top-nav-container {
  min-height: 72px;
  display: flex;

  justify-content: space-between;
  /* grid-template-columns: auto auto; */
  align-items: center;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 82px;
  width: 200px;
  margin-left: -20px;
  object-fit: contain;
}

.search-wrap {
  position: relative;
  width: min(560px, 100%);
  justify-self: center;
}

.search-wrap input {
  width: 100%;
  height: 44px;
  border: 1px solid #fdba74;
  border-radius: 999px;
  padding: 5px 108px 5px 14px;
  outline: none;
  background: #ffffff;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.search-wrap input::placeholder {
  color: #9ca3af;
}

.search-btn {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  padding: 9px 34px;
  border: none;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--f1);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.search-btn:hover {
  background: #ea580c;
}

.top-icons {
  display: flex;
  gap: 8px;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #fdba74;
  border-radius: 10px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--main-black);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.count-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  border: 1px solid var(--white);
  font-family: var(--f1);
  font-size: 0.7rem;
  line-height: 16px;
  text-align: center;
  font-weight: 600;
}

/* bottom nav--------------------------------------------------------------------------------------------------------------------------- */
.menu-navbar {
  background: var(--main-black);
  position: sticky;
  top: 80px;
  z-index: 9998;
  box-shadow: 3px 3px 5px rgba(128, 128, 128, 0.228);
}

.menu-container {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 45px;
  row-gap: 10px;
  flex-wrap: wrap;
}

.menu-link {
  color: #fff7ed;
  text-decoration: none;
  font-family: var(--f1);
  font-size: 0.8rem;
  font-weight: 500;
}

.menu-link:hover {
  color: var(--orange);
  transition: color 0.2s ease;
}

.hamburger {
  display: none;
}

/* mobile navbar------------------------------------------------------------------------------------------------------------------------ */
.side-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 260px;
  height: 100vh;
  background: #000;
  padding: 130px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 0.5s ease;
  z-index: 10000;
}

.side-menu a {
  color: white;
  text-decoration: none;
  font-family: var(--f1);
  font-size: 0.95rem;
}

.side-menu.active {
  right: 0;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}

.overlay.active {
  display: block;
}

.close-btn {
  position: absolute;
  top: 45px;
  right: 25px;
  color: white;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 480px) {
  .search-wrap,
  .top-icons,
  .menu-navbar {
    display: none !important;
  }

  .top-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 12px;
  }

  .logo img {
    height: 80px;
    width: auto;
    margin-left: 0;
  }

  .hamburger {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
  }
}
/* hero section=============================================================================================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 480px;
  overflow: hidden;
  background: var(--main-black);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 1.25s ease,
    transform 1.25s ease;
  will-change: opacity, transform;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.slide.was-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(70%) saturate(1.05);
  transition: transform 10s cubic-bezier(0.22, 1, 0.36, 1);
}

.content {
  position: absolute;
  top: 50%;
  left: clamp(16px, 4vw, 40px);
  transform: translateY(-50%);
  max-width: min(650px, calc(100% - 32px));
  color: var(--white);
  z-index: 2;
}

.content h1 {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-family: var(--f1);
  margin-bottom: 14px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.content p {
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  line-height: 1.6;
  max-width: 56ch;
}

.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.primary {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--f1);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.secondary {
  background: transparent;
  border: 1px solid var(--border-soft);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--f1);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.content span {
  color: var(--golden);
}

@media (max-width: 480px) {
  .hero {
    height: 550px;
    min-height: 500px;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.35) 100%
    );
  }

  .slide img {
    object-fit: cover;
    object-position: center;
    height: 100%;
  }

  .content {
    left: 20px;
    right: 20px;
    max-width: 100%;
  }

  .content h1 {
    font-size: 30px;
    line-height: 1.15;
  }

  .content p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .btns {
    gap: 10px;
  }

  .primary,
  .secondary {
    padding: 12px 22px;
    font-size: 14px;
  }
}

/* overall gap between sections========================================================================================================================= */
.lux-container {
  width: var(--lux-container);
  margin-inline: auto;
}

.lux-section {
  padding: clamp(56px, 10vw, 96px) 0;
}

.lux-section--why {
  background: var(--white);
}

/* services section=========================================================================================================================== */
.services-pro {
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  padding-top: 100px;
}

.services-pro__head {
  text-align: left;
}

.services-pro__title {
  font-family: var(--f1);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin: 0 0 10px;
}

.services-pro__title .services-pro__accent {
  color: var(--orange);
}
.services-pro__lead {
  margin: 0;
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
}

.services-pro__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.services-pro__card {
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid var(--light-orange);
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  box-shadow: 0 10px 32px rgba(17, 24, 39, 0.06);
  transition:
    transform 0.3s var(--lux-ease),
    box-shadow 0.3s;
}

.services-pro__card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 22px 48px rgba(17, 24, 39, 0.1);
  transition: all 0.5s ease;
}

.services-pro__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #ea580c;
  margin-bottom: 18px;
}

.services-pro__icon svg {
  width: 26px;
  height: 26px;
}

.services-pro__card-title {
  font-family: var(--f1);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text-dark);
}

.services-pro__card-text {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
}

.lux-eyebrow {
  font-size: 15px !important;
}

@media (max-width: 480px) {
  .services-pro__head {
    text-align: center;
  }

  .services-pro__title {
    font-size: 30px;
    line-height: 1.25;
  }

  .services-pro__lead {
    font-size: 14px;
    line-height: 1.7;
  }

  .services-pro__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
  }

  .services-pro__card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .services-pro__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
  }

  .services-pro__card-title {
    font-size: 17px;
  }

  .services-pro__card-text {
    font-size: 14px;
  }

  .lux-eyebrow {
    font-size: 13px !important;
  }
}

/* Categories section========================================================================================================================= */

.category-split__head {
  margin-bottom: 42px;
  text-align: left;
  margin-top: -40px;
}

.category-split__head h2 {
  font-family: var(--f1);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text-dark);
  margin: 10px 0 10px;
  white-space: nowrap;
}

.category-split__head h2 span {
  color: var(--orange);
}

.category-split__head .lux-section-desc {
  max-width: 650px;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
}

.category-split__layout {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.category-split__feature,
.category-split__tile {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  text-decoration: none;
  color: #fff;
  border: 1px solid var(--border-soft);
  transition:
    transform 0.45s var(--lux-ease),
    box-shadow 0.45s ease;
}

.category-split__feature:hover,
.category-split__tile:hover {
  transition: all 0.1s ease !important;
}

.category-split__feature-bg,
.category-split__tile-media {
  position: absolute;
  inset: 0;
}

.category-split__feature-bg img,
.category-split__tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--lux-ease);
}

.category-split__feature:hover img,
.category-split__tile:hover img {
  transform: scale(1.04);
}

.category-split__feature {
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
}

.category-split__feature-scrim,
.category-split__tile-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.category-split__feature-scrim {
  background: linear-gradient(
    180deg,
    rgba(17, 24, 39, 0.08) 0%,
    rgba(17, 24, 39, 0.9) 100%
  );
}

.category-split__feature-content {
  position: relative;
  z-index: 2;
  padding: 34px;
  max-width: 480px;
  text-align: left;
}

.category-split__kicker,
.category-split__tile-label span {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--golden);
}

.category-split__feature-title {
  font-family: var(--f1);
  font-size: clamp(25px, 4vw, 30px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
  margin-top: 5px;
}

.category-split__feature-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 10px;
  max-width: 36ch;
}

.category-split__cta {
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.category-split__feature:hover .category-split__cta {
  color: var(--golden);
}

.category-split__side {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.category-split__tile {
  min-height: 220px;
  box-shadow: 0 14px 38px rgba(17, 24, 39, 0.08);
}

.category-split__tile--wide {
  grid-column: 1 / -1;
  min-height: 200px;
}

.category-split__tile-scrim {
  background: linear-gradient(
    180deg,
    rgba(17, 24, 39, 0.08) 0%,
    rgba(17, 24, 39, 0.82) 100%
  );
}

.category-split__tile-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px;
  text-align: left;
}

.category-split__tile-label strong {
  display: block;
  font-family: var(--f1);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 14ch;
}
@media (max-width: 480px) {
  .category-split__head {
    margin-top: 0;
    margin-bottom: 28px;
    text-align: center;
  }

  .category-split__head h2 {
    font-size: 30px;
    line-height: 1.2;
    white-space: normal;
  }

  .category-split__head .lux-section-desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .category-split__layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .category-split__feature {
    min-height: 380px;
    border-radius: 18px;
  }

  .category-split__feature-content {
    padding: 24px 20px;
  }

  .category-split__feature-title {
    font-size: 26px;
    line-height: 1.2;
  }

  .category-split__feature-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .category-split__side {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-split__tile {
    min-height: 220px;
    border-radius: 18px;
  }

  .category-split__tile--wide {
    min-height: 220px;
  }

  .category-split__tile-label {
    padding: 18px;
  }

  .category-split__tile-label strong {
    font-size: 18px;
  }
}
/* small p above heading ========================================================================================================================= */
.lux-eyebrow {
  font-family: var(--f1);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 12px;
}
.lux-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lux-cat-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
  transition:
    transform 0.35s var(--lux-ease),
    box-shadow 0.35s;
}

/* our collection======================================================================================================== */
.collection {
  background: #ffffff;
  padding: 70px 0;
  overflow: hidden;
}
.collection__head {
  text-align: left;
  margin-bottom: 42px;
}

.collection__head h2 {
  font-family: var(--f1);
  font-size: 45px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin: 10px 0 12px;
}

.collection__head h2 span {
  color: var(--orange);
}

.collection__desc {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.8;
  color: #6b7280;
}

.collection-slider {
  position: relative;
}
.collection-slide {
  display: none;
  animation: fade 0.4s ease;
}
.collection-slide.active {
  display: block;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  height: 370px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ececec;
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.07);
  transition:
    transform 0.35s var(--lux-ease),
    box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(17, 24, 39, 0.12);
  transition: all 0.5s ease;
}
.product-card__img {
  height: 200px;
  overflow: hidden;
  background: #f8fafc;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--lux-ease);
}
.product-card__content {
  padding: 22px;
}

.product-card__content h3 {
  font-family: var(--f1);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 7px;
}

.product-card__content p {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 10px;
}
.product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.product-card__bottom button {
  border: none;
  background: var(--orange);
  color: #fff;
  padding: 11px 18px;
  border-radius: 12px;
  font-family: var(--f1);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.product-card__bottom button:hover {
  background: #ea580c;
}
.collection-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  transition: 0.3s ease;
  padding: 0;
}

.dot.active {
  background: var(--orange);
  transform: scale(1.15);
}

@media (max-width: 480px) {
  .collection {
    padding: 55px 0;
  }

  .collection__head {
    text-align: center;
    margin-bottom: 28px;
  }

  .collection__head h2 {
    font-size: 31px;
    line-height: 1.2;
  }

  .collection__desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-card {
    height: auto;
    border-radius: 18px;
    transition:
      transform 0.45s ease,
      box-shadow 0.45s ease;
  }

  .product-card:hover {
    transform: translateY(-6px);
  }

  .product-card__img {
    height: 240px;
  }

  .product-card__img img {
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .product-card__content {
    padding: 20px;
  }

  .product-card__content h3 {
    font-size: 19px;
  }

  .product-card__content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .product-card__bottom {
    gap: 12px;
  }

  .price {
    font-size: 18px;
  }

  .product-card__bottom button {
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 12px;
  }

  .collection-dots {
    margin-top: 28px;
    gap: 10px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

/* featured collection============================================================================================================================ */

.featured-collection {
  background: #ffffff;
  padding: 50px 0;
  overflow: hidden;
}

.featured__head {
  text-align: left;
  margin-bottom: 42px;
}

.featured__head h2 {
  font-family: var(--f1);
  font-size: 45px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin: 10px 0 12px;
}

.featured__head h2 span {
  color: var(--orange);
}

.featured__desc {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.8;
  color: #6b7280;
}

.featured-slider {
  position: relative;
}

.featured-slide {
  display: none;
  animation: fade 0.4s ease;
}

.featured-slide.active {
  display: block;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.featured-card {
  background: #fff;
  height: 370px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ececec;
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.07);
  transition:
    transform 0.35s var(--lux-ease),
    box-shadow 0.35s ease;
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(17, 24, 39, 0.12);
}

.featured-card__img {
  height: 200px;
  overflow: hidden;
  background: #f8fafc;
}

.featured-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--lux-ease);
}

.featured-card__content {
  padding: 22px;
}

.featured-card__content h3 {
  font-family: var(--f1);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 7px;
}

.featured-card__content p {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 10px;
}

.featured-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.featured-card__bottom button {
  border: none;
  background: var(--orange);
  color: #fff;
  padding: 11px 18px;
  border-radius: 12px;
  font-family: var(--f1);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.featured-card__bottom button:hover {
  background: #ea580c;
}

.featured-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.featured-btn {
  border: none;
  background: var(--orange);
  color: #fff;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  font-family: var(--f1);
  font-size: 20px;

  cursor: pointer;
  transition: 0.3s ease;
}

.featured-btn:hover {
  background: #ea580c;
  transform: translateY(-2px);
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .featured-collection {
    padding: 55px 0;
  }

  .featured__head {
    text-align: center;
    margin-bottom: 28px;
  }

  .featured__head h2 {
    font-size: 31px;
    line-height: 1.2;
  }

  .featured__desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .featured-card {
    height: auto;
    border-radius: 18px;
  }

  .featured-card:hover {
    transform: translateY(-6px);
  }

  .featured-card__img {
    height: 240px;
  }

  .featured-card__img img {
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .featured-card__content {
    padding: 20px;
  }

  .featured-card__content h3 {
    font-size: 19px;
  }

  .featured-card__content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .featured-card__bottom {
    gap: 12px;
  }

  .price {
    font-size: 18px;
  }

  .featured-card__bottom button {
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 12px;
  }

  .featured-buttons {
    margin-top: 28px;
    gap: 12px;
  }

  .featured-btn {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}

/* top selling =========================================================================================================================== */

.top-selling {
  padding: 50px 0;
  background: #ffffff;
  overflow: hidden;
}

.top-selling__head {
  text-align: left;
  margin-bottom: 50px;
}

.top-selling__head h2 {
  font-family: var(--f1);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin: 10px 0 14px;
}

.top-selling__head h2 span {
  color: var(--orange);
}

.top-selling__desc {
  max-width: 650px;
  font-size: 15px;
  line-height: 1.8;
  color: #6b7280;
}

.top-selling__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.top-product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ececec;
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.07);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.top-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(17, 24, 39, 0.12);
}

.top-product-card__img {
  height: 210px;
  overflow: hidden;
  background: #f8fafc;
}

.top-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-product-card__content {
  padding: 22px;
  text-align: left;
}

.top-product-card__content h3 {
  font-family: var(--f1);
  font-size: 21px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.top-product-card__content p {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 16px;
}

.top-product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-product-card__bottom .price {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.top-product-card__bottom button {
  border: none;
  background: var(--orange);
  color: #fff;
  padding: 11px 18px;
  border-radius: 12px;
  font-family: var(--f1);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.top-product-card__bottom button:hover {
  background: #ea580c;
}

@media (max-width: 480px) {
  .top-selling {
    padding: 55px 0;
  }

  .top-selling__head {
    text-align: center;
    margin-bottom: 30px;
  }

  .top-selling__head h2 {
    font-size: 31px;
    line-height: 1.2;
  }

  .top-selling__desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .top-selling__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .top-product-card {
    border-radius: 18px;
  }

  .top-product-card:hover {
    transform: translateY(-6px);
  }

  .top-product-card__img {
    height: 240px;
  }

  .top-product-card__img img {
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .top-product-card__content {
    padding: 20px;
  }

  .top-product-card__content h3 {
    font-size: 19px;
  }

  .top-product-card__content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .top-product-card__bottom {
    gap: 12px;
  }

  .top-product-card__bottom .price {
    font-size: 18px;
  }

  .top-product-card__bottom button {
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 12px;
  }
}

/* why choose us========================================================================================================================= */
.why-choose {
  padding: 110px 0;
  background: #fff;
  overflow: hidden;
}

.why-choose__wrapper {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.why-mini-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.why-choose__content h2 {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
  font-family: var(--f1);
  max-width: 550px;
}

.why-choose__content h2 span {
  color: var(--orange);
}

.why-text {
  font-size: 14px;
  line-height: 1.9;
  color: #6b7280;
  margin-bottom: 32px;
  max-width: 520px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 38px;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-feature__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background-color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.why-feature h4 {
  font-size: 19px;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-weight: 600;
}

.why-feature p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.7;
}

.why-counter {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.counter-box h3 {
  font-size: 34px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px;
  font-family: var(--f1);
}

.counter-box p {
  font-size: 13px;
  color: #6b7280;
}

.why-choose__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
}
.why-mini-title {
  font-family: var(--f1);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

@media (max-width: 480px) {
  .why-choose {
    padding: 55px 0;
  }

  .why-choose__wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .why-choose__content {
    text-align: center;
  }

  .why-choose__content h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-inline: auto;
  }

  .why-text {
    font-size: 14px;
    line-height: 1.8;
    margin-inline: auto;
    margin-bottom: 28px;
  }

  .why-features {
    gap: 18px;
    margin-bottom: 30px;
  }

  .why-feature {
    text-align: left;
  }

  .why-feature__icon {
    width: 50px;
    height: 50px;
    font-size: 21px;
  }

  .why-feature h4 {
    font-size: 17px;
  }

  .why-feature p {
    font-size: 13px;
    line-height: 1.7;
  }

  .why-counter {
    justify-content: center;
    gap: 22px;
  }

  .counter-box {
    text-align: center;
  }

  .counter-box h3 {
    font-size: 28px;
  }

  .why-choose__image img {
    height: 340px;
    border-radius: 20px;
  }
}

/* testimonials========================================================================================================================== */

.mini-testimonials {
  padding: 50px 0;
  background: #fff;
  overflow: hidden;
}

.mini-testimonials__head {
  text-align: left;
  margin-bottom: 48px;
  max-width: 700px;
}

.mini-testimonials__head h2 {
  font-family: var(--f1);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin: 10px 0 14px;
}

.mini-testimonials__head h2 span {
  color: var(--orange);
}

.mini-testimonials__desc {
  font-size: 15px;
  line-height: 1.9;
  color: #6b7280;
  max-width: 620px;
}

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

.mini-testimonial-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--orange);
  border-radius: 22px;
  padding: 24px 22px 40px;
  transition: 0.35s ease;
}

.mini-testimonial-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

.mini-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.mini-user img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff7ed;
}

.mini-user h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.mini-user span {
  font-size: 12px;
  color: #94a3b8;
}

.mini-review {
  font-size: 13px;
  line-height: 1.9;
  color: #6b7280;
  margin-bottom: 22px;
}

.mini-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mini-stars i {
  font-size: 13px;
  color: #f59e0b;
}

.mini-triangle {
  position: absolute;
  bottom: -11px;
  left: 39px;
  width: 20px;
  height: 20px;
  background: #fff;
  transform: rotate(45deg);
  border-right: 1px solid var(--orange);
  border-bottom: 1px solid var(--orange);
}

@media (max-width: 480px) {
  .mini-testimonials {
    padding: 55px 0;
  }

  .mini-testimonials__head {
    text-align: center;
    margin-bottom: 30px;
  }

  .mini-testimonials__head h2 {
    font-size: 31px;
    line-height: 1.2;
  }

  .mini-testimonials__desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .mini-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mini-testimonial-card {
    padding: 22px 18px 34px;
    border-radius: 18px;
  }

  .mini-user img {
    width: 52px;
    height: 52px;
  }

  .mini-user h4 {
    font-size: 16px;
  }

  .mini-review {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 18px;
  }

  .mini-triangle {
    left: 32px;
  }
}

/* brand section============================================================================================================================ */
.brand-strip {
  padding: 105px 0;
  background: #fff;
  overflow: hidden;
}

.brand-strip__head {
  text-align: left;
  max-width: 720px;
  margin-bottom: 50px;
}

.brand-strip__head h2 {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--f1);
  margin: 10px 0 14px;
  letter-spacing: -0.03em;
}

.brand-strip__head h2 span {
  color: var(--orange);
}

.brand-strip__desc {
  font-size: 15px;
  line-height: 1.9;
  color: #6b7280;
  max-width: 620px;
}

.brand-rows {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: scrollLeft 6s linear infinite;
  will-change: transform;
}

.brand-row.reverse {
  animation: scrollRight 6s linear infinite;
}

.brand-row button {
  border: 1px solid var(--orange);
  background: #fff;
  padding: 12px 44px;
  border-radius: 60px;

  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  font-family: var(--f1);

  cursor: pointer;
  white-space: nowrap;

  transition: all 0.35s ease;

  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.04);
}

.brand-row button:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(249, 115, 22, 0.18);
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-120px);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-120px);
  }

  100% {
    transform: translateX(0);
  }
}
@media (max-width: 480px) {
  .brand-strip {
    padding: 55px 0;
  }

  .brand-strip__head {
    text-align: center;
    margin-bottom: 30px;
  }

  .brand-strip__head h2 {
    font-size: 31px;
    line-height: 1.2;
  }

  .brand-strip__desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .brand-rows {
    gap: 16px;
  }

  .brand-row {
    gap: 12px;
    animation-duration: 12s;
  }

  .brand-row button {
    padding: 10px 28px;
    font-size: 14px;
    border-radius: 40px;
  }
}
/* faq section========================================================================================================================================== */

.premium-faq {
  padding: 70px 0;
  background: #fff;
  overflow: hidden;
}

.premium-faq__wrapper {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.premium-faq__left h2 {
  font-size: 48px;
  line-height: 1.08;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--f1);
  margin: 10px 0 16px;
  letter-spacing: -0.03em;
  max-width: 560px;
}

.premium-faq__left h2 span {
  color: var(--orange);
}

.premium-faq__desc {
  font-size: 15px;
  line-height: 1.9;
  color: #6b7280;
  margin-bottom: 34px;
  max-width: 560px;
}

.faq-item {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: 0.35s ease;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.04);
}

.faq-item.active {
  border-color: var(--orange);
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.08);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  font-family: var(--f1);
}

.faq-question i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff7ed;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.25s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 14px;
  line-height: 1.9;
  color: #6b7280;
  max-width: 95%;
}

.faq-item.active .faq-answer {
  max-height: 180px;
}

.faq-item.active .faq-question i {
  background: var(--orange);
  color: #fff;
  transform: rotate(180deg);
}

.premium-faq__right img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(17, 24, 39, 0.12);
}

@media (max-width: 480px) {
  .premium-faq {
    padding: 60px 0;
  }

  .premium-faq__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .premium-faq__left {
    order: 2;
  }

  .premium-faq__right {
    order: 1;
  }

  .premium-faq__left h2 {
    font-size: 32px;
    line-height: 1.2;
    margin: 8px 0 12px;
  }

  .premium-faq__desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
  }

  .faq-item {
    border-radius: 16px;
    margin-bottom: 14px;
  }

  .faq-question {
    padding: 18px;
    gap: 14px;
  }

  .faq-question span {
    font-size: 15px;
    line-height: 1.5;
  }

  .faq-question i {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .faq-answer p {
    padding: 0 18px 18px;
    font-size: 13px;
    line-height: 1.8;
    max-width: 100%;
  }

  .faq-item.active .faq-answer {
    max-height: 240px;
  }

  .premium-faq__right img {
    height: 400px;
    border-radius: 22px;
  }
}
/* contact section============================================================================================================================================================== */

.contact-section {
  padding: 90px 0;
  height: 900px;
  background: #fff;
  overflow: hidden;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;

  height: 90vh;
  max-height: 720px;
}

/* ================= MAP ================= */

.contact-map-box {
  position: relative;
  overflow: hidden;

  border-radius: 34px;
}

.contact-map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Overlay */

.contact-map-overlay {
  position: absolute;

  left: 24px;
  right: 24px;
  bottom: 24px;

  background: rgba(17, 17, 17, 0.7);

  backdrop-filter: blur(14px);

  border-radius: 24px;

  padding: 24px;
}

.contact-map-overlay h2 {
  font-family: var(--f1);

  font-size: 42px;
  line-height: 1;

  font-weight: 700;

  color: #fff;

  margin: 10px 0 14px;
}

.contact-map-overlay h2 span {
  color: var(--orange);
}

.contact-map-overlay p {
  font-size: 14px;
  line-height: 1.8;

  color: rgba(255, 255, 255, 0.82);
}
.contact-form-box {
  background: #fff;

  border: 1px solid #ececec;

  border-radius: 34px;

  padding: 42px;

  box-shadow:
    0 20px 60px rgba(17, 24, 39, 0.05),
    0 5px 18px rgba(17, 24, 39, 0.03);

  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form-top {
  margin-bottom: 30px;
}

.contact-form-top h3 {
  font-family: var(--f1);

  font-size: 46px;
  line-height: 1;

  font-weight: 700;

  color: var(--text-dark);

  margin: 10px 0 14px;
}

.contact-form-top h3 span {
  color: var(--orange);
}

.contact-form-top p {
  font-size: 14px;
  line-height: 1.9;

  color: #6b7280;

  max-width: 450px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;

  border: 1px solid #e5e7eb;

  background: #fafafa;

  border-radius: 18px;

  padding: 18px 20px;

  font-size: 14px;

  outline: none;

  transition: 0.3s ease;

  color: #374151;

  font-family: var(--f1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #fff;

  border-color: var(--orange);

  box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.1);
}

.contact-form textarea {
  resize: none;
  height: 180px;
}

.contact-submit {
  padding: 10px 20px;

  border: none;

  border-radius: 18px;

  background: linear-gradient(135deg, #f97316, #ea580c);

  color: #fff;

  font-size: 15px;
  font-weight: 600;

  font-family: var(--f1);

  cursor: pointer;

  transition: 0.35s ease;

  margin-top: 4px;
}

.contact-submit:hover {
  transform: translateY(-4px);
}

@media (max-width: 480px) {
  .contact-section {
    padding: 60px 0;
    height: auto;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    height: auto;
    gap: 20px;
    max-height: 100%;
  }

  .contact-map-box {
    height: 380px;
    border-radius: 24px;
  }

  .contact-map-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
    border-radius: 18px;
  }

  .contact-map-overlay h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .contact-map-overlay p {
    font-size: 13px;
    line-height: 1.7;
  }

  .contact-form-box {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .contact-form-top {
    margin-bottom: 22px;
  }

  .contact-form-top h3 {
    font-size: 32px;
    line-height: 1.2;
  }

  .contact-form-top p {
    font-size: 13px;
    line-height: 1.8;
  }

  .contact-form {
    gap: 14px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    padding: 16px;
    border-radius: 14px;
    font-size: 13px;
  }

  .contact-form textarea {
    height: 150px;
  }

  .contact-submit {
    height: 56px;
    border-radius: 14px;
    font-size: 14px;
  }
}

/* footer ===================================================================================================== */

.caseora-footer {
  background: #000;
  padding: 90px 0 30px;
  overflow: hidden;
}
.footer-wrapper {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.381);
}
#shop {
  margin-left: 30px;
}
#con {
  margin-left: -30px;
}
.footer-logo {
  text-decoration: none;
}

.footer-logo h2 {
  font-family: var(--f1);
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.footer-about-text {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.72);
  max-width: 340px;
  margin-bottom: 28px;
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-socials a {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  transition: 0.35s ease;
}

.footer-socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-4px);
}
.footer-col h3 {
  font-family: var(--f1);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 22px;
}
.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 5px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.footer-contact i {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 14px;
  flex-shrink: 0;
}
.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-bottom-left p span {
  color: var(--orange);
}
.footer-bottom-left p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-payments {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-payments img {
  width: 54px;
  height: 34px;
  object-fit: contain;
  background: #fff;
  padding: 6px 10px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.footer-payments img:hover {
  transform: translateY(-3px);
}

@media (max-width: 480px) {
  .caseora-footer {
    padding: 60px 0 24px;
    text-align: left;
  }

  /* ===== Wrapper ===== */

  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 34px;
    text-align: left;
    justify-items: flex-start;
  }

  #shop,
  #con {
    margin-left: 0;
  }
  .footer-col,
  .footer-brand {
    width: 100%;
    text-align: left;
    align-items: flex-start;
  }
  .footer-logo {
    display: block;
    text-align: left;
  }

  .footer-logo h2 {
    font-size: 34px;
    margin-bottom: 14px;
    text-align: left;
  }
  .footer-about-text {
    font-size: 13px;
    line-height: 1.8;
    max-width: 100%;
    margin-bottom: 22px;
    text-align: left;
  }
  .footer-socials {
    justify-content: flex-start;
    gap: 12px;
  }

  .footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 14px;
  }
  .footer-col h3 {
    font-size: 18px;
    margin-bottom: 18px;
    text-align: left;
  }
  .footer-col ul {
    padding-left: 0;
    text-align: left;
  }

  .footer-col ul li {
    margin-bottom: 12px;
    text-align: left;
  }

  .footer-col ul li a {
    font-size: 13px;
    text-align: left;
  }
  .footer-contact {
    padding-left: 0;
  }

  .footer-contact li {
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    line-height: 1.7;
    text-align: left;
    justify-content: flex-start;
  }

  .footer-contact i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 13px;
    flex-shrink: 0;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 18px;
  }

  .footer-bottom-left {
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .footer-bottom-left p {
    font-size: 12px;
    line-height: 1.7;
    text-align: left;
  }
  .footer-payments {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
  }

  .footer-payments img {
    width: 50px;
    height: 32px;
    padding: 5px 8px;
    border-radius: 8px;
  }
}
