html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
}

#logo {
  height: 50px;
  width: 130px;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%), url('https://storage.googleapis.com/workspace-0f70711f-8b4e-4d94-86f1-2a93ccde5887/image/66bd744c-de7b-43c3-ae33-f7a3fc5d5590.png') no-repeat center center;
  background-size: cover;
}

.watch-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.watch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.brand-logo {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

#collect {
  background-color: gray;
}

.newsletter-bg {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

footer {
  background-color: rgb(117, 117, 117);
}


.top-line {
  width: 100%;
  height: 40px;
  background-color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  font-size: 14px;
  color: white;
  box-sizing: border-box;
  overflow: hidden;
}

.contact-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.contact-info span {
  margin-right: 20px;
  white-space: nowrap;
}

.contact-info i {
  margin-right: 6px;
  color: #fdfdfb;
}

.social-icons {
  display: flex;
  align-items: center;
}

.social-icons a {
  color: white;
  margin-left: 15px;
  font-size: 14px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #f0c14b;
}

/* From Uiverse.io by vinodjangid07 */
.button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgb(20, 20, 20);
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 4px rgba(180, 160, 255, 0.253);
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  position: relative;
}

.svgIcon {
  width: 12px;
  transition-duration: 0.3s;
}

.svgIcon path {
  fill: white;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

body {
  color: #e2e8f0;

}

.carousel-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  background: linear-gradient(145deg, #3d3d3dff 0%, #615f5fff 100%);
  margin-bottom: 80px;
}

.carousel {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 500px;
}

.carousel-item {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

.watch-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1000px;
  width: 100%;
}

.watch-image {
  flex: 1;
  position: relative;
  perspective: 1000px;
}

.watch-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
  transform: rotateY(-5deg) rotateX(5deg);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.3),
    -10px -10px 30px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.watch-image:hover img {
  transform: rotateY(0deg) rotateX(0deg);
}

.watch-details {
  flex: 1;
  padding: 2rem;
}

