* {
    margin: 0;
    padding: 0;
    outline: 0;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

img {
    vertical-align: middle;
}

ol,
ul {
    list-style-type: none;
}

body {
  font-family: 'Barlow', sans-serif;
  
}

.custom-link span {
    font-family: 'Barlow', sans-serif;/* or your chosen font */
    font-weight: 500;
    font-size: 1.2rem;
    text-transform: capitalize; /* Capitalizes each word’s first letter */
    color: black;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.custom-link:hover span {
    color: #fc8934; /* Optional hover color */
}





/* Custom Nav Styling */
#customNav .nav-icon {
  color: #FC8934; /* Icon color */
}

#customNav .custom-link {
  position: relative;
  font-weight: 600;
  color: #212529 !important;
  margin: 0 10px;
  padding: 5px 0;
  text-transform: uppercase;
}

/* Hover underline effect */
#customNav .custom-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #000; /* Black underline */
  transition: width 0.3s ease-in-out;
}

#customNav .custom-link:hover::after {
  width: 100%;
}

/* all products */


#allProducts .product-card {
  border: 2px solid #ccc;
  border-radius: 5px;
  transition: transform 0.3s;
}

#allProducts .product-card:hover {
  transform: translateY(-5px);
}

#allProducts .product-card img {
  max-height: 200px;
  object-fit: contain;
}

#allProducts .product-title {
  font-size: 1rem;
  font-weight: 600;
}

#allProducts .quick-add-btn {
  background-color: #FC8934;
  color: #fff;
  border: none;
  padding: 6px 12px;
  font-weight: 600;
}

#allProducts .quick-add-btn:hover {
  background-color: #e07a2e;
}

/* Custom class to make 5 columns per row on large screens */
@media (min-width: 992px) {
  #allProducts .custom-col {
    flex: 0 0 20%;
    max-width: 20%;
  }
}



/* Product Image Border */
.product-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 2px solid #ccc;
}

/* Footer Background */
.cart-footer {
  background-color: #f1f1f1; /* light gray */
  padding: 15px;
  border-radius: 5px 5px 0 0;
}









.collection-row {
  gap: 15px; /* space between each column */
}

.collection-row .collection-item {
  flex: 0 0 calc(12.5% - 15px); /* 8 items per row with gap */
  max-width: calc(12.5% - 15px);
  margin-bottom: 20px;
  text-decoration: none; /* remove underline */
  color: inherit; /* keep text color */
  transition: transform 0.3s;
}

.collection-item:hover {
  transform: translateY(-5px);
}

.collection-img {
  border: 1px solid #ccc;
  width: 100%;
  object-fit: cover;
  margin: 0 auto;
  transition: transform 0.3s;
}

.collection-item:hover .collection-img {
  transform: scale(1.05);
}

.collection-text {
  font-size: 1.1rem; /* bigger text */
  font-weight: 600;
}

@media (max-width: 1200px) {
  .collection-row .collection-item {
    flex: 0 0 calc(25% - 15px); /* 4 per row */
    max-width: calc(25% - 15px);
  }
}

@media (max-width: 992px) {
  .collection-row .collection-item {
    flex: 0 0 calc(33.33% - 15px); /* 3 per row */
    max-width: calc(33.33% - 15px);
  }
}

@media (max-width: 768px) {
  .collection-row .collection-item {
    flex: 0 0 calc(50% - 15px); /* 2 per row */
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 576px) {
  .collection-row .collection-item {
    flex: 0 0 100%; /* 1 per row */
    max-width: 100%;
  }
}





footer a:hover {
  text-decoration: underline;
}
footer ul li {
  margin-bottom: 10px;
}





















/* --- Sidebar filter --- */
.filter-box {
  border: 1px solid #ddd;
  border-radius: 8px;
  background: transparent; /* no color bg */
}

.filter-box h5,
.filter-box h6 {
  color: #222;
}

.filter-list li {
  margin-bottom: 6px;
}

.filter-list li a {
  color: #444;
  text-decoration: none;
  padding-bottom: 2px;
  transition: all 0.2s;
  display: inline-block;
  border-bottom: 2px solid transparent;
}

.filter-list li a:hover {
  color: #FC8934;
  border-bottom: 2px solid #FC8934; /* underline on hover */
}

/* Range Slider Style */
.filter-box .form-range {
  accent-color: #FC8934;
}

.filter-box .form-check-label {
  font-size: 0.9rem;
  color: #444;
}

















/* --- Product Details Page --- */
#productDetails h2 {
  font-size: 1.8rem;
  color: #222;
}

#productDetails .btn {
  border-radius: 30px;
  font-weight: 600;
}

