/* Main Styles for Qar Store */
:root {
  --primary-color: #3498db;
  --secondary-color: #2c3e50;
  --accent-color: #e74c3c;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.category-item {
  display: block;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
}

.category-item:hover {
  background-color: #f8f9fa;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-icon {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d6efd;
}

/* Header Styles */
.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  margin-bottom: 30px;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
}

/* Product Cards */
.product-card {
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 20px;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card .card-img-top {
  height: 200px;
  object-fit: contain;
  padding: 15px;
}

.product-card .card-title {
  font-weight: bold;
  overflow: hidden;
}

.product-card .price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--accent-color);
}

.product-card .original-price {
  text-decoration: line-through;
  color: #6c757d;
  font-size: 0.9rem;
}

/* Category Cards */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.category-card img {
  transition: transform 0.3s;
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-card .category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px;
}

/* Slider */
.carousel-item {
  height: 500px; /* 400px'den 500px'e değiştirildi */
}

.carousel-item img {
  height: 100%;
  object-fit: cover; /* Bu, görüntünün oranını koruyarak alanı doldurmasını sağlar */
}

/* Product Detail */
.product-detail-img {
  max-height: 400px;
  object-fit: contain;
  margin-bottom: 20px;
}

.product-thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.product-thumbnails img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  cursor: pointer;
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 4px;
}

.product-thumbnails img.active {
  border-color: var(--primary-color);
}

