:root {
  --primary: #000000;
  --secondary: #ffffff;
  --accent: #333333;
  --sale: #b42318;
  --soft-accent: #f4efe7;
  --surface: #ffffff;
  --light-bg: #f7f7f4;
  --dark-bg: #0a0a0a;
  --gray: #666666;
  --border: #e0e0e0;
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 14px 36px rgba(0, 0, 0, 0.14);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--primary);
  overflow-x: hidden;
  max-width: 100%;
  background: var(--surface);
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

/* Section Padding */
.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.section-title h2 {
  font-size: 2.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
}

.section-title p {
  color: var(--gray);
  margin-top: 15px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Navbar */
.shopper-navbar {
  padding: 14px 0;
  z-index: 1000;
  transition:
    padding 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.shopper-navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0));
  transition: opacity 0.28s ease;
}

.shopper-navbar.scrolled {
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.shopper-navbar.scrolled::before {
  opacity: 0;
}

.shopper-navbar .container {
  align-items: center;
  gap: 18px;
}

.shopper-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: #fff;
  text-decoration: none;
}

.shopper-brand:hover,
.shopper-brand:focus {
  color: #fff;
}

.shopper-navbar.scrolled .shopper-brand,
.shopper-navbar.scrolled .shopper-brand:hover,
.shopper-navbar.scrolled .shopper-brand:focus {
  color: #000;
}

.shopper-brand-logo {
  width: 220px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.shopper-menu {
  gap: 16px;
}

.shopper-menu .navbar-nav {
  gap: 2px;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 10px 13px !important;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.shopper-navbar.scrolled .nav-link {
  color: rgba(0, 0, 0, 0.66) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 7px;
  left: 13px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: center;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff !important;
}

.shopper-navbar.scrolled .nav-link:hover,
.shopper-navbar.scrolled .nav-link.active {
  color: #000 !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  color: #000;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.nav-call-button:hover {
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.shopper-navbar.scrolled .nav-call-button {
  color: #fff;
  background: #000;
  border-color: #000;
  box-shadow: none;
}

.shopper-navbar.scrolled .nav-call-button:hover {
  color: #fff;
}

.shopper-toggler {
  width: 46px;
  height: 46px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  box-shadow: none !important;
}

.shopper-toggler span {
  width: 20px;
  height: 2px;
  display: block;
  background: #fff;
  border-radius: 999px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    background 0.25s ease;
}

.shopper-navbar.scrolled .shopper-toggler {
  border-color: rgba(0, 0, 0, 0.22);
}

.shopper-navbar.scrolled .shopper-toggler span {
  background: #000;
}

.shopper-toggler[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.shopper-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.shopper-toggler[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero Slider */
.hero-section {
  position: relative;
  height: min(100svh, 820px);
  min-height: 640px;
  overflow: hidden;
}

.hero-section .swiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.76) 0%,
      rgba(0, 0, 0, 0.34) 58%,
      rgba(0, 0, 0, 0.62) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding-top: 64px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.7;
}

.hero-content .btn {
  padding: 14px 35px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  border-radius: 6px;
  margin-right: 15px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.btn-primary-custom {
  background: #fff;
  color: #000;
  border: 2px solid #fff;
}

.btn-primary-custom:hover {
  background: transparent;
  color: #fff;
}

.btn-outline-custom {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline-custom:hover {
  background: #fff;
  color: #000;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.3);
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.8);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem;
}

/* Discount Badge */
.discount-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--sale);
  color: #fff;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 5;
  letter-spacing: 1px;
}

/* About Section */
.about-section {
  background: #fff;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
}

.about-image::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid #000;
  z-index: -1;
}

.about-text h3 {
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Features Grid */
.features-section {
  background: var(--dark-bg);
  color: #fff;
}

.features-section .section-title h2 {
  color: #fff;
}

.features-section .section-title h2::after {
  background: #fff;
}

.features-section .section-title p {
  color: rgba(255, 255, 255, 0.6);
}

.feature-card {
  text-align: center;
  padding: 34px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}

.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: inline-block;
}

.feature-card h5 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.6;
}

