/* ================= GLOBAL ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

html,
body {
  background: hsl(0, 0%, 100%);
  color: #000000;
  overflow-x: hidden;
  line-height: 1.6;
}


/* ================= SCROLL BAR ================= */

.scroll-bar {
  background: #000;
  color: #fff;
  overflow: hidden;
  padding: 10px 0;
}

.scroll-track {
  display: flex;
  width: max-content;
  animation: marquee 15s linear infinite;
}

.scroll-content span {
  position: relative;
  padding-right: 40px;
  /* controls spacing between sentences */
}

.scroll-content span::after {
  content: "•";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  /* controls bullet size */
  opacity: 0.6;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ================= PRODUCTS ================= */

.products {
  padding: 110px 60px;
  /* background: #ffffff; */
  text-align: center;
}

.drop-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 70px;
  letter-spacing: 2px;
}

.product-grid {
  display: flex;
  gap: 35px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 28px;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.12);
}

.product-card img {
  width: 100%;
  height: 420px;
  /* remove fixed height */
  max-height: 480px;
  object-fit: contain;
  background: transparent;
  /* 🔥 remove cream */
  border-radius: 16px;
  display: block;
}

.product-card .card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card h3 {
  margin-top: 18px;
  min-height: 60px;
}

.product-card p {
  color: #090909;
  font-weight: 600;
  margin: 12px 0;
}


.product-btn {
  margin: 15px auto 20px;
  padding: 14px 32px;
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.35s ease;
  display: block;
  position: relative;
  overflow: hidden;
}

/* Invert on hover */
.product-btn:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Shine sweep animation */
.product-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.5),
      transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.product-btn:hover::after {
  left: 140%;
}

.product-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.4),
      rgba(255, 255, 255, 0.1));
  transform: rotate(25deg);
  transition: 0.8s;
}

.product-card:hover::after {
  left: 130%;
}

/* ==== PRODUCT SLIDER ==== */

.product-slider {
  position: relative;
  overflow: visible;
  width: 100%;
  margin-top: 40px;
}

/* ----- FORCE 3 VISIBLE CARDS ----- */

.product-track {
  display: flex;
  gap: 70px;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 3 visible cards always */
.product-card {
  flex: 0 0 calc((100% - 140px) / 3);
  max-width: calc((100% - 140px) / 3);
}

/* Arrow buttons */

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  border: 1px solid #000;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 5;
  transition: all 0.3s ease;
}

.slide-btn.left {
  left: 0;
}

.slide-btn.right {
  right: 0;
}

.slide-btn:hover {
  background: #fff;
  color: #000;
}

/* ================= COLLECTIONS ================= */

.collections {
  padding: 110px 60px;
  /* background: #f7f7f7; */
  text-align: center;
}

.collections-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 70px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.collection-card {
  position: relative;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.collection-card:hover img {
  transform: scale(1.08);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.1));
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  padding: 30px;
  color: #fff;
}

.badge {
  margin-top: 10px;
  padding: 6px 14px;
  background: #e10600;
  border-radius: 20px;
  font-size: 12px;
}

/* ================= NEWSLETTER ================= */

.newsletter {
  /* background: #f7f7f7; */
  padding: 100px 20px;
  text-align: center;
}

.newsletter input {
  padding: 14px 20px;
  width: 300px;
  border-radius: 40px;
  border: 1px solid #ddd;
}

.newsletter-heading {
  font-weight: 700;
  color: #ffffff;
}

