.section {
  width: 100%;
}

/* HERO SECTION */
.hero {
  background: var(--bg-main);
  padding-block: 4rem 4.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 2.5rem;
}

.hero-left h1 {
  font-size: 6.6rem;
  line-height: 1.05;
}

.hero-left span {
  color: var(--accent);
}

.welcome {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.hero-sub {
  margin-top: 0.9rem;
  max-width: 360px;
}

.hero-buttons {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.5rem;
  margin-bottom: 0.7rem;
}

/* Buttons */
.btn {
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: var(--text-light);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.btn.primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn.outline {
  background: transparent;
  border: 1px solid var(--text-main);
}

.btn.outline:hover {
  background: var(--text-main);
  color: var(--bg-main);
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.4);
}

.btn.ghost.small {
  padding: 0.4rem 1.1rem;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.btn.light {
  background: #f5f8f7;
  color: #111416;
  border: none;
}

.btn.light:hover {
  background: #e5ecea;
}

/* HERO RIGHT */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-shoe-card {
  width: 100%;
  max-width: 550px;
  aspect-ratio: 4 / 3;
  border-radius: 26px;
  display: grid;
  place-items: center;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.45);
}

.hero-shoe-card img {
  transform: rotate(-18deg);
}

.hero-badge {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--badge-bg);
  color: var(--text-light);
  padding: 0.9rem 1.2rem;
  border-radius: 18px;
  min-width: 200px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  color: #000000;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 768px) {
  .hero-badge {
    position: static;
    transform: none;
    margin-top: 1rem;
  }
}


.badge-number {
  font-size: 1.2rem;
  font-weight: 600;
}

.badge-text {
  font-size: 0.75rem;
  margin-bottom: 0.4rem;
}

.badge-btn {
  border: none;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.75rem;
  cursor: pointer;
}

.badge-btn a {
  color: black;
  text-decoration: none;
}

/* FLOATING ANIMATIONS */
@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes floatAlt {
  0% {
    transform: translateY(-10px);
  }

  50% {
    transform: translateY(6px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.floating {
  animation: float 3.2s ease-in-out infinite;
}

.floating-slow {
  animation: float 4.6s ease-in-out infinite;
}

.floating-alt {
  animation: floatAlt 3.5s ease-in-out infinite;
}

/* BAND GENERIC */
.band {
  background: var(--bg-band);
  padding-block: 3.5rem 3.8rem;
}

/* ABOUT BAND */
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 2.6rem;
  align-items: center;
}

.about-image img {
  border-radius: 24px;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.55);
}

.band-label {
  font-size: 2.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  color: #eaf0ee;
}

.about-block+.about-block {
  margin-top: 1.1rem;
}

.about-block h3 {
  margin-bottom: 0.2rem;
  font-size: clamp(2rem, 5vw, 4rem);
}

.about-block p {
  font-size: 0.9rem;
}

.about-text hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-block: 1rem;
}

/* COLLECTION BAND */
.collection-inner {
  padding-block: 3.5rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
}

.collection-left h2 {
  font-size: 1.8rem;
  margin-bottom: 1.1rem;
}

.collection-right {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.product-card {
  border-radius: 26px;
  background: #d3dedb;
  padding: 0.9rem;
  display: grid;
  place-items: center;
}

.product-card.orange {
  background: #ff7f42;
}

.product-card.dark {
  background: #111418;
}

.product-card.round {
  border-radius: 26px;
}

.product-image {
  border-radius: 20px;
  overflow: hidden;
}

.product-image img {
  width: 120%;
}

/* TESTIMONIAL BAND */
.testimonial-inner {
  padding-block: 3.5rem;
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
}

.testimonial-left h2 {
  font-size: 2rem;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.4rem;
  margin-top: 1.3rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--text-light);
}

.rating-big {
  font-size: 2rem;
  font-weight: 600;
}

.rating-text p:first-child {
  font-size: 0.85rem;
}

.rating-text p:last-child {
  font-size: 0.8rem;
}

/* Testimonial card */
.testimonial-card {
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-light);
  border-radius: 24px;
  padding: 1.6rem 1.8rem;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.5);
}

