body {
  font-family: 'Satoshi', sans-serif;
  background: white;
  color: black;
  overflow-x: hidden;
}

.announcement {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 9px 50px;
  font-size: 14px;
  position: relative;
  font-weight: 400;
  font-family: 'Satoshi', sans-serif;
}

.announcement a {
  text-decoration: underline;
  color: white;
}

.announcement .close {
  position: absolute;
  right: 100px;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement.hidden {
  display: none;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 100px;
  background: #fff;
}

.burger_bar {
  display: none;
}

.nav-logo {
  font-family: 'Integral CF', 'Archivo Black', sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-links a {
  color: #000;
  font-size: 16px;
}

.nav-search {
  background: #f0f0f0;
  padding: 12px 16px;
  border-radius: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 500px;
}

.nav-search .search_ic {
  color: gray;
  border: none;
  font-size: 20px;
}

.nav-search input {
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-right .icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.icons .ic_search{
  display: none;
}

.nav-right img {
  width: 24px;
  height: auto;
}

.nav-right .fa-circle-user {
  font-size: 24px;
  color: #000;
  cursor: pointer;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 10000;
  padding: 28px;
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open {
  left: 0;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  align-self: flex-start;
  margin-bottom: 72px;
  padding: 0;
  color: #000;
}

.drawer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.drawer-links a,
.dropdown-header span {
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
  transition: 0.3s;
}

.active {
  color: #000;
}

.inactive {
  color: #8D8D8D;
}

.dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
}

.submenu {
  list-style: none;
  padding: 24px 0 0 16px;
  display: none;
  flex-direction: column;
  gap: 24px;
}

.has-dropdown.open .submenu {
  display: flex;
}

.submenu a {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 400;
  font-size: 15px;
}

.drawer-signup-btn {
  margin-top: 72px;
  background: #000;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.drawer-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.hero {
  background-color: #F2F0F1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 663px;
  padding: 0 0 0 100px;
  overflow: hidden;
  position: relative;
  max-width: 100%;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0;
  z-index: 5;
}

.hero-content h1 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  margin-bottom: 32px;
  text-transform: uppercase;
  max-width: 577px;
  color: #000;
}

.hero-content p {
  color: black;
  opacity: 0.6;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 32px;
  max-width: 540px;
}

.btn-primary {
  background: #000;
  color: #fff;
  border: none;
  padding: 16px 54px;
  border-radius: 62px;
  width: fit-content;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #333;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
}

.hero-stat .num {
  font-weight: 700;
  font-size: 40px;
  color: #000;
}

.hero-stat .label {
  font-weight: 400;
  font-size: 16px;
  color: black;
  opacity: 0.6;
  margin-top: 8px;
}

.stat-divider {
  width: 1px;
  height: 74px;
  background-color: rgba(0, 0, 0, 0.1);
}

.hero-image {
  flex: 1;
  position: relative;
  height: 663px;
}

.responsive {
  display: none;
}

.hero-main-img {
  max-width: 1440px;
  min-height: 663px;
  object-fit: contain;
  object-position: bottom right;
  position: absolute;
  right: 0;
  z-index: 1;
}

.sparkle {
  position: absolute;
  z-index: 2;
}

.sparkle-1 {
  width: 104px;
  height: 104px;
  top: 86px;
  right: 81px;
}

.sparkle-2 {
  width: 56px;
  height: 56px;
  top: 297px;
  left: -30px;
}

.brand-bar {
  overflow: hidden;
  background: #000;
  padding: 20px 0;
}

.brand-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: brandScroll 18s linear infinite;
}

.brand-track:hover {
  animation-play-state: paused;
}

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

  100% {
    transform: translateX(-50%);
  }
}

.new-arrivals,
.top-selling {
  max-width: 1240px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.section-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-top: 72px;
  text-transform: uppercase;
}

.product-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
}

