/* Premium Layout Styles (Extracted from Home) */

/* 1. Global Utilities */
.bg-premium-beige {
    background-color: #f5f0e6 !important;
}

/* 2. Editorial Philosophy Section */
.philosophy-wrapper {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #111;
    padding-top: 60px;
    padding-left: 8%;
    /* Desktop Spacing */
    padding-right: 8%;
    /* Desktop Spacing */
}

.philosophy-image-col {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 60px;
    position: relative;
}

.philosophy-image-sticky {
    position: sticky;
    top: 100px;
    height: 600px;
    overflow: hidden;
    border-radius: 4px;
}

.philosophy-image-sticky img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.5s ease, transform 0.5s;
}

.philosophy-image-sticky:hover img {
    transform: scale(1.02);
}

.philosophy-content-col {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 20px;
}

.philosophy-header {
    margin-bottom: 60px;
}

.philosophy-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 20px;
    display: block;
}

.philosophy-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 500;
    color: #111;
}

.philosophy-block {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #eee;
}

.philosophy-item {
    margin-bottom: 60px;
    padding-left: 10px;
}

.philosophy-item:last-child {
    margin-bottom: 0;
}

.p-block-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 20px;
    letter-spacing: 1px;
}

.p-block-title::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: #333;
}

.p-block-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    font-weight: 300;
}

/* Responsive Philosophy */
@media(max-width: 991px) {
    .philosophy-wrapper {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 40px;
    }

    .philosophy-image-col,
    .philosophy-content-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }

    .philosophy-image-col {
        margin-bottom: 40px;
    }

    .philosophy-image-sticky {
        height: 400px;
        position: relative;
        top: 0;
    }

    .philosophy-title {
        font-size: 2.5rem;
    }
}

@media(max-width: 767px) {
    .philosophy-title {
        font-size: 2rem;
    }

    .philosophy-image-sticky {
        height: 300px;
    }

    .philosophy-image-sticky h2 {
        font-size: 1.5rem !important;
    }

    .p-block-text {
        font-size: 1rem;
    }
}

/* 3. Dark Gradient Feature Section */
.home1-feature-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%) !important;
    /* Rich Dark Gradient */
    padding: 100px 0;
    color: #e0d8c0 !important;
    /* Warm Beige Text */
    position: relative;
}

.home1-feature-section .section-title h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #f0e6d2 !important;
    /* Light Creamy Beige */
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.home1-feature-section .section-title p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: rgba(224, 216, 192, 0.7) !important;
    /* Muted Beige */
    max-width: 600px;
    margin-bottom: 60px;
    font-size: 1.15rem;
    line-height: 1.7;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 60px;
    row-gap: 40px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 0;
    background: transparent;
    border: none;
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(10px);
}

.feature-list li .icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37 !important;
    /* Gold Icon */
    margin-top: 4px;
}

.feature-list li:hover .icon {
    color: #fdf5e6 !important;
    /* Lighter Gold on hover */
}

.feature-list li .icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.feature-list li .icon svg path {
    fill: currentColor;
}


.feature-list li .content h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #f0e6d2 !important;
    margin-bottom: 5px;
}

.feature-list li .content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(224, 216, 192, 0.6) !important;
    line-height: 1.5;
    margin: 0;
}

/* Image Styling */
.home1-feature-section .feature-img {
    position: relative;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    /* Deep shadow */
}

.home1-feature-section .feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    filter: contrast(1.1) sepia(0.2);
    /* Artistic filter */
}

.home1-feature-section .feature-img:hover img {
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .feature-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home1-feature-section {
        padding: 60px 0;
    }
}

/* 4. Professional Product Card Styles (Global) */
.view-all-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid #111;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: #ee3239;
    border-color: #ee3239;
}

.pro-art-card {
    position: relative;
    margin-bottom: 60px;
}

/* Image Container */
.pro-img-container {
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
    aspect-ratio: 4/5;
    margin-bottom: 20px;
}

.pro-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

.pro-art-card:hover .pro-img-container img {
    transform: scale(1.05);
}

/* Wishlist Button - Top Right */
.btn-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 5;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    /* Reset */
}

.btn-wishlist svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: fill 0.3s;
}

.btn-wishlist:hover svg {
    fill: #ee3239;
    stroke: #ee3239;
}

.pro-art-card:hover .btn-wishlist {
    opacity: 1;
    transform: translateY(0);
}

/* Action Buttons Overlay */
.pro-actions-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #f0f0f0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    /* Stacked for better mobile/desktop button feel */
    gap: 8px;
    z-index: 5;
}

.pro-art-card:hover .pro-actions-overlay {
    transform: translateY(0);
}

.action-btn-pro {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    gap: 8px;
}

.btn-cart {
    background: #111;
    color: #fff;
    border: 1px solid #111;
}

.btn-cart:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}

.btn-enquire {
    background: transparent;
    color: #111;
    border: 1px solid #ddd;
}

.btn-enquire:hover {
    background: #f5f5f5;
    border-color: #111;
    color: #111;
}

/* Text Details */
.pro-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pro-info-left {
    padding-right: 15px;
}

.pro-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    /* Regular weight, not bold */
    color: #000;
    margin-bottom: 4px;
    line-height: 1.3;
}

.pro-title a {
    color: inherit;
    text-decoration: none;
}

.pro-artist {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #777;
}

.pro-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    white-space: nowrap;
}