/* Cart */
.cart-item img {
  max-height: 100px;
  object-fit: contain;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-success {
  background-color: #25d366 !important;
  border-color: #25d366 !important;
}

.btn-primary:hover, .btn-success:hover {
    background-color: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
}
.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Footer */
/* Footer positioning */
/* Products page specific footer positioning */
body.products-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.products-page main {
    flex: 1 0 auto;
}

body.products-page footer {
    flex-shrink: 0;
}
footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Form Styles */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.carousel-caption {
  color: white; /* Text color */
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  padding: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-item {
    height: 300px !important;
  }
  
  .carousel-item img {
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    height: 200px !important;
  }
}





body, .breadcrumb, .breadcrumb a, .breadcrumb-item, .product-detail-desc, .product-detail-options, .product-detail-options label, .product-detail-options select, .product-detail-options option {
    color: #000 !important;
}
.product-detail-title, .product-detail-title h1 {
    font-size: 1.5rem;
    font-weight: bold;
}
.about-us img, .contact-us img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.about-us h1, .contact-us h1 {
    color: var(--primary-color);
}

.contact-us form {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-us h3 {
    color: var(--secondary-color);
}

/* Star Rating System */
.rating-stars {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 5px;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    cursor: pointer;
    color: #ddd;
    font-size: 24px;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label {
    color: #ffc107;
}

.review-item .fa-star {
    color: #ffc107;
}

.review-item .fa-star-o {
    color: #ddd;
}

/* Review Images */
.review-images .img-thumbnail {
    object-fit: cover;
    height: 100px;
    width: 100%;
}

.review-item .review-images .img-thumbnail {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.review-item .review-images .img-thumbnail:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Review image upload preview */
.review-image-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.review-image-preview .preview-item {
    position: relative;
    width: 100px;
    height: 100px;
}

.review-image-preview .preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.review-image-preview .preview-item .remove-image {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
}

/* Lightbox overlay for review images */
.review-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.review-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.review-lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.review-lightbox .close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.review-lightbox .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-lightbox .prev-button {
    left: 20px;
}

.review-lightbox .next-button {
    right: 20px;
}
.breadcrumb a, .breadcrumb-item.active {
    color: #888 !important;
    text-decoration: none !important;
}ca.related-products-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    overflow-x: auto;
    justify-content: center;
}
.related-product-card {
    flex: 0 0 19%;
    min-width: 200px;
    max-width: 220px;
}
.product-thumbnails img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  cursor: pointer;
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 4px;
}

.product-thumbnails img.active {
  border-color: var(--primary-color);
}
.btn-success:hover {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    filter: brightness(1.15);
    color: #fff !important;
}
.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Footer */
/* Footer positioning */
/* Products page specific footer positioning */
body.products-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.products-page main {
    flex: 1 0 auto;
}

body.products-page footer {
    flex-shrink: 0;
}
footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Form Styles */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.carousel-caption {
  color: white; /* Text color */
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  padding: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-item {
    height: 300px !important;
  }
  
  .carousel-item img {
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    height: 200px !important;
  }
}





body, .breadcrumb, .breadcrumb a, .breadcrumb-item, .product-detail-desc, .product-detail-options, .product-detail-options label, .product-detail-options select, .product-detail-options option {
    color: #000 !important;
}
.product-detail-title, .product-detail-title h1 {
    font-size: 1.5rem;
    font-weight: bold;
}
.about-us img, .contact-us img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.about-us h1, .contact-us h1 {
    color: var(--primary-color);
}

.contact-us form {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-us h3 {
    color: var(--secondary-color);
}

/* Star Rating System */
.rating-stars {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 5px;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    cursor: pointer;
    color: #ddd;
    font-size: 24px;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label {
    color: #ffc107;
}

.review-item .fa-star {
    color: #ffc107;
}

.review-item .fa-star-o {
    color: #ddd;
}

/* Review Images */
.review-images .img-thumbnail {
    object-fit: cover;
    height: 100px;
    width: 100%;
}

.review-item .review-images .img-thumbnail {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.review-item .review-images .img-thumbnail:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Review image upload preview */
.review-image-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.review-image-preview .preview-item {
    position: relative;
    width: 100px;
    height: 100px;
}

.review-image-preview .preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.review-image-preview .preview-item .remove-image {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
}

/* Lightbox overlay for review images */
.review-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.review-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.review-lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.review-lightbox .close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.review-lightbox .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-lightbox .prev-button {
    left: 20px;
}

.review-lightbox .next-button {
    right: 20px;
}
.breadcrumb a, .breadcrumb-item.active {
    color: #888 !important;
    text-decoration: none !important;
}ca.related-products-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    overflow-x: auto;
    justify-content: center;
}
.related-product-card {
    flex: 0 0 19%;
    min-width: 200px;
    max-width: 220px;
}
.product-thumbnails img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  cursor: pointer;
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 4px;
}

.product-thumbnails img.active {
  border-color: var(--primary-color);
}
.card-title a {
    color: #000 !important;
    text-decoration: none !important;
}

.card-title a:hover {
    color: #000 !important;
    text-decoration: none !important;
}
.btn-success:hover {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    filter: brightness(1.15);
    color: #fff !important;
}
.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Footer */
/* Footer positioning */
/* Products page specific footer positioning */
body.products-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.products-page main {
    flex: 1 0 auto;
}

body.products-page footer {
    flex-shrink: 0;
}
footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Form Styles */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.carousel-caption {
  color: white; /* Text color */
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  padding: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-item {
    height: 300px !important;
  }
  
  .carousel-item img {
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    height: 200px !important;
  }
}





body, .breadcrumb, .breadcrumb a, .breadcrumb-item, .product-detail-desc, .product-detail-options, .product-detail-options label, .product-detail-options select, .product-detail-options option {
    color: #000 !important;
}
.product-detail-title, .product-detail-title h1 {
    font-size: 1.5rem;
    font-weight: bold;
}
.about-us img, .contact-us img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.about-us h1, .contact-us h1 {
    color: var(--primary-color);
}

.contact-us form {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-us h3 {
    color: var(--secondary-color);
}

/* Star Rating System */
.rating-stars {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 5px;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    cursor: pointer;
    color: #ddd;
    font-size: 24px;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label {
    color: #ffc107;
}

.review-item .fa-star {
    color: #ffc107;
}

.review-item .fa-star-o {
    color: #ddd;
}

/* Review Images */
.review-images .img-thumbnail {
    object-fit: cover;
    height: 100px;
    width: 100%;
}

.review-item .review-images .img-thumbnail {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.review-item .review-images .img-thumbnail:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Review image upload preview */
.review-image-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.review-image-preview .preview-item {
    position: relative;
    width: 100px;
    height: 100px;
}

.review-image-preview .preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.review-image-preview .preview-item .remove-image {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
}

/* Lightbox overlay for review images */
.review-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.review-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.review-lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.review-lightbox .close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.review-lightbox .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-lightbox .prev-button {
    left: 20px;
}

.review-lightbox .next-button {
    right: 20px;
}
.breadcrumb a, .breadcrumb-item.active {
    color: #888 !important;
}ca.related-products-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    overflow-x: auto;
    justify-content: center;
}
.related-product-card {
    flex: 0 0 19%;
    min-width: 200px;
    max-width: 220px;
}
.product-thumbnails img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  cursor: pointer;
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 4px;
}

.product-thumbnails img.active {
  border-color: var(--primary-color);
}
.card-title a {
    color: #000 !important;
    text-decoration: none !important;
}

.card-title a:hover {
    color: #000 !important;
    text-decoration: none !important;
}
.btn-success:hover {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    filter: brightness(1.15);
    color: #fff !important;
}
.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Footer */
/* Footer positioning */
/* Products page specific footer positioning */
body.products-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.products-page main {
    flex: 1 0 auto;
}

body.products-page footer {
    flex-shrink: 0;
}
footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Form Styles */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.carousel-caption {
  color: white; /* Text color */
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  padding: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-item {
    height: 300px !important;
  }
  
  .carousel-item img {
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    height: 200px !important;
  }
}





body, .breadcrumb, .breadcrumb a, .breadcrumb-item, .product-detail-desc, .product-detail-options, .product-detail-options label, .product-detail-options select, .product-detail-options option {
    color: #000 !important;
}
.product-detail-title, .product-detail-title h1 {
    font-size: 1.5rem;
    font-weight: bold;
}
.about-us img, .contact-us img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.about-us h1, .contact-us h1 {
    color: var(--primary-color);
}

.contact-us form {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-us h3 {
    color: var(--secondary-color);
}

/* Star Rating System */
.rating-stars {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 5px;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    cursor: pointer;
    color: #ddd;
    font-size: 24px;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label {
    color: #ffc107;
}

.review-item .fa-star {
    color: #ffc107;
}

.review-item .fa-star-o {
    color: #ddd;
}

/* Review Images */
.review-images .img-thumbnail {
    object-fit: cover;
    height: 100px;
    width: 100%;
}

.review-item .review-images .img-thumbnail {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.review-item .review-images .img-thumbnail:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Review image upload preview */
.review-image-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.review-image-preview .preview-item {
    position: relative;
    width: 100px;
    height: 100px;
}

.review-image-preview .preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.review-image-preview .preview-item .remove-image {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
}

/* Lightbox overlay for review images */
.review-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.review-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.review-lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.review-lightbox .close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.review-lightbox .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-lightbox .prev-button {
    left: 20px;
}

.review-lightbox .next-button {
    right: 20px;
}
.breadcrumb a, .breadcrumb-item.active {
    color: #888 !important;
}ca.related-products-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    overflow-x: auto;
    justify-content: center;
}
.related-product-card {
    flex: 0 0 19%;
    min-width: 200px;
    max-width: 220px;
}
.product-thumbnails img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  cursor: pointer;
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 4px;
}

.product-thumbnails img.active {
  border-color: var(--primary-color);
}
.card-title a {
    color: #000 !important;
    text-decoration: none !important;
}

.card-title a:hover {
    color: #000 !important;
    text-decoration: none !important;
}
.btn-success:hover {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    filter: brightness(1.15);
    color: #fff !important;
}
.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Footer */
/* Footer positioning */
/* Products page specific footer positioning */
body.products-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.products-page main {
    flex: 1 0 auto;
}

body.products-page footer {
    flex-shrink: 0;
}
footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Form Styles */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.carousel-caption {
  color: white; /* Text color */
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  padding: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-item {
    height: 300px !important;
  }
  
  .carousel-item img {
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    height: 200px !important;
  }
}





body, .breadcrumb, .breadcrumb a, .breadcrumb-item, .product-detail-desc, .product-detail-options, .product-detail-options label, .product-detail-options select, .product-detail-options option {
    color: #000 !important;
}
.product-detail-title, .product-detail-title h1 {
    font-size: 1.5rem;
    font-weight: bold;
}
.about-us img, .contact-us img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.about-us h1, .contact-us h1 {
    color: var(--primary-color);
}

.contact-us form {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-us h3 {
    color: var(--secondary-color);
}

/* Star Rating System */
.rating-stars {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 5px;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    cursor: pointer;
    color: #ddd;
    font-size: 24px;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label {
    color: #ffc107;
}

.review-item .fa-star {
    color: #ffc107;
}

.review-item .fa-star-o {
    color: #ddd;
}

/* Review Images */
.review-images .img-thumbnail {
    object-fit: cover;
    height: 100px;
    width: 100%;
}

.review-item .review-images .img-thumbnail {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.review-item .review-images .img-thumbnail:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Review image upload preview */
.review-image-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.review-image-preview .preview-item {
    position: relative;
    width: 100px;
    height: 100px;
}

.review-image-preview .preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.review-image-preview .preview-item .remove-image {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
}

/* Lightbox overlay for review images */
.review-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.review-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.review-lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.review-lightbox .close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.review-lightbox .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-lightbox .prev-button {
    left: 20px;
}

.review-lightbox .next-button {
    right: 20px;
}
.breadcrumb a, .breadcrumb-item.active {
    color: #888 !important;
}ca.related-products-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    overflow-x: auto;
    justify-content: center;
}
.related-product-card {
    flex: 0 0 19%;
    min-width: 200px;
    max-width: 220px;
}
.product-thumbnails img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  cursor: pointer;
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 4px;
}

.product-thumbnails img.active {
  border-color: var(--primary-color);
}
.card-title a {
    color: #000 !important;
    text-decoration: none !important;
}

.card-title a:hover {
    color: #000 !important;
    text-decoration: none !important;
}
.btn-success:hover {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    filter: brightness(1.15);
    color: #fff !important;
}
.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Footer */
/* Footer positioning */
/* Products page specific footer positioning */
body.products-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.products-page main {
    flex: 1 0 auto;
}

body.products-page footer {
    flex-shrink: 0;
}
footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Form Styles */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.carousel-caption {
  color: white; /* Text color */
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  padding: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-item {
    height: 300px !important;
  }
  
  .carousel-item img {
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    height: 200px !important;
  }
}





body, .breadcrumb, .breadcrumb a, .breadcrumb-item, .product-detail-desc, .product-detail-options, .product-detail-options label, .product-detail-options select, .product-detail-options option {
    color: #000 !important;
}
.product-detail-title, .product-detail-title h1 {
    font-size: 1.5rem;
    font-weight: bold;
}
.about-us img, .contact-us img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.about-us h1, .contact-us h1 {
    color: var(--primary-color);
}

.contact-us form {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-us h3 {
    color: var(--secondary-color);
}

/* Star Rating System */
.rating-stars {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 5px;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    cursor: pointer;
    color: #ddd;
    font-size: 24px;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label {
    color: #ffc107;
}

.review-item .fa-star {
    color: #ffc107;
}

.review-item .fa-star-o {
    color: #ddd;
}

/* Review Images */
.review-images .img-thumbnail {
    object-fit: cover;
    height: 100px;
    width: 100%;
}

.review-item .review-images .img-thumbnail {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.review-item .review-images .img-thumbnail:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Review image upload preview */
.review-image-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.review-image-preview .preview-item {
    position: relative;
    width: 100px;
    height: 100px;
}

.review-image-preview .preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.review-image-preview .preview-item .remove-image {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
}

/* Lightbox overlay for review images */
.review-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.review-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.review-lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.review-lightbox .close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.review-lightbox .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-lightbox .prev-button {
    left: 20px;
}

.review-lightbox .next-button {
    right: 20px;
}
.breadcrumb a, .breadcrumb-item.active {
    color: #888 !important;
}ca.related-products-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    overflow-x: auto;
    justify-content: center;
}
.related-product-card {
    flex: 0 0 19%;
    min-width: 200px;
    max-width: 220px;
}
.product-thumbnails img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  cursor: pointer;
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 4px;
}

.product-thumbnails img.active {
  border-color: var(--primary-color);
}
.card-title a {
    color: #000 !important;
    text-decoration: none !important;
}

.card-title a:hover {
    color: #000 !important;
    text-decoration: none !important;
}
.btn-success:hover {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    filter: brightness(1.15);
    color: #fff !important;
}
.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Footer */
/* Footer positioning */
/* Products page specific footer positioning */
body.products-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.products-page main {
    flex: 1 0 auto;
}

body.products-page footer {
    flex-shrink: 0;
}
footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Form Styles */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.carousel-caption {
  color: white; /* Text color */
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  padding: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-item {
    height: 300px !important;
  }
  
  .carousel-item img {
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    height: 200px !important;
  }
}





body, .breadcrumb, .breadcrumb a, .breadcrumb-item, .product-detail-desc, .product-detail-options, .product-detail-options label, .product-detail-options select, .product-detail-options option {
    color: #000 !important;
}
.product-detail-title, .product-detail-title h1 {
    font-size: 1.5rem;
    font-weight: bold;
}
.about-us img, .contact-us img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.about-us h1, .contact-us h1 {
    color: var(--primary-color);
}

.contact-us form {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-us h3 {
    color: var(--secondary-color);
}

/* Star Rating System */
.rating-stars {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 5px;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    cursor: pointer;
    color: #ddd;
    font-size: 24px;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label {
    color: #ffc107;
}

.review-item .fa-star {
    color: #ffc107;
}

.review-item .fa-star-o {
    color: #ddd;
}

/* Review Images */
.review-images .img-thumbnail {
    object-fit: cover;
    height: 100px;
    width: 100%;
}

.review-item .review-images .img-thumbnail {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.review-item .review-images .img-thumbnail:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Review image upload preview */
.review-image-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.review-image-preview .preview-item {
    position: relative;
    width: 100px;
    height: 100px;
}

.review-image-preview .preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.review-image-preview .preview-item .remove-image {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
}

/* Lightbox overlay for review images */
.review-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.review-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.review-lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.review-lightbox .close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.review-lightbox .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-lightbox .prev-button {
    left: 20px;
}

.review-lightbox .next-button {
    right: 20px;
}
.breadcrumb a, .breadcrumb-item.active {
    color: #888 !important;
}ca.related-products-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    overflow-x: auto;
    justify-content: center;
}
.related-product-card {
    flex: 0 0 19%;
    min-width: 200px;
    max-width: 220px;
}
.product-thumbnails img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  cursor: pointer;
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 4px;
}

.product-thumbnails img.active {
  border-color: var(--primary-color);
}
.card-title a {
    color: #000 !important;
    text-decoration: none !important;
}

.card-title a:hover {
    color: #000 !important;
    text-decoration: none !important;
}
.btn-success:hover {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    filter: brightness(1.15);
    color: #fff !important;
}
.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Footer */
/* Footer positioning */
/* Products page specific footer positioning */
body.products-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.products-page main {
    flex: 1 0 auto;
}

body.products-page footer {
    flex-shrink: 0;
}
footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Form Styles */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.carousel-caption {
  color: white; /* Text color */
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  padding: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-item {
    height: 300px !important;
  }
  
  .carousel-item img {
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    height: 200px !important;
  }
}





body, .breadcrumb, .breadcrumb a, .breadcrumb-item, .product-detail-desc, .product-detail-options, .product-detail-options label, .product-detail-options select, .product-detail-options option {
    color: #000 !important;
}
.product-detail-title, .product-detail-title h1 {
    font-size: 1.5rem;
    font-weight: bold;
}
.about-us img, .contact-us img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.about-us h1, .contact-us h1 {
    color: var(--primary-color);
}

.contact-us form {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-us h3 {
    color: var(--secondary-color);
}

/* Star Rating System */
.rating-stars {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 5px;
}

.rating-stars input {
    display: none;