/* Products Section */
.products-section {
  background: var(--light-bg);
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  max-width: 340px;
  margin: 0 auto;
  width: 100%;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.product-card .product-img {
  position: relative;
  overflow: hidden;
  height: 310px;
  background: #eee;
}

.product-card .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.08);
}

.product-card .product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--sale);
  color: #fff;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-card .product-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card .product-info h6 {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  line-height: 1.3;
}

.product-card .product-info .category {
  color: var(--gray);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

/* Product Swiper */
.products-section .swiper {
  padding: 12px 4px 58px;
  overflow: hidden;
}

.products-section .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

.products-section .swiper-wrapper {
  padding-left: 2px;
}

.products-section .swiper-slide:last-child {
  margin-right: 16px;
}

.products-section .swiper-button-next,
.products-section .swiper-button-prev {
  background: #000;
  color: #fff;
  width: 45px;
  height: 45px;
}

.products-section .swiper-button-next::after,
.products-section .swiper-button-prev::after {
  font-size: 1rem;
}

.products-section .swiper-pagination-bullet {
  background: #000;
  opacity: 0.3;
}

.products-section .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Gallery Section */
.gallery-section {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 270px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: #fff;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* GLightbox overrides */
.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background: rgba(0, 0, 0, 0.6);
}

.glightbox-clean .gclose:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
  background: #000;
}

/* Contact Section */
.contact-section {
  background: var(--light-bg);
}

.contact-form .form-control {
  border-radius: 6px;
  border: 1px solid var(--border);
  padding: 14px 18px;
  font-size: 16px;
  margin-bottom: 6px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #000;
  box-shadow: none;
}

.contact-form .btn {
  padding: 14px 40px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  border-radius: 6px;
  background: #000;
  color: #fff;
  border: 2px solid #000;
  transition: all 0.3s ease;
}

.contact-form .btn:hover {
  background: #fff;
  color: #000;
}

.contact-info-box {
  padding: 25px;
  background: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border-left: 3px solid #000;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.contact-info-box .icon {
  font-size: 1.5rem;
  color: #000;
  min-width: 30px;
}