.product-card {
  flex: 1;
  min-width: 280px;
  max-width: 295px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-image {
  width: 100%;
  background-color: #F0EEED;
  border-radius: 20px;
  aspect-ratio: 1 / 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 8px;
}

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

.product-name {
  font-weight: 700;
  font-size: 20px;
  margin: 0;
}

.rating {
  display: flex;
  align-items: center;
  gap: 13px;
}

.stars {
  color: #FFC633;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.score {
  font-size: 14px;
  font-weight: 400;
  color: black;
}

.price-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.current-price,
.old-price {
  font-weight: 700;
  font-size: 24px;
}

.old-price {
  color: rgba(0, 0, 0, 0.4);
  text-decoration: line-through;
}

.discount-tag {
  background-color: rgba(255, 51, 51, 0.1);
  color: #FF3333;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.view-all-container {
  display: flex;
  justify-content: center;
}

.view-all-btn {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 16px 54px;
  border-radius: 62px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 36px;
}

.view-all-btn:hover {
  background: #000;
  color: #fff;
}

.divider {
  width: 80%;
  opacity: 10%;
  display: block;
  margin: 0 auto;
}

.browse-section {
  padding: 80px 20px;
  background-color: #fff;
}

.browse-container {
  max-width: 1239px;
  margin: 0 auto;
  background-color: #F0F0F0;
  border-radius: 40px;
  padding: 70px 64px;
}

.browse-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 48px;
  text-align: center;
  margin-bottom: 64px;
  text-transform: uppercase;
}