.newsletter button {
  padding: 14px 30px;
  border-radius: 40px;
  border: 3px solid #000;
  /* important for invert effect */
  background: #000;
  color: #fff;
  margin-left: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.newsletter button:hover {
  background: #fff;
  color: #000;
}

/* ================= FOOTER ================= */



.footer {
  background: #000;
  padding: 60px 60px;
  border-top: 1px solid #111;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 60px;
  max-width: 1400px;
  margin: auto;
}

/* HEADINGS */
.footer h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* TEXT */
.footer p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-tag {
  color: #fff;
  font-weight: 600;
  margin-top: 12px;
}

.footer-copy {
  margin-top: 18px;
  font-size: 13px;
}

/* LINKS */
.footer-links a,
.social-link {
  display: block;
  text-decoration: none;
  color: #aaa;
  margin-top: 25px;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-links a:hover,
.social-link:hover {
  color: #fff;
}

/* NEWSLETTER */
.footer-newsletter .newsletter-text {
  font-size: 18px !important;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  white-space: nowrap;
  /* Forces single line */
}

.newsletter-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.newsletter-row input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 40px;
  border: 1px solid #333;
  background: #111;
  color: #fff;
  font-size: 14px;
}

.newsletter-row input::placeholder {
  color: #777;
}

.footer-btn {
  padding: 12px 26px;
  border-radius: 40px;
  border: 1px solid #fff;
  background: #fff;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;

}

.footer-btn:hover {
  background: #000;
  color: #fff;
  border-width: 2px;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    row-gap: 50px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .newsletter-row {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-btn {
    width: 100%;
  }
}

.footer-newsletter p {
  color: #aaa;
  margin-bottom: 20px;
}

/* ===== PREMIUM FOOTER NEWSLETTER ===== */
.footer-newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* ensures alignment from left */
  gap: 16px;
}

.newsletter-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.newsletter-content p {
  color: #aaa;
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 400px;
  line-height: 1.6;
}

.newsletter-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* FORM */

.footer-form {
  max-width: 520px;
}

.newsletter-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* INPUT */

.newsletter-row input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 40px;
  border: 1px solid #ddd;
  background: #ffffff;
  color: #000000;
  font-size: 14px;
}

.newsletter-row input::placeholder {
  color: #777;
}

/* BUTTON */

.signup-btn {
  white-space: nowrap;
  padding: 20px 42px;
  border-radius: 60px;
  border: 1px solid #ffffff;
  background: #fff;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.signup-btn:hover {
  background: #000;
  color: #fff;
  box-shadow: 0 0 0 2px #fff;
  /* creates thicker border illusion */
}

/* SIGNUP BUTTON */

.signup-btn {
  padding: 18px 36px;
  border-radius: 50px;
  border: 1px solid #fff;
  background: #fff;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 18px 42px;
  white-space: nowrap;
}

/* SAME INVERSION ANIMATION */

.signup-btn:hover {
  background: #000;
  color: #fff;
}

/* Inversion Animation */

.footer-btn:hover {
  background: #000;
  color: #fff;
}

/* Responsive */

@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* ================= FAQ ================= */

.faq-section {
  padding: 110px 20px;
  background: #ffffff;
}