.watch-brand {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.watch-model {
  font-size: 1.8rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.watch-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.watch-price {
  font-size: 2rem;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 2rem;
}

.watch-features {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.feature {
  background: rgba(0, 0, 0, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #e2e8f0;
  backdrop-filter: blur(10px);
}

.cta-button {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  transform: translateY(-50%);
  z-index: 10;
}

.control-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.control-btn svg {
  width: 24px;
  height: 24px;
  fill: #f8fafc;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #f59e0b;
  transform: scale(1.2);
}

.carousel-title {
  text-align: center;
  margin-bottom: 3rem;
}

.carousel-title h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fdfdfdff 0%, #ffffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.carousel-title p {
  font-size: 1.2rem;
  color: #ffffffff;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .watch-content {
    flex-direction: column;
    text-align: center;
  }

  .carousel-item {
    padding: 1rem;
  }

  .watch-image img {
    height: 250px;
  }

  .watch-brand {
    font-size: 2rem;
  }

  .watch-model {
    font-size: 1.4rem;
  }

  .carousel-title h1 {
    font-size: 2.5rem;
  }
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
  display: none;
}

.cart-item img {
  width: 60px;
  margin-right: 10px;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.remove-btn {
  background: none;
  border: none;
  color: red;
  font-size: 18px;
  cursor: pointer;
}

.remove-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s;
}

.remove-btn:hover {
  transform: scale(1.2);
  filter: brightness(0.5);
}

nav a {
  text-align: center;
}

/* From Uiverse.io by boryanakrasteva */


.search-icon {
  position: absolute;
  right: 65px;
  /* Adjust based on input padding/width */
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.input:focus~.search-icon {
  opacity: 1;
}

/* Hide original icon animation to keep it clean */
.input-container:hover>.icon {
  animation: none;
}

.category-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0px;
  justify-items: center;
  text-align: center;
  margin-bottom: 100px;

}

.category-item {

  flex-direction: column;
  align-items: center;

}

.icon-circle {
  background-color: #e5e5e5;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;

}

.category-container :hover {
  transform: scale(1.1);
  transition-duration: 1s;


}

.icon-circle img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.category-label {
  font-size: 14px;
  font-weight: bold;
  color: #000;
}


.categories {
  display: flex;
  gap: 55px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px;
  max-width: 1200px;
  margin: 50px;
  margin-left: 80px;


}

.category {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  width: 350px;
  height: 480px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.label {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgb(7, 7, 7);
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .category {
    width: 100%;
    height: 400px;
  }
}

@media (max-width: 480px) {
  .category {
    height: 300px;
  }

  .label {
    font-size: 14px;
    padding: 6px 12px;
  }
}

.carousel {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.carousel-inner {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 100vw;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}

.control {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 1.5rem;
}

.indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.indicator {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.indicator.active {
  background: white;
}


.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 15px;
}


.product-card {
  background-color: #f1ecec;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 280px;
  font-family: sans-serif;
  transition: transform 0.2s ease-in-out;
  margin: 15px;
  height: 460px;
  ;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  position: relative;
}

.product-image img {
  width: 100%;
  display: block;
}

.discount-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #f30a06;
  color: white;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
}

.product-details {
  padding: 16px;
}

.brand {
  font-size: 14px;
  color: #0c0b0b;
}

.product-name {
  font-size: 18px;
  font-weight: bold;
  margin: 4px 0;
  color: #0c0b0b;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.price {
  font-size: 22px;
  font-weight: bold;
  color: #222;
}

.old-price {
  text-decoration: line-through;
  color: #4b4b4b;
  font-size: 17px;
  margin-left: 8px;
}

.whatsapp-btn {
  margin-top: 15px;
  display: block;
  width: 90%;
  background-color: #25D366;
  color: rgb(255, 255, 255);
  padding: 10px;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.whatsapp-btn:hover {
  background-color: hsl(103, 100%, 66%);
  background-color: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
  color: #00ff88;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

@media (max-width: 600px) {
  .product-card {
    width: 80%;
  }
}

.top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  color: #fff;
  padding: 8px 20px;
  flex-wrap: wrap;
  /* allow wrapping on small screens */
}

.contact-info span {
  margin-right: 15px;
  font-size: 14px;
}

.contact-info i {
  margin-right: 5px;
  color: #fdfdfd;
}

.social-icons a {
  color: #fff;
  margin-left: 12px;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #9b9a9a;
}

/* ✅ Responsive adjustments */
@media (max-width: 768px) {
  .top-line {
    flex-direction: column;
    text-align: center;
  }

  .contact-info {
    margin-bottom: 8px;
  }

  .contact-info span {
    display: block;
    margin: 5px 0;
  }
}

@media (max-width: 480px) {
  .top-line {
    padding: 10px;
  }

  .contact-info span {
    font-size: 13px;
  }

  .social-icons a {
    font-size: 18px;
    margin: 0 8px;
  }
}

/* Replaced .input-container styles here (removed old ones) */

.carousel {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

@media (max-width: 768px) {
  .carousel {
    display: none;
  }
}

#searchResults a {
  display: block;
  text-decoration: none;
}

#searchResults a:hover {
  background-color: #f3f4f6;
}

/* --- Smooth Input Animation --- */
.search-input {
  background-color: #f9fafb;
  color: #333;
}

.search-input::placeholder {
  color: #9ca3af;
  transition: color 0.3s;
}

.search-input:focus::placeholder {
  color: transparent;
}

/* --- Search icon hover effect --- */
.input-container .icon svg {
  transition: color 0.3s, transform 0.3s;
}

.input-container:hover .icon svg {
  color: #eb2525;
  /* blue tone */
  transform: scale(1.1);
}

/* --- Dropdown Results --- */
#searchResults {
  overflow: hidden;
  max-height: 300px;
  transition: all 0.3s ease;
}

#searchResults a {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  color: #374151;
  font-size: 15px;
  border-bottom: 1px solid #f3f4f6;
}

#searchResults a:hover {
  background-color: #f0f9ff;
  color: #8d8b8b;
}

@media (max-width: 640px) {
  .search-input {
    width: 100%;
  }
}

/* From Uiverse.io by nikk7007 */
.slice {
  --c1: #ffffff;
  --c2: #5a5858;
  --size-letter: 25px;
  /* 🔹 Pehle 32px tha, ab chhota kar diya */
  padding: 0.3em 0.7em;
  /* 🔹 Padding bhi kam kar di */
  font-size: var(--size-letter);
  font-family: 'Times New Roman', Times, serif;

  background-color: transparent;
  border: calc(var(--size-letter) / 6) solid var(--c2);
  border-radius: 0.2em;
  cursor: pointer;
  left: 150px;
  overflow: hidden;
  position: relative;
  transition: 300ms cubic-bezier(0.83, 0, 0.17, 1);

  &>.text {
    font-weight: 500;
    color: var(--c2);
    position: relative;
    z-index: 1;
    transition: color 700ms cubic-bezier(0.83, 0, 0.17, 1);
  }
}

.slice::after {
  content: "";
  width: 0;
  height: calc(300% + 1em);
  position: absolute;
  translate: -50% -50%;
  inset: 50%;
  rotate: 30deg;
  background-color: var(--c2);
  transition: 1000ms cubic-bezier(0.83, 0, 0.17, 1);
}

