/* Products Page Styles */
.tp-theme-settings{
    /* display: none !important; */
}
/* Breadcrumb Section */
.breadcrumb-section {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    padding: 5px 0;
}

.breadcrumb-container {
    height: 50px;
}

.breadcrumb-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.breadcrumb-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: white;
    margin-bottom: 0;
}

.breadcrumb-list {
    color: white;
}

.breadcrumb-list a {
    color: white;
    text-decoration: none;
}

.breadcrumb-list .text-white-50 {
    color: rgba(255,255,255,0.5) !important;
}

/* Shop Section */
.shop-section {
    background: #f8f9fa;
    padding-bottom: 120px;
}

.shop-top-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 1.5rem;
    margin-bottom: 45px;
}

.shop-result-text {
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0;
}

.filter-dropdown-wrapper {
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.shop-items-wrapper {
    margin-top: 3rem;
}

/* Product Cards - Grid View */
.product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 40px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-thumb {
    position: relative;
    overflow: hidden;
}

.product-thumb img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-thumb img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay-btn {
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    background: white;
    color: #333;
    padding: 8px 16px;
}

.product-content {
    padding: 1rem 1.5rem;
}

.product-category-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.product-title {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.product-title:hover {
    color: #28a745;
}

.product-rating {
    color: #ffc107;
    margin-bottom: 0.75rem;
}

.product-price-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price-new {
    font-size: 1.25rem;
    font-weight: 700;
    color: #28a745;
}

.product-price-old {
    text-decoration: line-through;
    color: #6c757d;
    margin-left: 8px;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    padding: 8px 16px;
    color: white;
    text-decoration: none;
    display: inline-block;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #218838 0%, #1ea085 100%);
    color: white;
    text-decoration: none;
}

/* Product Cards - List View */
.product-list-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 1rem;
}

.product-list-thumb {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-list-thumb img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
}

.product-list-content {
    flex: 1;
    padding: 20px;
}

.product-list-title {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.product-list-title:hover {
    color: #28a745;
}

.product-list-price-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
}

.product-list-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Notification Styles */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    font-weight: 600;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cart-notification.show {
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumb-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .product-list-item {
        flex-direction: column;
    }

    .product-list-thumb {
        flex: none;
        width: 100%;
    }
}

.breadcrumb__area{
    margin-bottom: 10px !important;
}

.tp-product-details-generic-name{
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}


.color-pending {
    color: #ffc107 !important; /* Yellow (warning) */
  }
  .color-processing {
    color: #17a2b8 !important; /* Info blue */
  }
  .color-shipped {
    color: #007bff !important; /* Blue */
  }
  .color-delivered {
    color: #28a745 !important; /* Green */
  }
  .color-completed {
    color: #20c997 !important; /* Teal green */
  }
  .color-failed {
    color: #dc3545 !important; /* Red */
  }
  .color-refunded {
    color: #fd7e14 !important; /* Orange */
  }
  .color-cancelled {
    color: #6c757d !important; /* Dark gray */
  }
  .color-returned {
    color: #e83e8c !important; /* Pink-red */
  }


.bg-pending {
  background-color: #fff3cd !important;
  color: #856404 !important;
}

.bg-processing {
  background-color: #d1ecf1 !important;
  color: #0c5460 !important;
}

.bg-shipped {
  background-color: #cce5ff !important;
  color: #004085 !important;
}

.bg-delivered {
  background-color: #d4edda !important;
  color: #155724 !important;
}

.bg-completed {
  background-color: #c3e6cb !important;
  color: #155724 !important;
}

.bg-failed {
  background-color: #f8d7da !important;
  color: #721c24 !important;
}

.bg-refunded {
  background-color: #fff3cd !important;
  color: #856404 !important;
}

.bg-cancelled {
  background-color: #e2e3e5 !important;
  color: #383d41 !important;
}

.bg-returned {
  background-color: #f5c6cb !important;
  color: #721c24 !important;
}