.faq-item {
  margin-bottom: 35px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.faq-item h3 {
  color: #111;
}

.faq-item p {
  color: #555;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

  .navbar {
    padding: 15px 20px;
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .made-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    width: 100%;
    max-width: 340px;
  }

  .footer-container {
    flex-direction: column;
  }


}

body {
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ===== ELITE WHITE STRIP ===== */

.cinematic-strip {
  background: #ffffff;
  padding: 120px 20px 130px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* subtle depth background glow */
.cinematic-strip::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.05), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cinematic-inner {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.cinematic-badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  padding: 8px 18px;
  border: 1px solid #000;
  border-radius: 50px;
  margin-bottom: 30px;
  font-weight: 600;
}

.cinematic-inner h2 {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.cinematic-inner h2 span {
  position: relative;
}

/* subtle underline emphasis */
.cinematic-inner h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background: #000;
}

.cinematic-inner p {
  font-size: 18px;
  color: #555;
  margin-bottom: 45px;
  letter-spacing: 1px;
}

.cinematic-btn {
  display: inline-block;
  padding: 18px 55px;
  border-radius: 50px;
  border: 1.5px solid #000;
  background: #000;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
}

.cinematic-btn:hover {
  background: #fff;
  color: #000;
  border-width: 2.5px;
  transform: translateY(-5px);
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.footer h3,
.footer h4 {
  color: #fff;
}

/* ===== FOUNDERS SECTION ===== */

.founders-section {
  background: #ffffff;
  padding: 100px 5%;
  text-align: center;
}

.founders-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.founders-subtext {
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.founder-card {
  padding: 30px;
  border-radius: 18px;
  background: #f8f8f8;
  transition: all 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.founder-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.founder-role {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin-bottom: 15px;
}

.founder-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .founders-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================
   GLOBAL RESPONSIVE FOUNDATION
===================================== */

html,
body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Tablets */
@media (max-width: 1024px) {

  .founders-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* Mobile */
@media (max-width: 768px) {

  /* Reduce global padding */
  section {
    padding: 60px 5% !important;
  }

  /* Slider cards adjust */
  .product-card {
    width: 80%;
    min-width: 260px;
  }

  /* Founder section */
  .founders-grid {
    grid-template-columns: 1fr;
  }

  /* Footer stacks */
  .footer-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  /* Newsletter row stacks properly */
  .newsletter-row {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-row button {
    width: 100%;
  }

}

@media (max-width: 768px) {

  h1 {
    font-size: 28px !important;
  }

  h2 {
    font-size: 22px !important;
  }

  p {
    font-size: 14px !important;
  }

}

/* =========================
   NAVBAR BASE
========================= */

.navbar {
  background: #000;
  color: #fff;
  padding: 18px 5%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-icons svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  cursor: pointer;
}

/* =========================
   HAMBURGER
========================= */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
}

/* =========================
   NAVBAR BASE
========================= */

.navbar {
  background: #000;
  color: #fff;
  padding: 18px 5%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-icons svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  cursor: pointer;
}

/*HAMBURGER*/

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
}

/* =========================
   FEATURES FINAL CLEAN FIX
========================= */

.features-section {
  background: #f4f4f4;
  padding: 140px 5%;
  text-align: center;
}

.features-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.features-sub {
  color: #000000;
  margin-bottom: 60px;
}

.flag-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}

.flag-wrap img {
  width: 260px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* GRID */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 320px);
  justify-content: center;
  gap: 50px;
}

.feature-card {
  background: #ffffff;
  padding: 50px 35px;
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.feature-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto 25px;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 300px);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   FOUNDER SPOTLIGHT SECTION
========================= */

.founder-spotlight {
  background: #ffffff;
  padding: 140px 5%;
  text-align: center;
}

.founder-inner {
  max-width: 900px;
  margin: auto;
}

.founder-role-main {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.founder-tagline {
  font-size: 18px;
  color: #555;
  margin-bottom: 60px;
  line-height: 1.6;
}

.founder-names {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.founder-name {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 8px;
  position: relative;
}

.founder-name::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
  bottom: 0;
  left: 0;
}

/* Responsive */

@media (max-width: 768px) {
  .founder-role-main {
    font-size: 32px;
  }

  .founder-tagline {
    font-size: 16px;
  }

  .founder-names {
    flex-direction: column;
    gap: 25px;
  }
}

/* =========================
   PRODUCT SLIDER RESPONSIVE FIX
========================= */

/* Desktop stays untouched */

/* Tablet */
@media (max-width: 1024px) {
  .product-card {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .product-track {
    gap: 20px;
  }

  .product-card {
    flex: 0 0 85%;
    max-width: 85%;
  }

  .slide-btn {
    display: none;
    /* Hide arrows on mobile */
  }

  .product-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .product-track {
    scroll-snap-type: x mandatory;
  }

  .product-card {
    scroll-snap-align: center;
  }

}

/* =========================
   FINAL CLEAN NAVBAR CSS
========================= */

.navbar {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5%;
}

/* LOGO */
.logo img {
  height: 42px;
  display: block;
}

/* DESKTOP LINKS */

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.7;
}

/* DESKTOP ICONS */

.desktop-icons {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-icon {
  width: 22px;
  height: 22px;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.nav-icon:hover {
  opacity: 0.7;
}

/* CART BADGE */

.cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #fff;
  color: #000;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: 600;
}

/* HAMBURGER */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s ease;
}

/* MOBILE MENU */

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #000;
  padding: 20px 5%;
  border-top: 1px solid #111;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid #111;
  font-weight: 500;
}

.mobile-menu.active {
  display: flex;
}

/* RESPONSIVE */

@media (max-width: 768px) {

  .nav-links {
    display: none;
  }

  .desktop-icons {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo img {
    height: 34px;
  }
}

/* USER MENU */
.user-menu {
  position: relative;
  display: flex;
  align-items: center;
}

/* SVG hover */
.user-menu svg {
  transition: 0.2s ease;
}

.user-menu svg:hover {
  transform: scale(1.1);
}

/* DROPDOWN */
.user-dropdown {
  position: absolute;
  top: 50px;
  right: 0;

  min-width: 170px;
  background: #1a1a1a;
  border: 1px solid #2c2c2c;
  border-radius: 12px;
  padding: 8px 0;

  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;

  transition: all 0.25s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Show animation */
.user-dropdown.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Dropdown items */
.user-dropdown a {
  display: block;
  padding: 12px 18px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease;
}

.user-dropdown a:hover {
  background: #2a2a2a;
}

html {
  scroll-behavior: smooth;
}

/* CATEGORY SECTION */

/* .category-section {
  padding: 40px 8%;
} */

.category-title {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

/* PRODUCT GRID */

/* .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
} */

/* ===============================
   PRODUCT GRID IMPROVED
=============================== */

/* ===============================
   FIXED PROFESSIONAL GRID
=============================== */

.category-section {
  padding: 60px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  justify-content: center;
}
/* PRODUCT CARD */

/* ===============================
   PRODUCT CARD MODERN
=============================== */

.product-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  max-width: 380px;
  margin: 0 auto;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* BUTTONS */

.card-buttons {
  display: flex;
  gap: 12px;
  margin-top: auto;
  border-radius: 25px;
}

.card-buttons button {
  flex: 1;
  padding: 12px 0;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.add-to-cart {
  background: #000;
  color: #fff;
}

.add-to-cart:hover {
  background: #222;
}

.buy-now {
  background: #f2f2f2;
}

.buy-now:hover {
  background: #e5e5e5;
}

.empty-state {
  text-align: center;
  font-size: 18px;
  padding: 50px 0;
}

/* ===============================
   BREADCRUMB
=============================== */

.breadcrumb {
  padding: 20px 8%;
  font-size: 14px;
  color: #777;
}

.breadcrumb a {
  text-decoration: none;
  color: #777;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #000;
}

.breadcrumb span {
  color: #000;
  font-weight: 500;
}

.breadcrumb::selection {
  background: transparent;
}

/* ===============================
   MODERN BREADCRUMB
=============================== */

.breadcrumb-wrapper {
  padding: 30px 8% 10px 8%;
  background: #f8f8f8;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  background: white;
  padding: 10px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.breadcrumb a {
  text-decoration: none;
  color: #888;
  position: relative;
  transition: color 0.3s ease;
}

.breadcrumb a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: #000;
  transition: width 0.3s ease;
}

.breadcrumb a:hover {
  color: #000;
}

.breadcrumb a:hover::after {
  width: 100%;
}

.breadcrumb span {
  color: #bbb;
}

.breadcrumb .active {
  color: #000;
  font-weight: 600;
}

/* ===============================
   RESPONSIVE GRID
=============================== */

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Mini Features Version */
.features-mini {
  padding-top: 60px;
}

.features-mini .features-title,
.features-mini .features-sub,
.features-mini .flag-wrap {
  display: none;
}