/* Products Page Styles */
.products-page-container {
  background: #f8f9fa;
  min-height: 100vh;
  padding: 40px 0;
}

.products-page-row {
  position: relative;
}

.products-content-wrapper {
  transition: all 0.3s ease;
}

/* Filter Toggle Button - Show on ALL screens */
.products-filter-toggle {
  display: block;
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(204, 163, 93, 0.3);
  transition: all 0.3s;
}

.products-filter-toggle:hover {
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 163, 93, 0.4);
}

.products-filter-toggle i {
  margin-left: 8px;
}

/* Mobile Filter Close Button */
.products-filter-close {
  display: none;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1001;
  width: 40px;
  height: 40px;
  background: #d9534f;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.products-filter-close:hover {
  background: #c9302c;
  transform: scale(1.1);
}

/* Sidebar Wrapper - Hidden by default on ALL screens */
.products-sidebar-wrapper {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
  padding: 60px 20px 20px;
  z-index: 100000000000000;
}

.products-sidebar-wrapper.active {
  right: 0;
}

/* Overlay backdrop */
.products-sidebar-wrapper::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.products-sidebar-wrapper.active::before {
  opacity: 1;
  pointer-events: auto;
}

/* Prevent body scroll when sidebar is open */
body.sidebar-open {
  overflow: hidden;
}

.products-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  align-items: stretch;
}

.products-grid-modern > div {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

/* Products List Page Enhancements */
.products-sidebar {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  margin-bottom: 30px;
}

.products-sidebar-header {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid #1d322d;
}

.products-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.products-sidebar-list li {
  margin-bottom: 10px;
}

.products-sidebar-list a {
  display: block;
  padding: 12px 15px;
  border-radius: 10px;
  text-decoration: none;
  color: #495057;
  transition: all 0.3s ease;
  font-weight: 500;
}

.products-sidebar-list a:hover,
.products-sidebar-list a.active {
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  color: white;
  transform: translateX(-5px);
}

.products-search-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  margin-bottom: 30px;
}

