/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
}

/* Top Bar */
.top-bar {
  background: #111;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid #222;
}

.marquee {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 15s linear infinite;
}

.marquee p {
  color: white;
  font-size: 12px;
  line-height: 30px;
  display: inline-block;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* Header */
header { 
  display: flex; 
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px; 
  background: white;
  position: sticky; 
  top: 0; 
  z-index: 1000; 
  border-bottom: 1px solid #ddd; 
}

.logo { 
  font-weight: bold; 
  font-size: 30px; 
  color: black;
}

.nav-links { 
  display: flex; 
  gap: 50px; 
  list-style: none; 
}

.nav-links li a { 
  text-decoration: none; 
  color: black; 
  font-size: 14px;
}

.nav-links li a:hover { 
  color: grey; 
}

/* RIGHT SIDE (Search + Login) */
.nav-right {
  display: flex; 
  align-items: center; 
  gap: 25px; /* ✅ properly adds spacing between search and login */
  font-size: 14px; 
  margin-left: -20px; /* ✅ moves the entire search/login area slightly left */
}

.nav-right a { 
  text-decoration: none; 
  color: black; 
}

.nav-right a:hover {
  color: grey;
}

/* Search bar */
.nav-search {
  display: flex;
  align-items: center;
  background: white;
  padding: 4px 10px;
  position: relative;
   border: 1px solid #ddd;  /* ✅ Add light gray border */
}

.nav-search input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  padding: 10px 8px 6px 8px; /* top-bottom adjusted ↓ */
  border-radius: 30px;
  position: relative;
}

.nav-search button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 6px 4px 6px; /* Adjust icon padding ↓ */
  position: relative;
}


.search-icon {
  width: 18px;
  height: 18px;
  filter: invert(30%);
  transition: 0.2s;
}

.search-icon:hover {
  filter: invert(0%);
}

.nav-search input:focus {
  outline: none;       /* remove default blue/pink glow */
  box-shadow: none;    /* remove Chrome highlight ring */
  border: none;        /* keep consistent look */
}

/* HAMBURGER ICON */
.hamburger {
  display: none;
  font-size: 10px;
  font-weight: bold;
  background: Black;
  padding: 8px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  z-index: 2000;
  align-items: center;
  gap: 6px;
}

.hamburger i {
  margin-right: 8px;
}

/* Responsive Navigation */
@media screen and (max-width: 768px) {
  header {
    flex-wrap: wrap;
    padding: 10px 20px;
  }

  .logo {
      font-size: 15px;
    flex: 1 0 100%;
    text-align: center;
    margin-top:5px;
  }

  .hamburger {
    display: flex;
  }

  nav {
    flex: 1 0 100%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 999;
    border-top: 1px solid #ddd;
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    padding: 10px 0;
  }

  .nav-right {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    gap: 12px;
  }

  .nav-search {
    width: 90%;
    max-width: 400px;
    justify-content: center;
    margin-top: 10px;
    margin-left: 50px;
  }

  .nav-search input {
    width: 100%;
    font-size: 14px;
  }

  .nav-item {
    list-style: none;
    text-align: center;
  }

  .nav-item a {
    font-size: 16px;
  }
}