#productDetails .btn-dark {
  background: #222;
  border: none;
}

#productDetails .btn-warning {
  background: #FC8934;
  border: none;
  color: #fff;
}

#productDetails .btn-success {
  background: #28a745;
  border: none;
}

/* Image Preview */
.main-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.preview-images {
  display: flex;
}

.preview-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  object-fit: cover;
  transition: all 0.3s;
}

.preview-img:hover,
.preview-img.active {
  border: 2px solid #FC8934;
}

/* Chat buttons */
.chat-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #444;
  font-weight: 600;
}
/* All action buttons same height */
.action-buttons .btn {
  height: 50px;
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
}

/* All action buttons same size */
.action-buttons .btn {
  height: 50px;          /* same vertical size */
  min-width: 220px;      /* same width */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
}

/* Branded colors */
.btn-cart {
  background-color: #343a40;
  color: #fff;
}
.btn-cart:hover { background-color: #23272b; }

.btn-cod {
  background-color: #ffc107;
  color: #000;
}
.btn-cod:hover { background-color: #e0a800; }

.btn-pay {
  background-color: #28a745;
  color: #fff;
}
.btn-pay:hover { background-color: #218838; }

.btn-messenger {
  background-color: #0084ff;
  color: #fff;
}
.btn-messenger:hover { background-color: #006fd6; }

.btn-whatsapp {
  background-color: #25d366;
  color: #fff;
}
.btn-whatsapp:hover { background-color: #1ebc57; }

/* Icon in buttons */
.action-buttons .icon {
  width: 20px;
  height: 20px;
}




/* Action Buttons */
.action-buttons .btn {
  min-height: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Branded Colors */
.btn-cart { background:#333; color:#fff; }
.btn-cod { background:#FC8934; color:#fff; }
.btn-pay { background:#198754; color:#fff; }
.btn-messenger { background:#0084FF; color:#fff; }
.btn-whatsapp { background:#25D366; color:#fff; }

/* Icons inside buttons */
.action-buttons .icon {
  width: 20px;
  height: 20px;
}

/* Accordion Styling */
#descriptionAccordion .accordion-button {
  background-color: #f9f9f9;
  color: #333;
  font-weight: 600;
  border: none;
  border-radius: 0;
}

#descriptionAccordion .accordion-button:not(.collapsed) {
  background-color: #ffe6cc; /* branded highlight */
}

#descriptionAccordion .accordion-body {
  padding: 1rem 1.25rem;
  line-height: 1.6;
  color: #555;
}



#features {
  background-color: #f5f5f5; /* gray background */
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  text-align: center;
  gap: 30px;
  padding: 40px 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.feature-icon {
  width: 60px;
  height: 60px;
}

.feature-item h5 {
  font-size: 1.1rem;
}

.feature-item p {
  font-size: 0.95rem;
}





















#relatedProducts h3 {
  font-size: 1.8rem;
}

.custom-col {
  display: flex;
  justify-content: center;
}

.product-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: transform 0.3s;
  width: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
}

.quick-add-btn {
  background-color: #FC8934;
  color: #fff;
  border: none;
  width: 100%;
  padding: 8px 0;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.quick-add-btn:hover {
  background-color: #e8772d;
}




/* Announcement Bar */
.announcement-bar {
  background-color: #FC8934;
  color: #fff;
  font-weight: 700;

}
.announcement-bar .announcement-text {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
}

/* On small screens, reduce font and stack numbers */
@media (max-width: 576px) {
  .announcement-bar .announcement-text {
    font-size: 0.9rem;
  }
  .announcement-bar .announcement-text span {
    display: block; /* force each number on new line */
    margin-top: 5px;
  }
}













/* Bottom Nav */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  z-index: 9999;
}

.mobile-bottom-nav .nav-item {
  background: none;
  border: none;
  outline: none;
  flex: 1;
  text-align: center;
  cursor: pointer;
}

.mobile-bottom-nav .nav-item i {
  font-size: 22px;
  color: #333;
  transition: color 0.3s;
}

.mobile-bottom-nav .nav-item:hover i {
  color: #000;
}

/* Hide on Desktop */
@media (min-width: 768px) {
  .mobile-bottom-nav { display: none; }
}

@media (max-width: 991.98px) {
    body {
        padding-bottom: 60px; /* space for mobile bottom nav */
    }
}



/* custom css */

.sku {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #555;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 3px 10px;
  letter-spacing: 0.5px;
}


#customNav .navbar-nav {
    flex: 1;
    justify-content: center;
    flex-wrap: nowrap !important;
    white-space: nowrap; 
}