.style-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.style-card {
  position: relative;
  height: 289px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.style-grid .style-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.style-grid .style-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.style-grid .style-card:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

.style-grid .style-card:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.card-text {
  position: absolute;
  top: 25px;
  left: 36px;
  font-size: 36px;
  font-weight: 700;
  z-index: 2;
}

.style-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials {
  max-width: 1240px;
  margin: 80px auto;
  padding: 0 100px;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.arrows {
  display: flex;
  gap: 20px;
  font-size: 20px;
  cursor: pointer;
}

.testimonial-grid {
  display: flex;
  gap: 20px;
  overflow: hidden;
}

.testimonial-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 28px;
  border-radius: 20px;
  flex: 1;
}

.customer-name {
  font-size: 20px;
  font-weight: 700;
  margin: 12px 0;
}

.fa-circle-check {
  color: #01AB31;
  font-size: 19px;
  margin-left: 4px;
  vertical-align: middle;
}

.comment {
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}

.newsletter-wrapper {
  max-width: 1240px;
  margin: 0 auto -90px;
  padding: 0 100px;
  position: relative;
  z-index: 10;
}

.newsletter-box {
  background-color: #000;
  border-radius: 20px;
  padding: 36px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.newsletter-text {
  color: white;
  font-family: 'Archivo Black', sans-serif;
  font-size: 40px;
  max-width: 550px;
  line-height: 1;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 350px;
}

.input-group {
  background: white;
  padding: 12px 16px;
  border-radius: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.input-group input {
  border: none;
  outline: none;
  width: 100%;
  font-family: 'Satoshi', sans-serif;
}

.subscribe-btn {
  background: white;
  color: black;
  border: none;
  padding: 12px;
  border-radius: 62px;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
}

.main-footer {
  background-color: #F0F0F0;
  padding: 140px 0 80px;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 100px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.footer-brand {
  max-width: 248px;
}

.footer-logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 33px;
  margin-bottom: 20px;
}

.footer-desc {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 35px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  background: white;
  text-decoration: none;
  font-size: 14px;
}

.social-icons a.black-bg {
  background: black;
  color: white;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex: 1;
}

.link-column h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 26px;
  letter-spacing: 3px;
}

.link-column ul {
  list-style: none;
  padding: 0;
}

.link-column ul li {
  margin-bottom: 18px;
}

.link-column ul li a {
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  font-size: 16px;
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 50px 0 25px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
}

.payment-methods {
  display: flex;
  gap: 12px;
  align-items: center;
}

.payment-methods img {
  width: 46.6px;
  height: 30px;
  background: #ffffff;
  border-radius: 5.38px;
  border: 0.22px solid #DCDCDC;
  padding: 5px 8px;
  object-fit: contain;
}

@media (max-width: 1200px) {
  nav {
    padding: 24px 50px;
  }

  .nav-search {
    width: 350px;
  }

  .hero {
    padding-left: 50px;
  }

  .hero-image {
    position: relative;
  }

  .hero-main-img,
  .responsive {
    display: block;
  }

  .responsive {
    position: static;
  }

  .hero-content {
    padding: 80px 0;
  }

  .hero-content h1 {
    font-size: 54px;
  }

  .brand-bar {
    padding: 44px 50px;
  }

  .footer-container,
  .newsletter-wrapper,
  .testimonials {
    padding: 0 50px;
  }
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 15px;
  }

  .nav-search {
    width: 220px;
  }

  .nav-right {
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat .num {
    font-size: 32px;
  }

  .product-card {
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .announcement {
    font-size: 12px;
    padding: 9px 40px;
  }

  .announcement .close {
    right: 15px;
  }

  nav {
    padding: 16px 20px;
  }

  .nav-links,
  .nav-search,
  .hero-main-img {
    display: none;
  }

  .burger_bar {
    display: block;
    font-size: 22px;
    cursor: pointer;
    order: -1;
  }

  .nav-logo {
    font-size: 26px;
  }

  .nav-right .icons {
    gap: 14px;
  }

  .icons .ic_search{
  display: block;
  font-size: 24px;
}
  

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .hero-content {
    order: 1;
    padding: 24px 16px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px;
    max-width: 100%;
    margin-bottom: 16px;
    line-height: 1.1;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    border-radius: 62px;
  }

  .hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .hero-stat {
    flex: 1;
    text-align: center;
    padding: 8px 0;
  }

  .hero-stat:last-child {
    flex: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 12px;
    padding-top: 12px;
  }

  .hero-stat .num {
    font-size: 28px;
  }

  .hero-stat .label {
    font-size: 12px;
    margin-top: 4px;
  }

  .stat-divider {
    display: block;
    width: 1px;
    height: 52px;
    background: rgba(0, 0, 0, 0.1);
    align-self: center;
  }

  .hero-image {
    order: 2;
    width: 100%;
    height: 448px;
    position: relative;
    margin-top: 20px;
  }

  .responsive {
    position: static;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
  }

  .sparkle-1 {
    width: 56px;
    height: 56px;
    top: 16px;
    right: 16px;
  }

  .sparkle-2 {
    width: 36px;
    height: 36px;
    top: 60px;
    left: 16px;
  }

  .brand-bar {
    padding: 28px 20px;
  }

  .brand-bar .brand-track {
    gap: 16px;
    justify-content: center;
  }

  .brand-bar .brand-track img,
  .brand-bar .brand-track svg {
    height: 22px;
    width: auto;
  }

  .new-arrivals,
  .top-selling {
    margin: 40px auto;
    padding: 0 16px;
  }

  .section-title {
    font-size: 28px;
    margin-top: 40px;
  }

  .product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .product-card {
    min-width: unset;
    max-width: 100%;
    flex: none;
  }

  .product-name {
    font-size: 16px;
  }

  .current-price,
  .old-price {
    font-size: 18px;
  }

  .view-all-btn {
    padding: 14px 40px;
    margin-top: 24px;
    font-size: 14px;
  }

  .browse-section {
    padding: 40px 16px;
  }

  .browse-container {
    padding: 32px 20px;
    border-radius: 24px;
  }

  .browse-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .style-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .style-card {
    height: 190px;
    grid-column: unset !important;
    grid-row: unset !important;
  }

  .card-text {
    font-size: 28px;
    top: 20px;
    left: 24px;
  }

  .testimonials {
    margin: 40px auto;
    padding: 0 16px;
  }

  .testimonial-grid {
    flex-direction: column;
    gap: 16px;
  }

  .testimonial-header {
    margin-bottom: 24px;
  }

  .newsletter-wrapper {
    padding: 0 16px;
    margin-bottom: -60px;
  }

  .newsletter-box {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 32px 24px;
    border-radius: 16px;
  }

  .newsletter-text {
    font-size: 28px;
    max-width: 100%;
  }

  .newsletter-form {
    width: 100%;
  }

  .main-footer {
    padding: 100px 0 60px;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .announcement {
    font-size: 11px;
    padding: 8px 36px 8px 12px;
    line-height: 1.3;
  }

  .announcement .close {
    right: 12px;
  }

 nav {
  display: flex;
  align-items: center;
}

.burger_bar {
  margin-right: 16px;
}

.nav-logo {
  margin-right: 96px;
}


  .nav-right .icons {
    gap: 12px;
  }

  .icons .ic_search{
  
  font-size: 20px;
}

  .nav-right img {
    width: 20px;
  }

  .nav-right .fa-circle-user {
    font-size: 20px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .hero-content {
    order: 1;
    padding: 24px 16px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px;
    line-height: 1.05;
    margin-bottom: 14px;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
    opacity: 0.6;
  }

  .btn-primary {
    font-size: 15px;
    padding: 14px 16px;
  }

  .hero-stats {
    margin-top: 20px;
    padding-bottom: 0;
    border-bottom: none;
    gap: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }

  .hero-stat,
  .hero-stat:last-child {
    flex: 1;
    text-align: center;
    padding: 0;
    border-top: none;
    margin-top: 0;
  }

  .hero-stat .num {
    font-size: 24px;
    font-weight: 700;
  }

  .hero-stat .label {
    font-size: 11px;
    line-height: 1.3;
    margin-top: 4px;
  }

  .stat-divider {
    display: block;
    width: 1px;
    height: 50px;
    background: rgba(0, 0, 0, 0.1);
    align-self: center;
    flex-shrink: 0;
  }

  .hero-image {
    order: 2;
    max-width: 100%;
    height: 448px;
    position: relative;
    margin-top: 20px;
  }

  .hero-main-img {
    display: none;
  }

  .responsive {
    position: static;
    display: flex;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .sparkle-1 {
    width: 44px;
    height: 44px;
    top: 14px;
    right: 12px;
  }

  .sparkle-2 {
    width: 28px;
    height: 28px;
    top: 50px;
    left: 12px;
  }

  .brand-bar {
    max-width: 100%;
    display: flex;
    padding: 20px 16px;
    overflow-x: hidden;
  }

  .brand-bar .brand-track {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    max-width: 100%;
    min-width: fit-content;
  }

  .new-arrivals,
  .top-selling {
    margin: 32px auto;
    padding: 0 16px;
  }

  .top-selling .product-card:nth-child(n+3),
  .new-arrivals .product-card:nth-child(n+3),
  .testimonials .testimonial-card:nth-child(n+2) {
    display: none;
  }

  .section-title,
  .section-title.testimonials-title,
  .testimonial-header .section-title {
    font-size: 24px;
  }

  .section-title {
    margin-top: 32px;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .product-image {
    border-radius: 14px;
    margin-bottom: 6px;
  }

  .product-name {
    font-size: 14px;
  }

  .stars,
  .score {
    font-size: 12px;
  }

  .current-price,
  .old-price {
    font-size: 16px;
  }

  .discount-tag {
    font-size: 10px;
    padding: 3px 8px;
  }

  .view-all-btn {
    padding: 14px 60px;
    font-size: 14px;
    width: 100%;
    margin-top: 20px;
  }

  .divider {
    margin: 20px auto;
  }

  .browse-section {
    padding: 32px 16px;
  }

  .browse-container {
    padding: 24px 16px;
    border-radius: 20px;
  }

  .browse-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .style-grid {
    gap: 12px;
  }

  .style-card {
    height: 160px;
    border-radius: 14px;
  }

  .card-text {
    font-size: 24px;
    top: 16px;
    left: 20px;
  }

  .testimonials {
    margin: 32px auto;
    padding: 0 16px;
  }

  .testimonial-header {
    margin-bottom: 20px;
  }

  .testimonial-card {
    padding: 20px;
    border-radius: 14px;
  }

  .customer-name {
    font-size: 16px;
  }

  .comment {
    font-size: 14px;
    line-height: 1.5;
  }

  .arrows {
    gap: 14px;
    font-size: 18px;
  }

  .newsletter-wrapper {
    padding: 0 16px;
    margin-bottom: -50px;
  }

  .newsletter-box {
    padding: 24px 20px;
    border-radius: 14px;
    gap: 20px;
  }

  .newsletter-text {
    font-size: 24px;
    line-height: 1.1;
  }

  .input-group {
    padding: 10px 14px;
  }

  .input-group input {
    font-size: 13px;
  }

  .subscribe-btn {
    padding: 12px;
    font-size: 13px;
  }

  .main-footer {
    padding: 80px 0 40px;
  }

  .footer-container {
    padding: 0 16px;
  }

  .footer-logo {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .footer-desc {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 20px;
  }

  .social-icons {
    gap: 10px;
    margin-bottom: 32px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .link-column h4 {
    font-size: 13px;
    margin-bottom: 18px;
    letter-spacing: 2px;
  }

  .link-column ul li {
    margin-bottom: 14px;
  }

  .link-column ul li a {
    font-size: 14px;
  }

  .footer-divider {
    margin: 32px 0 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .copyright {
    font-size: 12px;
  }

  .payment-methods {
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .payment-methods img {
    width: 40px;
    height: 26px;
    padding: 4px 6px;
  }
}
