:root {
  --bg: #ffffff;
  --text: #101010;
  --text-soft: #4a4a4a;
  --muted: #f5f5f5;
  --line: #e8e8e8;
  --accent: #0f0f0f;
  --accent-2: #252525;
  --shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(circle at 8% 10%, rgba(0, 0, 0, 0.05) 0, transparent 33%),
    radial-gradient(circle at 88% 0%, rgba(0, 0, 0, 0.045) 0, transparent 25%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-user-select: none;
  user-select: none;
}

img,
video {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, 94%);
  border-radius: 18px;
  z-index: 30;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 40px rgba(15, 15, 15, 0.08);
}

.nav-wrapper {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 16px 14px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(15, 15, 15, 0.08);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-weight: 500;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--muted);
}

.brand {
  font-weight: 800;
  font-size: 1.2rem;
}

.brand span {
  font-weight: 300;
}

.main-nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  position: relative;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #111;
  transition: width 0.25s ease;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--text);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  width: 100%;
}

.cart-btn,
.btn-primary {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 11px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.25s ease;
}

.cart-btn {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  padding: 0;
  position: relative;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff4757;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cart-count.hidden {
  opacity: 0;
  transform: scale(0.5);
  pointer-events: none;
}

.btn-primary:hover,
.cart-btn:hover {
  transform: translateY(-2px);
  background: var(--accent-2);
}

.btn-outline {
  border: 1px solid #111;
  background: transparent;
  color: #111;
  border-radius: 999px;
  padding: 9px 14px;
  cursor: pointer;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.hero-content {
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.11), transparent 70%);
  top: -80px;
  right: -45px;
  filter: blur(6px);
  z-index: -1;
}

.tag {
  display: inline-block;
  background: #efefef;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero p {
  color: var(--text-soft);
  margin: 14px 0 20px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 15px auto 30px;
}

.feature,
.card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(8px);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 34px;
}

.stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: linear-gradient(145deg, #fff, #f7f7f7);
}

