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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Whitney", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: #282c3f;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

/* ========== NAVIGATION BAR ========== */
.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
  z-index: 1000;
  height: 80px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 4%;
}

/* Hide checkbox */
.menu-toggle {
  display: none;
}

/* Menu Overlay - Hidden by default */
.menu-overlay {
  display: none;
}

/* Hamburger Icon - Hidden on desktop */
.hamburger-label {
  display: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
  position: relative;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hamburger-icon span {
  width: 1.5rem;
  height: 0.1875rem;
  background-color: #282c3f;
  transition: all 0.3s ease;
  border-radius: 0.125rem;
}

/* Hamburger Animation */
.menu-toggle:checked + .nav-container .hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.menu-toggle:checked + .nav-container .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked + .nav-container .hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

/* Left Navigation */
.nav-left {
  display: flex;
  align-items: center;
  gap: 2%;
  flex: 1;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  width: 53px;
  height: 36px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
}

.nav-item > a {
  padding: 0 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #282c3f;
  text-transform: uppercase;
  transition: color 0.2s ease, border-color 0.18s ease;
  display: flex;
  align-items: center;
  height: 80px;
  white-space: nowrap;
  box-sizing: border-box;
  border-bottom: 4px solid transparent;
}

/* Pink Border on Hover */
.nav-item:hover > a {
  color: #ff3f6c;
  border-bottom-color: #ff3f6c;
}

.new-tag {
  color: #ff3f6c;
  font-size: 10px;
  font-weight: 700;
  margin-left: 2px;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 40px;
  display: none;
  opacity: 0;
  min-width: 1000px;
  z-index: 999;
  transition: opacity 0.3s ease;
}

.nav-item:hover .mega-menu {
  display: flex;
  opacity: 1;
  gap: 60px;
}

.mega-column {
  flex: 1;
  min-width: 150px;
}

.mega-column h4 {
  color: #ff3f6c;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.mega-column a {
  display: block;
  color: #282c3f;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 0;
  transition: all 0.2s ease;
}

.mega-column a:hover {
  color: #ff3f6c;
  font-weight: 600;
  padding-left: 5px;
}

.divider {
  border: none;
  border-top: 1px solid #e9e9ed;
  margin: 20px 0;
}

/* Right Navigation */
.nav-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 15px;
  fill: #282c3f;
  pointer-events: none;
}

.search-box input {
  width: 350px;
  height: 40px;
  padding: 10px 10px 10px 42px;
  font-size: 14px;
  color: #282c3f;
  background: #f5f5f6;
  border: 1px solid #f5f5f6;
  border-radius: 4px;
  outline: none;
  transition: all 0.3s ease;
}

.search-box input:focus {
  background: #fff;
  border-color: #d4d5d9;
}

.search-box input::placeholder {
  color: #94969f;
}

.nav-icons {
  display: flex;
  gap: 25px;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.icon-svg {
  fill: #282c3f;
  margin-bottom: 5px;
  transition: fill 0.3s ease;
}

.label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.icon-item:hover .icon-svg {
  fill: #ff3f6c;
}

.icon-item:hover .label {
  color: #ff3f6c;
}

/* ========== MAIN CONTENT ========== */
main {
  max-width: 100%;
}

/* Section Headings */
.section-heading {
  text-align: center;
  padding: 60px 4% 40px;
}

.section-heading h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #282c3f;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #ff3f6c, #ff527b);
  border-radius: 2px;
}

