/* --- FRONTEND PREMIUM CARD STYLE --- */

.awp-flickr-gallery-container {
    margin-bottom: 30px !important;
}

.awp-flickr-gallery-container .single-flickr-item {
    margin-bottom: 30px !important;
    padding: 0 10px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Inner Card Wrapper */
.awp-flickr-gallery-container .awl-hm-card-inner {
    position: relative !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #fff !important;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    transform: translateY(0);
}

/* Hover Lift */
.awp-flickr-gallery-container .single-flickr-item:hover .awl-hm-card-inner {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.2) !important;
}

/* Image Force Full Width */
.awp-flickr-gallery-container img,
.awp-flickr-gallery-container .img-thumbnail {
    width: 100% !important;
    min-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    transition: transform 0.6s ease !important;
}

/* Image Zoom */
.awp-flickr-gallery-container .single-flickr-item:hover img {
    transform: scale(1.15) !important;
}

/* Overlay */
.awl-hm-overlay {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%) !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding: 20px !important;
    z-index: 10 !important;
    pointer-events: none !important;
}

.awp-flickr-gallery-container .single-flickr-item:hover .awl-hm-overlay {
    opacity: 1 !important;
}

/* Content Styling */
.awl-hm-content {
    transform: translateY(20px) !important;
    transition: transform 0.4s ease !important;
}

.awp-flickr-gallery-container .single-flickr-item:hover .awl-hm-content {
    transform: translateY(0) !important;
}

.awl-hm-title {
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin: 0 0 5px 0 !important;
    line-height: 1.3 !important;
    display: block !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.awl-hm-icon {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.awl-hm-plus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.awl-hm-plus::before {
    content: '+';
    color: #fff;
    font-size: 28px;
    font-weight: 300;
}

.awp-flickr-gallery-container .single-flickr-item:hover .awl-hm-plus {
    transform: translate(-50%, -50%) scale(1);
}
