/* Original Paintings Page Styles */
.original-paintings-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%);
    min-height: 100vh;
}

.page-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Original Paintings Grid */
.paintings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.painting-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.painting-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.painting-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.painting-card:hover .painting-image img {
    transform: scale(1.05);
}

.painting-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;
}

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

.quick-view-btn {
    background: linear-gradient(135deg, rgb(181, 232, 255) 0%, #7ef2ff 25%,  #58eeff 50%,  rgb(71, 235, 253) 75%, #34e5f9 100%);
    color: black;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(181, 232, 255, 0.3);
}

.painting-info {
    padding: 25px;
}

.painting-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.3;
}

.painting-description {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.5;
}

.painting-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(3, 158, 197);
    margin-bottom: 20px;
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, rgb(181, 232, 255) 0%, #7ef2ff 25%,  #58eeff 50%,  rgb(71, 235, 253) 75%, #34e5f9 100%);
    color: black;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(181, 232, 255, 0.3);
}

.add-to-cart-btn.added {
    background: #28a745;
    color: white;
}

/* Original Artwork Badge */
.painting-card::before {
    content: 'ORIGINAL';
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, rgb(181, 232, 255) 0%, #7ef2ff 25%,  #58eeff 50%,  rgb(71, 235, 253) 75%, #34e5f9 100%);
    color: black;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(181, 232, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .paintings-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .original-paintings-section {
        padding: 40px 15px;
    }
    
    .page-heading {
        font-size: 2.5rem;
    }
    
    .paintings-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .painting-image {
        height: 250px;
    }
    
    .painting-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .original-paintings-section {
        padding: 30px 15px;
    }
    
    .page-heading {
        font-size: 2rem;
    }
    
    .paintings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .painting-image {
        height: 200px;
    }
    
    .painting-info {
        padding: 15px;
    }
    
    .painting-title {
        font-size: 1.2rem;
    }
    
    .painting-price {
        font-size: 1.3rem;
    }
}
