﻿/* Collection Showcase Section - ENHANCED VISUAL DESIGN */
.collection-showcase-section {
    background: linear-gradient(135deg, #fdf7e3 0%, #fff9ef 50%, #fdf7e3 100%);
    padding: 80px 20px;
    overflow: hidden;
    position: relative;
}

.collection-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 153, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Adapted for Owl Carousel */
.collection-showcase-section .owl-carousel {
    max-width: 100%;
    margin: 40px auto 0;
    padding: 0 0 40px !important;
    position: relative;
    z-index: 1;
}

.collection-showcase-section .owl-stage {
    display: flex;
    align-items: center;
}

/* Collection Card - General Styles */
.collection-card-showcase {
    position: relative;
    width: 100%;
    height: 400px;
    /* Adjusted height */
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    margin: 10px 0;
    /* Space for shadow */
}

/* Hover effects for cards */
.collection-card-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 153, 0, 0.15);
}

.collection-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card-showcase:hover .collection-card-image {
    transform: scale(1.05);
}

/* Label Styles */
.collection-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 100%);
    padding: 20px;
    text-align: center;
    z-index: 2;
}

.collection-card-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Owl Carousel Navigation Arrows */
.collection-showcase-section .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    /* Let clicks pass through container */
    z-index: 10;
}

.collection-showcase-section .owl-nav button.owl-prev,
.collection-showcase-section .owl-nav button.owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #ff9900 !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 24px !important;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
    transition: all 0.3s ease;
    pointer-events: auto;
    /* Re-enable clicks */
    opacity: 0.9;
    padding: 0 !important;
    /* Fix padding */
    border: none !important;
}

.collection-showcase-section .owl-nav button.owl-prev:hover,
.collection-showcase-section .owl-nav button.owl-next:hover {
    background-color: #006a71 !important;
    /* Brand Teal */
    transform: scale(1.1);
    opacity: 1;
}

.collection-showcase-section .owl-nav button.owl-prev {
    left: 10px;
    /* Inside container */
}

.collection-showcase-section .owl-nav button.owl-next {
    right: 10px;
    /* Inside container */
}

/* Add arrow icons content if empty */
.collection-showcase-section .owl-nav button.owl-prev span,
.collection-showcase-section .owl-nav button.owl-next span {
    font-family: monospace;
    /* Ensure arrows look like arrows */
    font-weight: bold;
    line-height: 1;
    margin-top: -2px;
}

/* Responsive specific adjustments */
@media (max-width: 768px) {
    .collection-showcase-section .owl-nav button.owl-prev {
        left: 0;
    }

    .collection-showcase-section .owl-nav button.owl-next {
        right: 0;
    }

    .collection-card-showcase {
        height: 320px;
    }
}