/* Catalog Page Specific Styles */

/* Product of the Day Widget */
.product-of-day {
    padding: 60px 0;
    background-color: #EAF2FB;
}

.widget-container {
    max-width: 1000px;
    margin: 0 auto;
}

.widget-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #374151;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

.product-wheel {
    display: flex;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.wheel-container {
    flex: 0 0 300px;
}

.wheel {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F6D6C3 0%, #DCEFE3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.wheel-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.wheel-item:nth-child(1) {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.wheel-item:nth-child(2) {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.wheel-item:nth-child(3) {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.wheel-item:nth-child(4) {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.wheel-item.active {
    background: #F6D6C3;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.wheel-item:nth-child(1).active {
    transform: translateX(-50%) scale(1.1);
}

.wheel-item:nth-child(2).active {
    transform: translateY(-50%) scale(1.1);
}

.wheel-item:nth-child(3).active {
    transform: translateX(-50%) scale(1.1);
}

.wheel-item:nth-child(4).active {
    transform: translateY(-50%) scale(1.1);
}

.wheel-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
}

.wheel-item span {
    font-size: 10px;
    font-weight: 600;
    color: #374151;
    text-align: center;
    line-height: 1.2;
}

.featured-product {
    flex: 1;
    display: flex;
    gap: 30px;
    align-items: center;
}

.featured-image {
    flex: 0 0 150px;
}

.featured-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
}

.featured-details {
    flex: 1;
}

.featured-details h3 {
    font-size: 24px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.featured-details p {
    font-size: 16px;
    color: #374151;
    margin-bottom: 15px;
    line-height: 1.5;
}

.featured-price {
    font-size: 28px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

/* Catalog Feed */
.catalog-feed {
    padding: 80px 0;
    background-color: #ffffff;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #DCEFE3;
    background: white;
    color: #374151;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #DCEFE3;
    border-color: #374151;
}

.catalog-newsfeed {
    max-height: 800px;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 40px;
}

.catalog-newsfeed::-webkit-scrollbar {
    width: 8px;
}

.catalog-newsfeed::-webkit-scrollbar-track {
    background: #F3F4F6;
    border-radius: 4px;
}

.catalog-newsfeed::-webkit-scrollbar-thumb {
    background: #DCEFE3;
    border-radius: 4px;
}

.catalog-newsfeed::-webkit-scrollbar-thumb:hover {
    background: #374151;
}

.catalog-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.2s ease;
}

.catalog-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.item-icon {
    flex: 0 0 60px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10px;
}

.catalog-icon {
    width: 50px;
    height: 50px;
}

.item-content {
    flex: 1;
    display: flex;
    gap: 30px;
    align-items: center;
}

.item-image {
    flex: 0 0 120px;
}

.item-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.item-details {
    flex: 1;
}

.item-details h3 {
    font-size: 20px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.item-details p {
    font-size: 16px;
    color: #374151;
    line-height: 1.5;
    margin-bottom: 15px;
}

.item-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 15px;
}

.item-price {
    font-size: 20px;
    font-weight: 700;
    color: #374151;
    font-family: 'Inter', sans-serif;
}

.item-category {
    background: #DCEFE3;
    color: #374151;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.browse-btn {
    background-color: #374151;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.browse-btn:hover {
    background-color: #4B5563;
}

.load-more-container {
    text-align: center;
}

.load-more-btn {
    background-color: #DCEFE3;
    color: #374151;
    border: 2px solid #374151;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.load-more-btn:hover {
    background-color: #374151;
    color: white;
}

/* Hidden items for filtering */
.catalog-item.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-wheel {
        flex-direction: column;
        gap: 30px;
    }
    
    .wheel-container {
        flex: none;
    }
    
    .wheel {
        width: 250px;
        height: 250px;
    }
    
    .featured-product {
        flex-direction: column;
        text-align: center;
    }
    
    .featured-image {
        flex: none;
    }
    
    .catalog-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .item-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .item-image {
        flex: none;
        align-self: center;
    }
    
    .category-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .widget-title {
        font-size: 24px;
    }
    
    .product-wheel {
        padding: 20px;
    }
    
    .wheel {
        width: 200px;
        height: 200px;
    }
    
    .wheel-item {
        width: 60px;
        height: 60px;
    }
    
    .wheel-icon {
        width: 20px;
        height: 20px;
    }
    
    .catalog-newsfeed {
        max-height: 600px;
    }
    
    .catalog-item {
        padding: 20px;
    }
}