/* 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; 
    
} 

.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; 
    
} 

.nav-right {
    display: flex; 
    ap: 30px; 
    align-items: center; 
    font-size: 14px; 
    
} 

.nav-right a { 
    text-decoration: none; 
    color: black; 
    
} /* Search bar in nav */ 

.nav-search { 
    display: flex; 
    align-items: center;
    background: #fff; 
    border: 1px solid #ccc;
    overflow: hidden;
    padding: 2px 8px; 
    margin-right: 15px; 
    
} 

.nav-search input {
    border: none; 
    outline: none; 
    padding: 6px 10px; 
    font-size: 13px; 
    flex: 1; 
    
} 

.nav-search button {
    border: none; 
    color: white; 
    padding: 6px 12px; 
    font-size: 14px; 
    border-radius: 20px; 
    cursor: pointer; 
    transition: 0.3s; 
    
} 
.nav-search button:hover { 
    background: #b62a36; }

/* Hero */
.hero {
  height: 40vh;
  background: url("../img/bg_black.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 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}

.filter-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.filter-left .label {
  font-weight: bold;
  letter-spacing: 1px;
}

.search-bar {
  width: 350px;              /* 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: 220px;
  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;
}


.price-filter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-input {
  width: 100px;
  padding: 10px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  outline: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.price-input:focus {
  border-color: black;
  box-shadow: 0 0 5px rgba(216, 51, 68, 0.4);
}

.price-separator {
  font-weight: bold;
  color: #555;
}

.label{
    color:black;
}

/* Products Section */
/* Products Section */
/* 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: 150%;
  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(6, 1fr);
    gap: 20px;
    width: 100%;        /* full width instead of max-width */
    margin: 0;          /* remove outer margins */
    padding: 20px;      /* you can set 0 if you want content flush to edges */
}


.product-card {
    background: url("../img/skirt.jpg") no-repeat center center/cover;

  overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 80%;
    height: 350px; /* adjust height */
    display: flex;
    flex-direction: column;
     border: 1px solid #d3d3d3;  
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.product-card__image {
    height: 200px;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.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;
}

@media (max-width: 1024px) {
    .cont {
        grid-template-columns: repeat(3, 1fr); /* 3 per row on tablet */
    }
}

@media (max-width: 600px) {
    .cont {
        grid-template-columns: repeat(1, 1fr); /* 1 per row on mobile */
    }
}


/*service modal*?
/* Modal Background */
.modal {
    display: none; /* Hidden by default */
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%;
    height: 100%; 
    background: rgba(0,0,0,0.6); /* Dark overlay */ 
    justify-content: center; /* Center horizontally */ 
    align-items: center; /* Center vertically */ 
    z-index: 9999; 
    
} 

/* Modal Content */ 
.modal-content {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 450px; /* increased to allow text + image */
  max-width: 90%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  position: relative;
}

.modal-body {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.modal-top {
  width: 100%;
  margin-bottom: 15px;
}

.modal-top img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}
/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #666;
}
.close-btn:hover {
  color: #000;
}

/* Titles */
.modal-content h2 {
  margin-top: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color:black;
}
.modal-content p {
  color: #555;
  line-height: 1.5;
}

/* Option Buttons */
.options {
  margin: 20px 0;
}
.options h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}
.option-btn {
  background: #111;
  color: #fff;
  padding: 10px 16px;
  margin: 5px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.option-btn:hover {
  background: #444;
}
.option-btn.active {
  background: #000;
  border: 2px solid #555;
}

/* Option Details */
.option-details {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
}
.option-details h4 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: #111;
}
.option-details p {
  margin: 5px 0;
  font-size: 0.95rem;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.book-btn {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background: black;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.book-btn:hover {
  background: gray;
}