.testimonial-quote {
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonial-user img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

/* FOOTER */
.footer {
  background: var(--bg-footer);
  color: var(--text-light);
  padding-block: 2.7rem 2.3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-text {
  margin-top: 0.8rem;
  max-width: 260px;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.footer-social a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.78rem;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-center h3 {
  font-size: 1rem;
  margin-bottom: 0.9rem;
  padding-top: 2rem;
}

.footer-right {
  padding-top: 2rem;
}

.footer-right h4 {

  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

.footer-right p {
  font-size: 0.85rem;
}

/* REVEAL ANIMATION FOR SECTIONS */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 960px) {

  .hero-inner,
  .about-inner,
  .collection-inner,
  .testimonial-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-right {
    margin-top: 2rem;
  }

  .collection-right {
    order: 2;
  }

  .collection-left {
    order: 1;
  }
}

/* Global responsive nav handled by layout.css */

/* =========================================
   PORTED MINIMAL STYLES (Search & Products)
   ========================================= */

/* --- Hero Search Minimal --- */
.hero-search-minimal {
  display: flex;
  align-items: center;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-top: 2rem;
}

.hero-search-minimal:hover,
.hero-search-minimal:focus-within {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.search-icon {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-right: 1rem;
  opacity: 0.8;
}

.search-input-minimal {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1rem;
  outline: none;
  font-weight: 300;
}

.search-input-minimal::placeholder {
  color: rgba(245, 248, 247, 0.7);
}

/* --- Products Grid (4 Columns) --- */
.products-section {
  padding: 6rem 0;
  background: var(--bg-band);
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-header .band-label {
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  color: var(--text-light);
  font-family: Roboto;
  opacity: 0.7;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--text-light);
  font-family: silver;
  letter-spacing: 0.05em;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Product Cards --- */
.product-card-home {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 1.2rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card-home:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.product-image-home {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 1.2rem;
  background: rgba(0, 0, 0, 0.03);
}

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

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

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: white;
  color: var(--text-main);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-badge.orange {
  background: var(--accent);
  color: white;
}

.product-actions {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: 0.8rem;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.product-card-home:hover .product-actions {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
  background: var(--accent);
  color: white;
  transform: scale(1.1);
}

.product-info {
  text-align: center;
}

.product-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.3rem;
  font-family: silver;
  letter-spacing: 0.05em;
}

.product-price {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.product-btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.product-card-home:hover .product-btn {
  opacity: 1;
  transform: translateY(0);
}

/* POTED SHOP CARD STYLES */
.product-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: cardEntry 0.6s ease backwards;
  position: relative;
}

@keyframes cardEntry {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }

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

.product-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
}

.product-image {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-image img {
  transform: scale(1.15) rotate(2deg);
}

.wishlist-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #0f1514;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.wishlist-btn:hover {
  background: white;
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-info {
  padding: 1.8rem;
  text-align: left;
}

.product-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f1514;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
  cursor: pointer;
}

.product-card:hover .product-name {
  color: #ff914d;
}

.product-category {
  font-size: 0.85rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.product-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ff914d;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.old-price {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
}

.add-to-cart-btn {
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, #ff914d 0%, #e26820 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 20px rgba(255, 145, 77, 0.3);
}

.add-to-cart-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 145, 77, 0.5);
}

.add-to-cart-btn.btn-icon-circle {
  padding: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  justify-content: center;
  gap: 0;
}

/* ==================== HOME PRODUCTS GRID ==================== */
.products-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  margin-bottom: 3.5rem;
}

/* ==================== HOME PRODUCT CARD ==================== */
.home-product-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: homeCardEntry 0.6s ease both;
}

@keyframes homeCardEntry {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }

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

.home-product-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

/* --- Image Container --- */
.home-product-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.04);
}

.home-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.home-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.home-product-card:hover .home-card-overlay {
  opacity: 1;
}

/* --- Badges --- */
.home-badge-new {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-main);
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.home-badge-discount {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #ff914d 0%, #e26820 100%);
  color: white;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(255, 145, 77, 0.4);
}

/* --- Hover Action Buttons --- */
.home-card-actions {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: 0.6rem;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 3;
}

.home-product-card:hover .home-card-actions {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.home-action-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-main);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.home-action-btn:hover {
  background: var(--accent);
  color: white;
  transform: scale(1.12);
  box-shadow: 0 6px 18px rgba(255, 145, 77, 0.4);
}

/* --- Product Details (Below Image) --- */
.home-product-details {
  padding: 1.4rem 1.5rem 1.6rem;
  text-align: center;
}

.home-product-category {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: Roboto;
}

.home-product-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-product-name:hover {
  color: var(--accent);
}

.home-product-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.home-current-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
}

.home-original-price {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: line-through;
  font-weight: 400;
}

/* --- Empty State --- */
.home-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-light);
}

.home-empty-state i {
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  opacity: 0.6;
}

.home-empty-state p {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.home-empty-state span {
  font-size: 0.9rem;
  opacity: 0.5;
}

/* --- View All Button --- */
.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--text-light);
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.35s ease;
  background: transparent;
}

.view-all-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 145, 77, 0.35);
}

.view-all-btn i {
  transition: transform 0.3s ease;
  font-size: 0.85rem;
}

.view-all-btn:hover i {
  transform: translateX(4px);
}

/* ==========================================
   RESPONSIVE OVERHAUL (From Scratch)
   ========================================== */

/* Tablet & Smaller Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
  .products-grid-home {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet / Mobile Layout Transition (max-width: 768px) */
@media (max-width: 768px) {
  .products-grid-home {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .hero-badge {
    position: static;
    transform: none;
    margin-top: 1rem;
  }
}

/* Standard Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .products-grid-home {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .home-product-image {
    height: 260px;
  }

  .hero-left h1 {
    font-size: clamp(3.5rem, 12vw, 4.5rem);
  }

  .hero-shoe-card {
    border-radius: 20px;
  }

  .band-label {
    font-size: 2rem;
  }

  .about-block h3 {
    font-size: 2.5rem;
  }
}

/* Small Mobile (max-width: 320px) */
@media (max-width: 320px) {
  .hero-left h1 {
    font-size: 2.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .hero-badge {
    min-width: 100%;
  }

  .products-grid-home {
    gap: 1rem;
  }

  .home-product-image {
    height: 220px;
  }

  .band-label {
    font-size: 1.6rem;
  }
}

/* Hover Support Fallback */
@media (hover: none) {
  .home-card-actions {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  .home-card-overlay {
    opacity: 0.4;
  }
}