/* Hero */
.hero {
  height: 40vh;
  background: url("../img/bg_header.webp") no-repeat center center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.overlay {
  position: relative;
  text-align: center;
  color: white;
  z-index: 1;
}

.overlay h1 {
  font-size: 80px;
  margin-bottom: 20px;
}

/* Filter Bar */
/* Filter Bar */
/* Filter Bar */
.filter-bar {
  display: flex;
  justify-content: center;   /* Center all content horizontally */
  align-items: center;
  padding: 15px 40px;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  width: 100%;                /* Optional: make it narrower (adjust as needed) */
  margin: 0 auto;            /* Center the bar itself */
  gap: 40px;                 /* Add space between left and right sections */
}

.filter-left, 
.filter-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.filter-left .label {
  font-weight: bold;
  letter-spacing: 1px;
}

.search-bar {
  width: 300px;              /* wider than before */
  padding: 10px 15px;        /* more comfortable padding */
  border: 1px solid #ccc;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.search-bar:focus {
  border-color: black;     /* highlight in your primary color */
  box-shadow: 0 0 5px rgba(216, 51, 68, 0.4);
}


.categories {
  width: 220px;                  /* wider for better readability */
  padding: 10px 15px;
  font-size: 14px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  appearance: none;              /* remove default browser arrow */
  outline: none;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23999' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.categories:hover {
  border-color: #aaa;
}

.categories:focus {
  border-color: black;         /* your theme color */
  box-shadow: 0 0 5px rgba(216, 51, 68, 0.3);
}

/* Right Side */
.filter-right {
  display: flex;
  align-items: center;
  gap: 30px; /* a bit tighter than 50px for balance */
}

.filter-right select {
  width: 180px;
  padding: 10px 15px;
  font-size: 14px;
  border: 1px solid #ccc;    /* smooth pill style */
  background: #fff;
  cursor: pointer;
  outline: none;
  appearance: none;               /* remove default arrow */
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23999' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.filter-right select:hover {
  border-color: #aaa;
}

.filter-right select:focus {
  border-color: black;          /* your theme color */
  box-shadow: 0 0 5px gray;
}

.filter-right .product-count {
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 12px;
  color: #333;
}
.label{
    color:black;
}

/* Products Section */
.products {
  display: flex;
  justify-content: center;
  gap: 70px;
  padding: 60px 50px;
  flex-wrap: wrap; /* ✅ allows wrapping for multiple rows */
}

.product {
  flex: 0 0 220px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product:hover img {
  transform: scale(1.05);
}

.product h3 {
  font-size: 14px;
  margin: 15px 0 5px;
}

.product p {
  font-size: 14px;
  color: #444;
}

/* Banner */
.banner1 {
  width: 100%;
  margin-top: 40px;
}

.banner1 img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Review Logos Section */
.review-logos {
  background: #fff;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 40px 20px;
  flex-wrap: wrap;
  text-align: center;
}

.review-logos .logo-item {
  flex: 1 1 200px;
  margin: 15px;
}

.review-logos h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
  colro:black;
}

.review-logos p {
  font-size: 14px;
  color: #000;
  max-width: 250px;
  margin: 0 auto;
}

.review-logos {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
  padding: 40px 0;
}

.logo-item {
  max-width: 200px;
  margin: 20px;
}

.logo-item h3{
 color:black;   
}
.logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* Footer Dark Grey Card */
.footer-card {
  background: #111;
  color: #fff;
  padding: 40px 20px;
  margin-top: 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 12px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 6px 0;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-column ul li a:hover {
  color: #fff;
}

/* Social Icons */
.footer-column.social {
  display: flex;
  gap: 15px;
  font-size: 18px;
}

.footer-column.social a {
  color: #fff;
}

.footer-column.social a:hover {
  color: #aaa;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #888;
}


/* ✅ Responsive Design */
@media (max-width: 1024px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .nav-links {
    gap: 15px;
    flex-wrap: wrap;
  }

  .products {
    gap: 30px;
    padding: 50px 20px;
  }
}

@media (max-width: 768px) {
  .logo {
    font-size: 16px;
  }

  .nav-links {
    display: none; /* optional */
  }

  .nav-right {
    gap: 10px;
    font-size: 12px;
  }

  .hero {
    height: 60vh;
  }

  .overlay h1 {
    font-size: 28px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .products {
    gap: 20px;
    padding: 30px 10px;
  }

  .product {
    flex: 0 0 150px;
  }

  .product h3,
  .product p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 10px 15px;
  }

  .overlay h1 {
    font-size: 22px;
  }

  .btn {
    font-size: 12px;
    padding: 6px 12px;
  }

  .product {
    flex: 0 0 120px;
  }
}



:root {
    --primary-color: #D83344;
    --text-color: #ffffff; /* make text white for black cards */
    --background-color: #f5f5f7;
    --card-background: #f5f5f0; /* black card background */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;   /* remove padding so content touches screen edges */
}

.cont {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* exactly 5 cards per row */
  gap: 20px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  max-width: 1400px; /* adjust to control overall row width */
}

.product-card {
  background: url("../img/skirt.jpg") no-repeat center center/cover;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 350px; 
  display: flex;
  flex-direction: column;
  border: 1px solid #d3d3d3;
  max-width: 220px;   /* fixed card width */
  width: 100%;        /* let grid control width */
  margin: 0 auto;     /* center inside grid cell */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.product-card__image {
  width: 100%;
  height: 150px;       /* same logo box height for all */
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.product-card__image img {
  width: auto;
  height: 100px;       /* force same logo height */
  object-fit: contain;
}


.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__info {
    padding: 15px;
}

.product-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.product-card__description {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 15px;
}

.product-card__price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card__price {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.product-card__btn {
    background-color: white;
    color: black;
    border: none;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-card__btn:hover {
    background-color: #C71729;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1200px) {
  .cont {
    grid-template-columns: repeat(4, 1fr); /* 4 per row */
  }
}

@media (max-width: 1024px) {
  .cont {
    grid-template-columns: repeat(3, 1fr); /* ✅ 3 per row on tablets */
  }
}

@media (max-width: 768px) {
  .cont {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on small devices */
  }
}

@media (max-width: 480px) {
  .cont {
    grid-template-columns: repeat(1, 1fr); /* 1 per row on phones */
  }
}



@media (max-width: 768px) {
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 20px;
  }

  .filter-left,
  .filter-right {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 15px;
  }

  .filter-left {
    display: flex;
  }

  .filter-right {
    display: flex;
  }

  .search-bar,
  .categories,
  .filter-right select {
    width: 100%;
  }

  .filter-right .product-count {
    text-align: center;
  }

  .filter-left .label {
    font-size: 14px;
    text-align: center;
  }
}