.slice:hover {
  &>.text {
    color: var(--c1);
  }

  &::after {
    width: calc(120% + 1em);
  }
}

.slice:active {
  scale: 0.98;
  filter: brightness(0.9);
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #000;
}

/* 🔹 Dusri image default me hidden rahegi */
.product-image img.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-card:hover .product-image img.hover-img {
  opacity: 1;
}

.product-card:hover .product-image img.main-img {
  opacity: 0;
}

.product-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp_chat_support {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
}

/* Floating Button */
.chat_button {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chat_button:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

.chat_button img {
  width: 35px;
  height: 35px;
}

/* Chat Box */
.chat_box {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: #7a7e7b;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgb(255, 255, 255);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: fadeInUp 0.3s ease;
}

.chat_header {
  background-color: #2a5853;
  color: #fff;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat_header_text strong {
  font-size: 18px;
}

.chat_header_text small {
  font-size: 12px;
  opacity: 0.8;
}

.close_chat {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* Chat Body */
.chat_body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.agent_msg {
  background: #616360;
  padding: 10px 15px;
  border-radius: 8px;
  align-self: flex-start;
  font-size: 14px;
  margin-bottom: 200px;
}

/* Input Area */
.user_input_area {
  display: flex;
  align-items: center;
  border: 1px solid #fffdfd;
  border-radius: 30px;
  overflow: hidden;
  color: #000;
}

.user_input_area input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 15px;
  font-size: 14px;
}

.user_input_area button {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  height: 41px;
}

.user_input_area button:hover {
  background-color: #20ba5a;
  color: #000;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tax-banner {
  background-color: #ff0000;
  color: #ffffff;
  padding: 12px 20px;
  text-align: right;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

@media (max-width: 600px) {
  .tax-banner {
    text-align: center;
  }
}

/* Custom Animations for Cart */
@keyframes fadeInUpCustom {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate-fade-in-up {
  animation: fadeInUpCustom 0.4s ease-out forwards;
}

/* Add to Cart Button Styling */
.add-to-cart-btn {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  background: linear-gradient(135deg, #1f2937 0%, #000000 100%);
  /* Sleek Black */
  color: white;
  padding: 12px;
  text-align: center;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
}

.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #374151 0%, #111827 100%);
}

.add-to-cart-btn i {
  margin-right: 8px;
}

/* Professional Search Bar */
.input-container {
  display: flex;
  align-items: center;
  position: relative;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 25px;
  padding: 0 5px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 300px;
  height: 42px;
  transition: all 0.3s ease;
}

.input-container:focus-within {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05), 0 0 0 2px #dbeafe;
  border-color: #93c5fd;
  background: white;
}

.input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 16px;
  font-size: 14px;
  outline: none;
  color: #1e293b;
  letter-spacing: 0.5px;
  font-family: inherit;
  font-weight: 400;
  width: 100%;
  height: 100%;
}

.input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.search-btn {
  background: #1e293b;
  color: white;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.search-btn:hover {
  background: #334155;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.search-btn i {
  font-size: 13px;
  font-weight: 500;
}

/* --- Responsive Overhaul (Mobile-First) --- */

/* Base Styles (Mobile < 320px) */
:root {
  --container-padding: 1rem;
}

body {
  font-size: 14px;
  /* Slightly smaller for mobile */
}

/* Category Grid (Mobile) */
.category-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 columns on small mobile */
  gap: 1.5rem;
  padding: 1rem;
}

/* Product Grid (Mobile) */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* 1 column on smallest mobile if width < 320px */
  gap: 1.5rem;
  padding: 1rem 2rem;
  /* Added horizontal padding */
  justify-items: center;
  max-width: 1300px;
  /* Cap width on large screens */
  margin: 0 auto;
  /* Center the grid */
}

.product-card {
  width: 100%;
  max-width: 350px;
  height: auto;
  /* Allow height to adjust */
  margin: 0;
}

/* --- Media Queries --- */

/* Small Mobile (320px and up) */
@media (min-width: 320px) {
  .category-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }

  .category-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
  }
}

/* Laptop (1024px and up) */
@media (min-width: 1024px) {
  .category-container {
    grid-template-columns: repeat(8, 1fr);
    /* All categories in one row */
  }

  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Ultra-wide Desktop (1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

/* Image Fluidity */
img {
  max-width: 100%;
  height: auto;
}

/* Typography Scaling */
h1,
h2,
h3 {
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
}

.nav-link {
  font-size: 1rem;
}



/* Glassmorphism Header */
.glass-header {
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}