.contact-info-box h6 {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.contact-info-box p {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
}

.map-container {
  width: 100%;
  height: 350px;
  border: none;
  margin-top: 20px;
  border-radius: 8px;
}

/* Footer */
.footer {
  background: var(--dark-bg);
  color: #fff;
  padding: 64px 0 28px;
}

.footer-brand h4 {
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.footer-brand img {
  width: 220px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.footer-brand span {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.6;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 15px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer h6 {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h6::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.footer-social a:hover {
  background: #fff;
  color: #000;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  margin-top: 40px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin: 0;
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  border: 1px solid #cecbcb;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: #fff;
  color: #000;
}

[hidden] {
  display: none !important;
}

/* Mobile Navigation: phone icon button next to toggler */
.nav-mobile-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  flex-shrink: 0;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.nav-mobile-call:hover,
.nav-mobile-call:focus {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.shopper-navbar.scrolled .nav-mobile-call {
  background: rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 0, 0, 0.2);
  color: #000;
}

.shopper-navbar.scrolled .nav-mobile-call:hover {
  background: rgba(0, 0, 0, 0.13);
  color: #000;
}

/* Full call button inside the collapsed mobile menu */
.nav-call-menu {
  width: 100%;
  margin-top: 14px;
  justify-content: center;
  padding: 13px 20px !important;
  border-radius: 8px;
}

/* Mobile Sticky Bottom Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  display: flex;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.14);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 8px 12px;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-sticky-btn:active {
  opacity: 0.75;
}

.mobile-sticky-btn i {
  font-size: 1.25rem;
}

.mobile-sticky-call {
  background: #000;
  color: #fff;
}

.mobile-sticky-call:hover {
  color: #fff;
}

.mobile-sticky-direction {
  background: #fff;
  color: #000;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-sticky-direction:hover {
  color: #000;
}

/* Responsive - Large Tablets (992px - 1199px) */
@media (min-width: 1200px) {
  .gallery-grid {
    gap: 20px;
  }

  .gallery-item {
    height: 280px;
  }
}

@media (max-width: 1199.98px) {
  .products-section .swiper {
    padding: 12px 4px 52px;
  }
}

/* Responsive - Tablets Landscape (768px - 991px) */
@media (max-width: 991.98px) { 
  /* Scroll-top sits above sticky bar */
  .scroll-top {
    bottom: 82px;
  }

  .shopper-menu {
    order: 3;
    flex-basis: 100%;
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    background: rgba(0, 0, 0, 0.93);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .shopper-navbar.scrolled .shopper-menu {
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
  }

  .shopper-menu .navbar-nav {
    align-items: stretch !important;
    gap: 2px;
  }

  .shopper-menu .nav-link {
    padding: 13px 14px !important;
    border-radius: 8px;
    font-size: 0.88rem;
  }

  .shopper-menu .nav-link::after {
    right: 14px;
    bottom: 8px;
    left: 14px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .about-image img {
    max-height: 420px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .product-card .product-img {
    height: 280px;
  }

  .hero-content .btn {
    padding: 12px 28px;
    font-size: 0.82rem;
  }
}

/* Responsive - Tablets Portrait / Small Laptops (576px - 767px) */
@media (max-width: 767.98px) {
  .shopper-navbar {
    padding: 8px 0;
  }

  .shopper-brand-logo {
    width: 180px;
    height: 50px;
  }

  .hero-section {
    min-height: 560px;
    height: 92svh;
  }

  .hero-content {
    padding-top: 56px;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  .hero-content h1 span {
    font-size: 0.9rem;
    letter-spacing: 3px;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-content .btn {
    width: 100%;
    max-width: 280px;
    margin-right: 0;
    display: flex;
    justify-content: center;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .section-padding {
    padding: 56px 0;
  }

  .section-title {
    margin-bottom: 32px;
  }

  .section-title h2 {
    font-size: 1.75rem;
  }

  .section-title p {
    font-size: 0.95rem;
  }

  .about-image {
    margin-bottom: 24px;
  }

  .about-image::before {
    display: none;
  }

  .about-image img {
    max-height: 320px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-item {
    height: 210px;
  }

  .product-card .product-img {
    height: 260px;
    object-fit: cover;
  }

  .product-card .product-info {
    padding: 18px 18px 14px;
  }

  .map-container {
    height: 280px;
  }

  .footer {
    padding: 48px 0 24px;
  }
}

/* Responsive - Small Phones (< 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 500px;
    height: 90svh;
  }

  .hero-content h1 {
    font-size: 1.85rem;
  }

  .hero-content h1 span {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .hero-content .btn {
    max-width: 100%;
    padding: 10px 24px;
    font-size: 0.78rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .gallery-item {
    height: 175px;
  }

  .gallery-grid {
    gap: 10px;
  }

  .shopper-brand-logo {
    width: 190px;
    height: 55px;
  }

  .contact-form .btn {
    width: 100%;
    justify-content: center;
    display: flex;
    padding: 16px 40px;
  }

  .scroll-top {
    right: 14px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Responsive - Very Small Phones Gallery fix (< 480px) */
@media (max-width: 479.98px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gallery-item {
    height: 230px;
  }
}

/* Responsive - Very Small Phones (< 420px) */
@media (max-width: 420px) {
  .shopper-navbar .container {
    gap: 6px;
  }

  .shopper-brand-logo {
    width: 175px;
    height: 55px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content h1 span {
    letter-spacing: 1.5px;
  }

  .product-card {
    max-width: 300px;
  }

  .section-padding {
    padding: 44px 0;
  }

  .contact-info-box {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* Responsive - Tiny Phones (< 360px) */
@media (max-width: 360px) {
  .shopper-brand-logo {
    width: 185px;
    height: 60px;
  }

  .hero-content h1 {
    font-size: 1.35rem;
  }

  .hero-content h1 span {
    font-size: 0.7rem;
  }

  .hero-content p {
    font-size: 0.85rem;
  }

  .section-title h2 {
    font-size: 1.25rem;
  }

  .section-title p {
    font-size: 0.85rem;
  }

  .product-card {
    max-width: 260px;
  }

  .product-card .product-img {
    height: 220px;
  }

  .gallery-item {
    height: 180px;
  }

  .contact-info-box {
    padding: 18px;
  }
}

/* Chrome, Safari, Edge, Opera */
.no-spinner::-webkit-outer-spin-button,
.no-spinner::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.no-spinner {
  -moz-appearance: textfield;
  appearance: textfield;
}