.hero-banner img,
.deals-banner img,
.shop-category img,
.explore-more img,
.full-width-banner img {
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hero-banner img:hover,
.deals-banner img:hover,
.shop-category img:hover,
.explore-more img:hover,
.full-width-banner img:hover {
  transform: scale(1.005);
}

/* Category Section */
.category-section {
  padding: 30px 4%;
}

.category-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.category-item {
  flex: 1 1 150px;
  min-width: 150px;
  max-width: 200px;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Category Banners */
.category-banners {
  padding: 20px 4%;
}

.banner-row {
  display: flex;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.banner-row img {
  flex: 1;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.banner-row img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* ========== PRODUCT SHOWCASE ========== */
.products-section {
  padding: 40px 4% 60px;
  background: linear-gradient(to bottom, #fff 0%, #fafbfc 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: block;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #f5f5f6;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.wishlist-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  border: 1px solid #d4d5d9;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-card:hover .wishlist-badge {
  opacity: 1;
}

.wishlist-badge:hover {
  background: #ff3f6c;
  color: #fff;
  border-color: #ff3f6c;
  transform: scale(1.1);
}

.product-info {
  padding: 16px;
}

.brand-name {
  font-size: 16px;
  font-weight: 700;
  color: #282c3f;
  margin-bottom: 4px;
}

.product-name {
  font-size: 14px;
  color: #535665;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.price {
  font-size: 14px;
  font-weight: 700;
  color: #282c3f;
}

.original-price {
  font-size: 12px;
  color: #94969f;
  text-decoration: line-through;
}

.discount {
  font-size: 12px;
  color: #ff905a;
  font-weight: 600;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}

.rating {
  color: #282c3f;
  font-weight: 700;
  padding: 2px 6px;
  background: #f5f5f6;
  border-radius: 4px;
}

.rating-count {
  color: #94969f;
}

/* Brands & Trending Sections */
.brands-section,
.trending-section {
  padding: 40px 4%;
}

.brands-section h2,
.trending-section h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #282c3f;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.brands-grid,
.trending-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-item,
.trending-item {
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.brand-item:hover,
.trending-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* ========== FOOTER ========== */
footer {
  background: #fafbfc;
  padding: 36px 0 12px;
  margin-top: 60px;
  font-size: 14px;
  border-top: 1px solid #e9e9ed;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  margin-bottom: 28px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 700;
  color: #282c3f;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-column a {
  color: #696b79;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ff3f6c;
  font-weight: 600;
}

.app-links {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.app-links img {
  width: 130px;
  height: 40px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.app-links img:hover {
  transform: scale(1.05);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}

.footer-divider {
  border-top: 1px solid #d4d5d9;
  margin: 20px 0;
  opacity: 0.3;
}

.footer-guarantee {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.guarantee-item img {
  width: 50px;
  height: 50px;
}

.guarantee-item p {
  font-size: 13px;
  color: #696b79;
  line-height: 1.5;
}

.footer-info {
  margin-bottom: 18px;
}

.footer-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #282c3f;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.footer-info p {
  font-size: 13px;
  color: #696b79;
  line-height: 1.8;
}

.footer-bottom {
  text-align: left;}

.footer-bottom p {
  font-size: 13px;
  color: #696b79;
  margin-bottom: 6px;
}

.footer-bottom a {
  color: #282c3f;
}

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

/* ========== RESPONSIVE MEDIA QUERIES ========== */

/* Tablets (max-width: 768px) */
@media screen and (max-width: 768px) {
  .navbar {
    height: 64px;
  }

  .nav-container {
    padding: 0 3%;
  }

  /* Show Hamburger */
  .hamburger-label {
    display: flex;
  }

  .logo {
    width: 44px;
    height: 30px;
  }

  /* Mobile Menu */
  .nav-menu {
    position: fixed;
    top: 64px;
    left: -100%;
    width: 75%;
    max-width: 320px;
    height: calc(100vh - 64px);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 24px 0;
    box-shadow: 4px 0 16px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 1001;
  }

  /* Show menu when checked */
  .menu-toggle:checked ~ .nav-container .nav-menu {
    left: 0;
  }

  /* Show overlay when menu is open */
  .menu-overlay {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1000;
  }

  .menu-toggle:checked ~ .menu-overlay {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .nav-item {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #e9e9ed;
  }

  .nav-item > a {
    width: 100%;
    padding: 16px 24px;
    height: auto;
    font-size: 15px;
  }

  .nav-item:hover > a {
    border-bottom: none;
    background: #fafbfc;
  }

  /* Hide mega menu on mobile */
  .mega-menu {
    display: none !important;
  }

  /* Hide right nav on mobile */
  .nav-right {
    display: none;
  }

  /* Sections */
  .section-heading {
    padding: 40px 3% 30px;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .category-grid {
    gap: 12px;
  }

  .category-item {
    min-width: 120px;
    max-width: 160px;
  }

  .banner-row {
    flex-direction: column;
    gap: 16px;
  }

  .brands-grid,
  .trending-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-guarantee {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .category-section,
  .products-section,
  .brands-section,
  .trending-section {
    padding: 24px 3%;
  }
}

/* Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .navbar {
    height: 56px;
  }

  .nav-container {
    padding: 0 2%;
  }

  .logo {
    width: 40px;
    height: 27px;
  }

  .nav-menu {
    top: 56px;
    height: calc(100vh - 56px);
    width: 85%;
  }

  .menu-overlay {
    top: 56px;
    height: calc(100vh - 56px);
  }

  .section-heading {
    padding: 32px 2% 24px;
  }

  .section-heading h2 {
    font-size: 20px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-info {
    padding: 12px;
  }

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

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

  .category-grid {
    gap: 10px;
  }

  .category-item {
    min-width: 100px;
    max-width: 128px;
  }

  .brands-grid,
  .trending-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .brands-section h2,
  .trending-section h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

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

  .app-links {
    flex-direction: column;
  }

  .app-links img {
    width: 112px;
    height: 34px;
  }

  .category-section,
  .products-section,
  .brands-section,
  .trending-section,
  .category-banners {
    padding: 20px 2%;
  }

  footer {
    padding: 32px 0 16px;
  }
}

/* Large Tablets & Small Desktops (769px - 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .nav-container {
    padding: 0 3%;
  }

  .search-box input {
    width: 240px;
  }

  .nav-item > a {
    padding: 0 10px;
    font-size: 13px;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .brands-grid,
  .trending-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Extra Large Screens (min-width: 1440px) */
@media screen and (min-width: 1440px) {
  .nav-container {
    max-width: 1920px;
  }

  .products-grid {
    grid-template-columns: repeat(5, 1fr);
    max-width: 1600px;
  }

  .brands-grid,
  .trending-grid {
    max-width: 1400px;
  }
}
h1,
h3 {
  font-size: 14px;
  color: #535766 !important;
  font-weight: 700;
}
li {
  list-style-type: decimal;
  margin: 1em 0;
  line-height: 18px;
  color: #94969f;
  font-size: 14px;
  display: list-item;
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  text-transform: none;
  text-indent: 0px !important;
  text-align: start !important;
  text-align-last: auto !important;
  unicode-bidi: isolate;
}

/* ========== TRUST & GUARANTEES SECTION ========== */

.footer-trust-section {
  background: #fff;
  padding: 40px 4%;
}

.footer-trust-section h3 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #282c3f;
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.trust-item {
  text-align: center;
  padding: 18px 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fafbfc 0%, #f5f5f6 100%);
  border: 1px solid #e9e9ed;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-item:hover {
  background: linear-gradient(135deg, #fff 0%, #fafbfc 100%);
  border-color: #ff3f6c;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(255, 63, 108, 0.12);
}

.trust-icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
  transition: transform 0.3s ease;
}

.trust-item:hover .trust-icon {
  transform: scale(1.15);
}

.trust-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #282c3f;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.trust-item p {
  font-size: 13px;
  color: #696b79;
  line-height: 1.6;
  margin: 0;
}

/* ========== TRUST SECTION RESPONSIVE ========== */
@media screen and (max-width: 768px) {
  .footer-trust-section {
    padding: 28px 3%;
  }

  .footer-trust-section h3 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .trust-item {
    padding: 14px 12px;
  }

  .trust-icon {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .trust-item h4 {
    font-size: 13px;
  }

  .trust-item p {
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .footer-trust-section {
    padding: 20px 2%;
  }

  .footer-trust-section h3 {
    font-size: 18px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-item {
    padding: 12px 10px;
  }

  .trust-icon {
    font-size: 28px;
  }

  .trust-item h4 {
    font-size: 12px;
  }

  .trust-item p {
    font-size: 11px;
  }
}

/* ========== CORPORATE FOOTER ADDITIONS ========== */

.footer-corporate-newsletter {
  background: #f5f5f6;
  padding: 28px 4%;
  border-bottom: 1px solid #e9e9ed;
}

.newsletter-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.newsletter-left h4 {
  font-size: 16px;
  font-weight: 700;
  color: #282c3f;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.newsletter-left p {
  font-size: 13px;
  color: #696b79;
  margin: 0;
  max-width: 350px;
  line-height: 1.5;
}

.newsletter-right {
  flex: 1;
  min-width: 300px;
}

.corporate-form {
  display: flex;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.corporate-form input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  background: #fff;
  font-size: 13px;
  color: #282c3f;
  outline: none;
  transition: all 0.3s ease;
}

.corporate-form input::placeholder {
  color: #94969f;
}

.corporate-form input:focus {
  box-shadow: inset 0 0 0 2px #ff3f6c;
}

.corporate-form button {
  padding: 10px 18px;
  background: #ff3f6c;
  color: #fff;
  border: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
}

.corporate-form button:hover {
  background: #ff2a52;
  box-shadow: 0 4px 8px rgba(255, 63, 108, 0.3);
}

/* ========== CORPORATE FOOTER RESPONSIVE ========== */
@media screen and (max-width: 768px) {
  .footer-corporate-newsletter {
    padding: 20px 3%;
  }

  .newsletter-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .newsletter-left p {
    max-width: 100%;
  }

  .newsletter-right {
    min-width: auto;
  }

  .corporate-form {
    flex-direction: column;
  }

  .corporate-form input,
  .corporate-form button {
    width: 100%;
  }

  .corporate-form button {
    padding: 12px 14px;
  }
}

@media screen and (max-width: 480px) {
  .footer-corporate-newsletter {
    padding: 25px 2%;
  }

  .newsletter-left h4 {
    font-size: 14px;
  }

  .newsletter-left p {
    font-size: 12px;
  }

  .corporate-form input {
    padding: 10px 12px;
    font-size: 12px;
  }

  .corporate-form button {
    padding: 10px 12px;
    font-size: 12px;
  }
}
