/* Old and Wise Section Styles */
.antique-section {
    background: linear-gradient(135deg, #f5bf0d 0%, #edf5db 100%);
    padding: 4rem 0;
    margin: 3rem 0;
    border-top: 3px solid #d4af37;
    border-bottom: 3px solid #d4af37;
    border-radius: 15px;

}

.antique-section .section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.antique-section .section-header h2 {
    color: #8b4513;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.antique-section .section-header h2 i {
    color: #d4af37;
    margin-right: 10px;
}

.antique-section .section-subtitle {
    text-align: center;
    color: #5d4037;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.antique-collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.antique-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 1px solid #e8d4b6;
}

.antique-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
}

.antique-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #d4af37;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.antique-item-image {
    height: 200px;
    overflow: hidden;
}

.antique-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.antique-item:hover .antique-item-image img {
    transform: scale(1.05);
}

.antique-item-content {
    padding: 1.5rem;
}

.antique-item-title {
    color: #5d4037;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.antique-item-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #8b4513;
}

.antique-age {
    background: #fff3e0;
    padding: 3px 10px;
    border-radius: 15px;
    font-weight: 500;
}

.antique-condition {
    color: #388e3c;
    font-weight: 500;
}

.antique-item-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.antique-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e8d4b6;
}

.antique-price {
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: 700;
}

.antique-price span {
    font-size: 0.9rem;
    color: #8b4513;
    font-weight: 400;
    display: block;
}

.btn-antique {
    background: #8b4513;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-antique:hover {
    background: #6b3410;
}

.loading-old-wise {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #8b4513;
    font-size: 1.1rem;
}

.empty-old-wise {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    border: 2px dashed #e8d4b6;
}

.empty-old-wise i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.empty-old-wise h4 {
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.empty-old-wise p {
    color: #5d4037;
    margin-bottom: 1.5rem;
}

.antique-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.antique-feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(139, 69, 19, 0.1);
}

.antique-feature-item i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.antique-feature-item h4 {
    color: #5d4037;
    margin-bottom: 0.5rem;
}

.antique-feature-item p {
    color: #666;
    font-size: 0.9rem;
}

.antique-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .antique-section .section-header h2 {
        font-size: 2rem;
    }
    
    .antique-collection-grid {
        grid-template-columns: 1fr;
    }
    
    .antique-features {
        grid-template-columns: 1fr;
    }
    
    .antique-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .antique-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Make Old & Wise section full width like Bulk section */
.antique-section {
    padding: 4rem 0;
    margin: 3rem 0;
    border-top: 3px solid #d4af37;
    border-bottom: 3px solid #d4af37;
    width: 100%;
}

/* Center content within container */
.antique-section .container {
    max-width: 1200px; /* Same as your main container */
    margin: 0 auto;
    padding: 0 20px;
}

/* Make Bulk section use same container class */
.bulk-items-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 4rem 0;
    margin: 3rem 0;
    width: 100%;
}

/* Update Bulk section to use container properly */
.bulk-items-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}