.stat-card h3 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.section {
  padding: 30px 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.link-more {
  color: var(--text-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pagination {
  margin: 22px 0 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pagination-meta {
  font-size: 0.85rem;
  color: var(--text-soft);
  opacity: 0.9;
}

.pagination-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-btn {
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #111;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.2s ease;
}

.page-btn:hover {
  transform: translateY(-2px);
  background: #fff;
}

.page-btn.active {
  border-color: #111;
  background: #111;
  color: #fff;
}

.page-btn.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
}

.product-card {
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.07);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.01);
}

.product-card .content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card img {
  transition: transform 0.45s ease;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.product-desc {
  color: #4f4f4f;
  font-size: 0.95rem;
  line-height: 1.45;
  min-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price {
  font-weight: 700;
  margin: 8px 0 10px;
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  flex-wrap: wrap;
}

.btn-outline {
  border: 1px solid #111;
  background: transparent;
  color: #111;
  border-radius: 999px;
  padding: 9px 14px;
  cursor: pointer;
}

.media-showcase {
  background: linear-gradient(145deg, #f7f7f7, #ececec);
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
}

.media-grid-large {
  grid-template-columns: repeat(3, 1fr);
}

.media-tile {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #0b0b0b;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.85);
  transform: translateZ(0);
  aspect-ratio: 16 / 10;
}

.media-tile img,
.media-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.media-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.32));
  opacity: 0.9;
  pointer-events: none;
}

.media-tile:hover {
  transform: translateY(-6px);
  transition: transform 0.25s ease;
}

.media-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 0.78rem;
  letter-spacing: 0.2px;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 18px;
  background: linear-gradient(180deg, #fff, #f9f9f9);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
}

.testimonial-card h4 {
  margin-top: 14px;
  font-size: 0.92rem;
}

.cta-band {
  background:
    radial-gradient(circle at left top, rgba(255, 255, 255, 0.14), transparent 35%),
    linear-gradient(120deg, #050505, #191919);
  color: #fff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cta-inner p {
  color: #d6d6d6;
}

.page-space {
  padding-top: 105px;
  padding-bottom: 50px;
}

.details-layout {
  display: grid;
}

.detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.size-btn {
  border: 1px solid #d5d5d5;
  background: #fff;
  padding: 7px 12px;
  border-radius: 10px;
  cursor: pointer;
}

.size-btn.active {
  background: #111;
  color: #fff;
}

.qty-input {
  width: 86px;
  padding: 9px;
  border-radius: 10px;
  border: 1px solid #d5d5d5;
  margin: 0 0 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.social-list {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-list a {
  border: 1px solid #d9d9d9;
  padding: 6px 12px;
  border-radius: 999px;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.social-icon {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: none;
  background: transparent;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.social-icon svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  opacity: 1;
}

.social-icon.instagram:hover svg {
  fill: url(#instagram-gradient);
}

.social-icon.tiktok:hover svg {
  fill: #fff;
}

.social-icon.whatsapp:hover svg {
  fill: #25d366;
}

.about-points {
  margin-top: 12px;
  padding-left: 20px;
}

.contact-extras {
  padding-top: 18px;
}

.contact-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: inherit;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.cart-drawer {
  position: fixed;
  right: -380px;
  top: 0;
  width: min(380px, 95%);
  height: 100vh;
  max-height: 100vh;
  background: #fff;
  border-left: 1px solid var(--line);
  z-index: 40;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.cart-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.icon-btn {
  border: none;
  background: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.cart-items {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 12px 16px;
  min-height: 0;
}

.cart-item {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.cart-footer {
  border-top: 1px solid var(--line);
  padding: 14px 16px;
  flex-shrink: 0;
  overflow-y: auto;
  max-height: 55vh;
}

.cart-footer select {
  width: 100%;
  border: 1px solid #d5d5d5;
  border-radius: 10px;
  padding: 8px;
  margin: 7px 0 12px;
}

.totals p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.full {
  width: 100%;
  margin-top: 8px;
}

.order-form {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.order-form input,
.order-form textarea {
  border: 1px solid #d5d5d5;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: inherit;
  width: 100%;
}

.order-form textarea {
  resize: vertical;
  min-height: 80px;
}

.order-summary {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 12px;
  margin-top: 12px;
  max-height: 200px;
  overflow-y: auto;
}

.order-summary-item {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
}

.order-summary-item:last-child {
  border-bottom: none;
}

.order-form-section {
  display: none;
}

.order-form-section.show {
  display: block;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 25;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(0.985);
  filter: blur(2px);
  transition:
    opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.15s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.site-footer {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 30%),
    #0f0f0f;
  color: #fff;
  padding: 38px 0;
  margin-top: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 20px;
}

.footer-grid h4,
.footer-grid h3 {
  margin-bottom: 10px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: #cfcfcf;
  margin-bottom: 6px;
}

.home-page .section {
  position: relative;
}

.home-hero {
  overflow: hidden;
  padding-top: 55px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
}

.home-hero-left h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.04;
  margin-bottom: 12px;
  background: linear-gradient(120deg, #050505, #353535 45%, #0f6a73);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 18px 0;
}

.hero-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-mini-stats div {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 10px 14px;
  min-width: 88px;
}

.hero-mini-stats strong {
  display: block;
  font-size: 1.1rem;
}

.hero-mini-stats span {
  font-size: 0.8rem;
  color: #676767;
}

.home-hero-right {
  position: relative;
  min-height: 530px;
}

.floating-card {
  position: absolute;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.floating-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-a {
  width: 62%;
  height: 360px;
  top: 20px;
  left: 0;
  animation: floating 5.5s ease-in-out infinite;
}

.card-b {
  width: 48%;
  height: 290px;
  right: 0;
  top: 110px;
  animation: floating 6.2s ease-in-out infinite;
}

.card-c {
  width: 50%;
  height: 230px;
  left: 22%;
  bottom: 26px;
  animation: floating 5.8s ease-in-out infinite;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(35px);
}

.glow-1 {
  width: 280px;
  height: 280px;
  background: rgba(16, 137, 153, 0.2);
  top: 90px;
  right: 8%;
}

.glow-2 {
  width: 220px;
  height: 220px;
  background: rgba(165, 52, 121, 0.18);
  bottom: 20px;
  left: 6%;
}

.home-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(90deg, #111 0%, #282828 100%);
  color: #fff;
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 42px;
  padding: 10px 0;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.82;
  letter-spacing: 1px;
  animation: marqueeMove 22s linear infinite;
  white-space: nowrap;
}

.home-features .feature,
.home-collection .product-card,
.home-split-media,
.home-split-content,
.home-page .testimonial-card {
  border-radius: 22px;
}

.home-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.home-split-media {
  overflow: hidden;
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.home-split-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-split-content {
  padding: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(237, 248, 249, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
}

.home-split-content h2 {
  margin-bottom: 9px;
}

.home-split-content ul {
  margin-top: 12px;
  padding-left: 20px;
  display: grid;
  gap: 6px;
}

@keyframes floating {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes marqueeMove {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

@media (max-width: 900px) {
  .hero-grid,
  .detail-card,
  .contact-layout,
  .features,
  .media-grid,
  .stats-row,
  .testimonials-grid,
  .contact-services,
  .footer-grid,
  .home-hero-grid,
  .home-split {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 24px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header {
    top: 0;
    width: 100%;
    border-radius: 0;
    transform: none;
    left: 0;
  }

  .home-hero {
    padding-top: 25px;
  }

  .home-hero-right {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .floating-card {
    position: static;
    width: 100%;
    height: 220px;
    animation: none;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .section {
    padding: 24px 0;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    text-align: center;
  }

  .media-grid-large {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand {
    font-size: 1rem;
  }

  .home-hero-left h1 {
    font-size: 1.7rem;
  }

  .page-space {
    padding-top: 90px;
  }

  .social-icons {
    gap: 14px;
  }

  .social-icon svg {
    width: 22px;
    height: 22px;
  }

  .hero-mini-stats {
    gap: 10px;
  }

  .hero-mini-stats div {
    min-width: 78px;
    padding: 8px 12px;
  }
}

@media (max-width: 450px) {
  .media-grid-large {
    grid-template-columns: 1fr;
  }

  .product-grid {
    gap: 10px;
  }
}

@media (max-width: 400px) {
  .nav-wrapper {
    padding: 0 10px;
  }

  .cart-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .container {
    width: 94%;
  }

  .home-hero-left h1 {
    font-size: 1.5rem;
  }

  .product-card h3 {
    font-size: 0.95rem;
  }

  .product-desc {
    font-size: 0.88rem;
  }
}