.products-search-form {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.products-search-input {
  flex: 1;
  min-width: 100px;
  padding: 12px 20px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.products-search-input:focus {
  outline: none;
  border-color: #1d322d;
  box-shadow: 0 0 0 3px rgba(204, 163, 93, 0.1);
}

.products-sort-select {
  padding: 12px 20px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 16px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.products-sort-select:focus {
  outline: none;
  border-color: #1d322d;
  box-shadow: 0 0 0 3px rgba(204, 163, 93, 0.1);
}

.products-search-btn {
  padding: 12px 30px;
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.products-search-btn:hover {
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 163, 93, 0.4);
}

.products-category-title {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.products-category-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.products-empty-state {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.products-empty-icon {
  font-size: 80px;
  color: #dee2e6;
  margin-bottom: 20px;
}

.products-empty-title {
  font-size: 24px;
  font-weight: 600;
  color: #495057;
  margin-bottom: 10px;
}

.products-empty-message {
  font-size: 16px;
  color: #6c757d;
}

.product-card-modern {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  max-height: 100%;
}

.product-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-card-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f8f9fa;
  flex-shrink: 0;
}

.product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card-modern:hover .product-card-image {
  transform: scale(1.1);
}

.product-discount-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #1d322d;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.product-featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #1d322d;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.product-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-height: 0;
  overflow: hidden;
}

.product-card-header {
  margin-bottom: 12px;
  flex-shrink: 0;
  min-height: 60px;
  max-height: 80px;
  overflow: hidden;
}

.product-card-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #2c3e50;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 44px;
  max-height: 44px;
}

.product-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-card-title a:hover {
  color: #1d322d;
}

.product-card-tag {
  display: inline-block;
  background: #f0f0f0;
  color: #666;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
}

.product-card-pricing {
  margin-bottom: 16px;
  flex-shrink: 0;
  margin-top: auto;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.product-price-current {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
}

.product-price-original {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
}

.product-card-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.product-card-btn {
  flex: 1;
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card-btn:hover {
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(204, 163, 93, 0.3);
  color: white;
}

.product-card-link {
  width: 44px;
  height: 44px;
  background: #1d322d;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-card-link:hover {
  background: #3a645a;
  transform: scale(1.1);
}

/* Product Detail Page - Matching Image Design */
.product-detail-page-container {
  background: #ffffff;
  padding: 30px 0;
  min-height: calc(100vh - 200px);
}

.product-breadcrumb {
  margin-bottom: 30px;
}

.custom-breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.custom-breadcrumb .breadcrumb-item a {
  color: #666;
  text-decoration: none;
}

.custom-breadcrumb .breadcrumb-item.active {
  color: #333;
}

.product-detail-wrapper {
  background: #fff;
}

.product-main-row {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 30px;
}

/* Ensure side-by-side layout on desktop */
.product-details-column {
  flex: 0 0 50%;
  max-width: 50%;
  order: 1;
}

.product-images-column {
  flex: 0 0 50%;
  max-width: 50%;
  order: 2;
}

/* Desktop: Side by side layout - Details LEFT, Images RIGHT */
@media (min-width: 992px) {
  .product-main-row {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .product-details-column {
    flex: 0 0 50%;
    max-width: 50%;
    order: 1;
  }

  .product-images-column {
    flex: 0 0 50%;
    max-width: 50%;
    order: 2;
  }
}

/* Tablet: Side by side */
@media (min-width: 768px) and (max-width: 991px) {
  .product-main-row {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .product-details-column {
    flex: 0 0 50%;
    max-width: 50%;
    order: 1;
  }

  .product-images-column {
    flex: 0 0 50%;
    max-width: 50%;
    order: 2;
  }
}

/* Mobile: Stack vertically - Image on top, Details below */
@media (max-width: 767px) {
  .product-main-row {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
  }

  .product-details-column,
  .product-images-column {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .product-images-column {
    order: 1;
  }

  .product-details-column {
    order: 2;
  }
}

/* Info Box (Left Column - Purchase Section) */
.product-info-box {
  background: #fff9e6;
  border: 2px solid #1d322d;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  position: sticky;
  top: 20px;
}

.info-box-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #333;
}

.info-box-item i {
  color: #1d322d;
  font-size: 18px;
}

.info-box-price-range {
  padding: 15px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 16px;
  margin-left: 10px;
}

.price-new {
  color: #1d322d;
  font-size: 20px;
  font-weight: bold;
}

.info-box-meta {
  font-size: 13px;
  color: #666;
}

.info-box-meta p {
  margin: 0;
  padding: 4px 0;
  line-height: 1.6;
}

/* Product Images (Right Column) */
.product-images-section {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-main-image-wrapper {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto 20px;
}

.product-main-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

.product-thumbnails-wrapper {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-thumbnail {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.product-thumbnail:hover,
.product-thumbnail.active {
  border-color: #1d322d;
  transform: scale(1.05);
}

/* Product Details (Middle Column) */
.product-details-section {
  padding-right: 20px;
  padding-left: 20px;
}

.product-title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.4;
}

.product-features {
  margin-bottom: 25px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  padding: 8px 0;
  padding-right: 20px;
  position: relative;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.features-list li:before {
  content: "•";
  position: absolute;
  right: 0;
  color: #1d322d;
  font-size: 20px;
}

/* Product Stats */
.product-stats {
  margin-bottom: 25px;
  padding: 15px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
}

.product-stat-item i {
  color: #1d322d;
  font-size: 18px;
}

.product-stat-item strong {
  color: #333;
  margin-left: 5px;
}

.product-price-display {
  margin-bottom: 25px;
}

.price-main {
  font-size: 32px;
  font-weight: bold;
  color: #1d322d;
}

/* Quantity Selector */
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.qty-btn:hover {
  background: #f0f0f0;
  border-color: #1d322d;
}

.qty-input {
  width: 80px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
  font-size: 16px;
}

.add-to-cart-btn {
  width: 100%;
  padding: 15px;
  background: #1d322d;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.add-to-cart-btn:hover:not(:disabled) {
  background: #1d322d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(204, 163, 93, 0.3);
}

.add-to-cart-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Tabs Section */
.product-tabs-section {
  margin-top: 50px;
  border-top: 1px solid #e0e0e0;
  padding-top: 30px;
}

.product-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 15px 30px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-btn.active {
  color: #1d322d;
  border-bottom-color: #1d322d;
}

.tab-content {
  display: none;
  padding: 20px 0;
  line-height: 1.8;
  color: #555;
}

.tab-content.active {
  display: block;
}

.product-description-content {
  font-size: 15px;
  line-height: 2;
}

.product-comments-content {
  padding: 0;
}

/* Product Comments Box - Similar to News Comments */
.product-comments-box {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 25px;
  border: 1px solid #e9ecef;
}

.product-comments-box h3 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  padding-bottom: 15px;
  border-bottom: 3px solid #1d322d;
}

.product-comment-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-comment-form-row {
  display: flex;
  gap: 15px;
}

.product-comment-form-row input {
  flex: 1;
}

.product-comment-form input,
.product-comment-form textarea {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 14px;
  width: 100%;
  font-family: inherit;
  transition: all 0.3s;
}

.product-comment-form input:focus,
.product-comment-form textarea:focus {
  outline: none;
  border-color: #1d322d;
  box-shadow: 0 0 0 3px rgba(204, 163, 93, 0.1);
}

.product-comment-form textarea {
  resize: vertical;
  min-height: 120px;
}

.product-comment-form button {
  align-self: center;
  margin-top: 10px;
  padding: 12px 40px;
  border-radius: 25px;
  border: none;
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(204, 163, 93, 0.3);
}

.product-comment-form button:hover {
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 163, 93, 0.4);
}

.product-comment-error {
  color: #d9534f;
  font-size: 13px;
  text-align: center;
  margin-bottom: 8px;
}

.product-comments-list {
  margin-top: 18px;
  border-top: 1px solid #eee;
  padding-top: 12px;
}

.product-comment-item {
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-right: 4px solid #1d322d;
  transition: all 0.3s;
}

.product-comment-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateX(-5px);
}

.product-comment-item:last-child {
  margin-bottom: 0;
}

.product-comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.product-comment-name {
  font-weight: 700;
  color: #2c3e50;
  font-size: 16px;
}

.product-comment-date {
  color: #999;
  font-size: 13px;
}

.product-comment-message {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  text-align: justify;
}

/* Related Products */
.related-products-section {
  margin-top: 60px;
}

.related-products-title {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
}

/* Products Page Layout */
.products-page-container {
  background: #f8f9fa;
  min-height: 100vh;
  padding: 40px 0;
}

.products-sidebar {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  margin-bottom: 30px;
  position: sticky;
  top: 20px;
}

.products-sidebar-header {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid #1d322d;
}

.products-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.products-sidebar-list li {
  margin-bottom: 10px;
}

.products-sidebar-list a {
  display: block;
  padding: 12px 15px;
  border-radius: 10px;
  text-decoration: none;
  color: #495057;
  transition: all 0.3s ease;
  font-weight: 500;
}

.products-sidebar-list a:hover,
.products-sidebar-list a.active {
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  color: white;
  transform: translateX(-5px);
}

.products-search-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  margin-bottom: 30px;
}

.products-search-form {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.products-search-input {
  flex: 1;
  min-width: 100px;
  padding: 12px 20px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.products-search-input:focus {
  outline: none;
  border-color: #1d322d;
  box-shadow: 0 0 0 3px rgba(204, 163, 93, 0.1);
}

.products-sort-select {
  padding: 12px 20px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 16px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.products-sort-select:focus {
  outline: none;
  border-color: #1d322d;
  box-shadow: 0 0 0 3px rgba(204, 163, 93, 0.1);
}

.products-search-btn {
  padding: 12px 30px;
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.products-search-btn:hover {
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 163, 93, 0.4);
}

.products-category-title {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.products-category-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.products-empty-state {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.products-empty-icon {
  font-size: 80px;
  color: #dee2e6;
  margin-bottom: 20px;
}

.products-empty-title {
  font-size: 24px;
  font-weight: 600;
  color: #495057;
  margin-bottom: 10px;
}

.products-empty-message {
  font-size: 16px;
  color: #6c757d;
}

/* Product Info Box - Compact Horizontal Layout */
.product-info-box-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 15px;
}

.product-info-box .info-box-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  transition: all 0.3s;
}

.product-info-box .info-box-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.product-info-box .info-box-price-range {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 15px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  margin: 10px 0;
  justify-content: center;
}

.product-info-box .info-box-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  font-size: 13px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
}

.product-info-box .product-price-display {
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  margin: 10px 0;
}

/* Responsive - Product Detail Page */
@media (max-width: 991px) {
  .product-images-section {
    padding: 0;
    margin-bottom: 30px;
  }

  .product-details-section {
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 30px;
  }

  .product-info-box {
    margin-bottom: 30px;
    position: static;
  }

  .product-info-box-top {
    grid-template-columns: 1fr;
  }

  .product-info-box .info-box-meta {
    grid-template-columns: 1fr;
  }

  .product-comment-form-row {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .product-main-image-wrapper {
    max-width: 100%;
  }

  .product-info-box {
    padding: 20px;
  }

  .product-main-row {
    display: flex !important;
    flex-direction: column !important;
  }

  .product-details-column,
  .product-images-column {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .product-details-column {
    order: 2;
  }

  .product-images-column {
    order: 1;
  }
}

/* Filter Close Button - Show on ALL screens */
.products-filter-close {
  display: block;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1001;
  width: 40px;
  height: 40px;
  background: #d9534f;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.products-filter-close:hover {
  background: #c9302c;
  transform: scale(1.1);
}

/* Sidebar styling when active */
.products-sidebar-wrapper.active .products-sidebar {
  box-shadow: none;
  margin-bottom: 0;
  padding: 20px 0;
}

@media (max-width: 768px) {
  .products-grid-modern {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }

  .product-title {
    font-size: 24px;
  }

  .price-main {
    font-size: 28px;
  }

  .product-thumbnail {
    width: 80px;
    height: 80px;
  }

  .products-sidebar {
    position: static;
  }

  .product-info-box {
    padding: 20px;
  }

  .info-box-item {
    font-size: 13px;
  }

  .product-comments-box {
    padding: 15px;
  }
}

/* Cart Page Styles */
.cart-page {
  background: #f8f9fa;
  min-height: calc(100vh - 200px);
  padding: 40px 0;
}

.cart-title {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart-title i {
  color: #1d322d;
}

.cart-card {
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: none;
  overflow: hidden;
}

.cart-card .card-body {
  padding: 25px;
}

.cart-card .table {
  margin-bottom: 0;
}

.cart-card .table thead th {
  background: #f8f9fa;
  border-bottom: 2px solid #e0e0e0;
  font-weight: 600;
  color: #333;
  padding: 15px;
}

.cart-card .table tbody td {
  padding: 20px 15px;
  vertical-align: middle;
  border-bottom: 1px solid #f0f0f0;
}

.cart-summary-card {
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: none;
  overflow: hidden;
  position: sticky;
  top: 20px;
}

.cart-summary-card .card-header {
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  border: none;
  padding: 20px;
}

.cart-summary-card .card-header h5 {
  margin: 0;
  font-weight: 600;
}

.cart-summary-card .card-body {
  padding: 25px;
}

.cart-summary-card .card-body .d-flex {
  font-size: 16px;
  margin-bottom: 15px;
}

.cart-summary-card .card-body hr {
  margin: 20px 0;
  border-color: #e0e0e0;
}

.cart-summary-card .btn-primary {
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  border: none;
  padding: 15px 25px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(204, 163, 93, 0.3);
  position: relative;
  overflow: hidden;
}

.cart-summary-card .btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cart-summary-card .btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.cart-summary-card .btn-primary:hover {
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 163, 93, 0.4);
}

.cart-card .btn-outline-primary,
.cart-card .btn-outline-danger {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  border-width: 2px;
}

.cart-card .btn-outline-primary {
  border-color: #1d322d;
  color: #1d322d;
}

.cart-card .btn-outline-primary:hover {
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  border-color: #1d322d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(204, 163, 93, 0.3);
}

.cart-card .btn-outline-danger {
  border-color: #dc3545;
  color: #dc3545;
}

.cart-card .btn-outline-danger:hover {
  background: #dc3545;
  border-color: #dc3545;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.cart-empty {
  background: #fff;
  border-radius: 16px;
  padding: 60px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cart-empty i {
  color: #dee2e6;
}

.cart-empty h4 {
  color: #495057;
  margin-bottom: 15px;
}

.cart-empty p {
  color: #6c757d;
  margin-bottom: 25px;
}

/* Checkout Page Styles */
.checkout-page {
  background: #f8f9fa;
  min-height: calc(100vh - 200px);
  padding: 40px 0;
}

.checkout-page .card {
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: none;
  margin-bottom: 30px;
  overflow: hidden;
}

.checkout-page .card-header {
  padding: 20px 25px;
  border-bottom: 2px solid #f0f0f0;
}

.checkout-page .card-header.bg-primary {
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%) !important;
}

.checkout-page .card-header.bg-info {
  background: linear-gradient(135deg, #0dcaf0 0%, #0aa2c0 100%) !important;
}

.checkout-page .card-header.bg-success {
  background: linear-gradient(135deg, #198754 0%, #146c43 100%) !important;
}

.checkout-page .card-body {
  padding: 25px;
}

.checkout-page .table {
  margin-bottom: 0;
}

.checkout-page .table thead th {
  background: #f8f9fa;
  border-bottom: 2px solid #e0e0e0;
  font-weight: 600;
  color: #333;
  padding: 15px;
}

.checkout-page .table tbody td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 1px solid #f0f0f0;
}

.checkout-page .form-check {
  margin-bottom: 15px;
}

.checkout-page .form-check-label .card {
  margin: 0;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid #e0e0e0;
}

.checkout-page .form-check-input:checked ~ .form-check-label .card {
  border-color: #1d322d;
  box-shadow: 0 0 0 3px rgba(204, 163, 93, 0.1);
}

.checkout-page .btn-primary {
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  border: none;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}

.checkout-page .btn-primary:hover {
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(204, 163, 93, 0.3);
}

.checkout-page .alert-info {
  background: #e7f3ff;
  border-color: #b8daff;
  color: #004085;
  border-radius: 10px;
}

/* Responsive Cart and Checkout */
@media (max-width: 992px) {
  .cart-summary-card {
    position: static;
    margin-top: 30px;
  }

  .checkout-page .card.sticky-top {
    position: static !important;
  }
}

@media (max-width: 768px) {
  .cart-title {
    font-size: 24px;
  }

  .cart-card .table {
    font-size: 14px;
  }

  .cart-card .table thead th,
  .cart-card .table tbody td {
    padding: 10px 8px;
  }

  .checkout-page .card-body {
    padding: 15px;
  }

  .checkout-page .table {
    font-size: 14px;
  }
}

/* Auth Pages (Login & Register) Styles */
.auth-page {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: calc(100vh - 200px);
  padding: 60px 0;
  display: flex;
  align-items: center;
}

.auth-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s;
}

.auth-card:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.auth-card-header {
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  padding: 40px 30px;
  text-align: center;
  color: #fff;
}

.auth-card-header i {
  font-size: 60px;
  margin-bottom: 15px;
  display: block;
  opacity: 0.9;
}

.auth-card-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.auth-card-header p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

.auth-card-body {
  padding: 40px 30px;
}

.auth-form {
  margin-bottom: 25px;
}

.auth-form-group {
  margin-bottom: 25px;
}

.auth-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 14px;
}

.auth-label i {
  color: #1d322d;
  font-size: 16px;
}

.auth-input,
.auth-card-body .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s;
  background: #f8f9fa;
}

.auth-input:focus,
.auth-card-body .form-control:focus {
  outline: none;
  border-color: #1d322d;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(204, 163, 93, 0.1);
}

.auth-checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.auth-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #1d322d;
}

.auth-checkbox-label {
  font-size: 14px;
  color: #666;
  cursor: pointer;
  margin: 0;
}

.auth-btn {
  width: 100%;
  padding: 15px 25px;
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(204, 163, 93, 0.3);
  position: relative;
  overflow: hidden;
}

.auth-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.auth-btn:hover::before {
  width: 300px;
  height: 300px;
}

.auth-btn:hover {
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 163, 93, 0.4);
}

.auth-btn i {
  font-size: 18px;
}

.auth-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.auth-footer p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.auth-link {
  color: #1d322d;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.auth-link:hover {
  color: #1d322d;
  text-decoration: underline;
}

.auth-error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

/* Responsive Auth Pages */
@media (max-width: 768px) {
  .auth-page {
    padding: 40px 15px;
  }

  .auth-card-header {
    padding: 30px 20px;
  }

  .auth-card-header i {
    font-size: 50px;
  }

  .auth-card-header h2 {
    font-size: 24px;
  }

  .auth-card-body {
    padding: 30px 20px;
  }

  .auth-form-group {
    margin-bottom: 20px;
  }
}

.auth-help-text {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #999;
}

/* Cart Action Buttons */
.cart-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.cart-action-btn {
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cart-continue-btn {
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  color: #fff;
}

.cart-continue-btn:hover {
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 163, 93, 0.4);
  color: #fff;
}

.cart-clear-btn {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: #fff;
}

.cart-clear-btn:hover {
  background: linear-gradient(135deg, #c82333 0%, #dc3545 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
  color: #fff;
}

.cart-login-btn {
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  color: #fff;
  border: none;
  padding: 15px 25px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(204, 163, 93, 0.3);
}

.cart-login-btn:hover {
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 163, 93, 0.4);
  color: #fff;
}

/* Category Detail Page */
.category-detail-page {
  background: #f8f9fa;
  min-height: calc(100vh - 200px);
  padding: 40px 0;
}

.category-breadcrumb {
  margin-bottom: 30px;
}

.category-header {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-image-wrapper {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  max-height: 400px;
}

.category-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.category-info {
  text-align: center;
}

.category-title {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.category-description {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

.category-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.category-product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.category-product-card:hover {
  transform: translateY(-8px);
  /* Removed box-shadow for no shadow effect */
}

.product-discount-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
}

.category-product-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  /* Removed background color */
}

.category-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-product-card:hover .category-product-image {
  transform: scale(1.1);
}

.category-product-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.category-product-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #2c3e50;
  line-height: 1.4;
}

.category-product-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.category-product-title a:hover {
  color: #1d322d;
}

.category-product-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.6;
  flex-grow: 1;
}

.category-product-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.category-product-price {
  margin-bottom: 12px;
}

.category-product-price .price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
  margin-left: 10px;
}

.category-product-price .price-new {
  color: #dc3545;
  font-size: 22px;
  font-weight: 700;
}

.category-product-price .price-normal {
  color: #2c3e50;
  font-size: 22px;
  font-weight: 700;
}

.category-product-btn {
  width: 100%;
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-product-btn:hover {
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(204, 163, 93, 0.3);
  color: white;
}

.category-pagination {
  margin-top: 50px;
}

.category-pagination .pagination {
  gap: 10px;
}

.category-pagination .page-link {
  border-radius: 8px;
  border: 2px solid #e9ecef;
  color: #666;
  padding: 10px 15px;
  transition: all 0.3s;
}

.category-pagination .page-link:hover {
  background: #1d322d;
  border-color: #1d322d;
  color: #fff;
}

.category-pagination .page-item.active .page-link {
  background: linear-gradient(135deg, #1d322d 0%, #1d322d 100%);
  border-color: #1d322d;
  color: #fff;
}

.category-empty {
  background: #fff;
  border-radius: 16px;
  padding: 60px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-empty i {
  font-size: 60px;
  color: #dee2e6;
  margin-bottom: 20px;
  display: block;
}

.category-empty p {
  font-size: 18px;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .category-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }

  .category-title {
    font-size: 28px;
  }

  .cart-actions {
    flex-direction: column;
  }

  .cart-action-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Services Page */
.services-page {
  background: #f8f9fa;
  min-height: calc(100vh - 200px);
  padding: 40px 0;
}

.services-breadcrumb {
  margin-bottom: 30px;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.services-title {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.services-subtitle {
  font-size: 18px;
  color: #666;
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f8f9fa;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-image {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-name {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.4;
}

.service-description {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1d322d;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  margin-top: auto;
}

.service-link:hover {
  color: #1d322d;
  gap: 12px;
}

.services-empty {
  background: #fff;
  border-radius: 16px;
  padding: 60px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.services-empty i {
  font-size: 60px;
  color: #dee2e6;
  margin-bottom: 20px;
  display: block;
}

.services-empty p {
  font-size: 18px;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-title {
    font-size: 28px;
  }

  .service-image-wrapper {
    height: 200px;
  }
}
