/* ================================================== */
/* Shop Page Styles (shop.html) - All Products Listing */
/* ================================================== */

/* Category Navigation Line */
.category-line {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.category-line .nav {
    display: inline-flex;
    flex-wrap: nowrap;
    padding: 10px;
    padding-left: 7px;
}

.category-line .nav-link {
    color: #333;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 5px 15px;
    transition: all 0.3s ease;
}

.category-line .nav-link:hover,
.category-line .nav-link.active {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

/* Product Grid */
.products > .row > [class*=col-] {
    display: flex;
    align-items: stretch;
    align-content: stretch;
}

.product {
    margin-bottom: 1rem;
    transition: box-shadow .35s;
    overflow: hidden;
}

.product:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.product-2 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.carousel {
    flex-grow: 1;
}

.image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
}

.image-wrapper img {
    border-radius: 10px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.add-to-cart,
.carousel-product-info {
    flex-shrink: 0;
}

.add-to-cart {
    border-radius: 3px;
}

.add-to-cart:active {
    animation: blink 0.1s ease-in-out;
}

@keyframes blink {
    0% { background-color: #007bff; }
    50% { background-color: #28a745; }
    100% { background-color: #007bff; }
}

/* Product Info */
.related-product-publisher {
    font-weight: 500;
    font-size: 1.4rem;
    color: #000;
}

.product-discount,
.related-product-price {
    font-weight: 600;
    font-size: 1.6rem;
}

.card-title  {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -.025em;
    font-weight: 500;
    color: #333;
}

.related-product-price {
    color: #000;
}

.nav-item {
    margin-right: 8px;
}

/* Wishlist Button */
.wishlist-card-btn {
    position: absolute;
    top: 4px;
    right: 8px;
    z-index: 25;
    background: transparent !important;
    border: none !important;
    padding: 0;
    line-height: 1;
}

.wishlist-card-btn i {
    display: block;
    font-size: 22px;
    color: #999;
    transition: transform 0.2s ease, color 0.2s ease;
}

.wishlist-card-btn:hover i {
    transform: scale(1.15);
    color: red;
}

/* Button States */
.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

/* Pagination */
.pagination-wrapper .page-link {
    margin: 0 6px;
    transition: all 0.3s ease;
    color: #007bff;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.pagination-wrapper .page-link:hover {
    background-color: #007bff;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.pagination-wrapper .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.pagination-wrapper .page-item.disabled .page-link {
    background-color: #f8f9fa;
    color: #aaa;
    cursor: not-allowed;
}

/* Note: Spacing utilities (mb-0 to mb-5, pt-1 to pt-4, etc.) removed - provided by Bootstrap */
/* Note: @font-face molla and icon styles removed - defined in Base.css */