/**
 * Frontend Premium CSS: NYM Homepage Templates Plugin
 * Highly-optimized responsive layout configurations with pure CSS mobile-adaptive swiping & animations.
 */

/* ==========================================================================
   1. Base Core Container & Element Utilities
   ========================================================================== */
.nym-home-element-wrap {
    width: 100%;
    margin: 0 0 40px 0;
    padding: 0;
    box-sizing: border-box;
    display: block;
    position: relative;
}

.nym-home-element-wrap *,
.nym-home-element-wrap *::before,
.nym-home-element-wrap *::after {
    box-sizing: border-box;
}

/* Perfect Image Aspect Ratio Protection */
.nym-home-element-wrap img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border: none;
    outline: none;
}

/* ==========================================================================
   2. Hardware Accelerated Interactive Hover Zoom
   ========================================================================== */
.nym-hover-zoom-active img {
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.nym-hover-zoom-active a:hover img,
.nym-hover-zoom-active div:hover > img,
.nym-hover-zoom-active .nym-category-swipe-item:hover img,
.nym-hover-zoom-active .nym-split-banner-column:hover img,
.nym-hover-zoom-active .nym-three-column-swipe-item:hover img,
.nym-hover-zoom-active .nym-collage-grid-item:hover img,
.nym-hover-zoom-active .nym-wide-banner-wrapper:hover img,
.nym-hover-zoom-active .nym-lookbook-grid-item:hover img {
    transform: scale(1.06);
}

/* ==========================================================================
   3. Widget 1: Circular Categories Grid (Mobile Swipe Adaptive)
   ========================================================================== */
.nym-categories-swipe-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    width: 100%;
}

.nym-category-swipe-item {
    flex: 0 0 calc(16.666% - 21px); /* 6 columns on desktop */
    min-width: 120px;
    max-width: 200px;
    text-align: center;
}

.nym-category-card-link {
    display: block;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

.nym-category-circle-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    background: #f7f7f7;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.nym-category-card-link:hover .nym-category-circle-wrapper {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.nym-category-circle-img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.nym-category-card-label {
    display: block;
    margin-top: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2b2b2b;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.nym-category-card-link:hover .nym-category-card-label {
    color: #c99a4c; /* Dynamic premium color accent */
}

/* Mobile responsive swipe mode for categories */
@media (max-width: 768px) {
    .nym-categories-swipe-row {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Hide scrollbar Firefox */
        -ms-overflow-style: none;  /* Hide scrollbar IE */
        padding: 5px 15px 15px 15px;
        margin: 0 -15px;
        gap: 15px;
    }
    
    .nym-categories-swipe-row::-webkit-scrollbar {
        display: none; /* Hide scrollbar Safari/Chrome */
    }
    
    .nym-category-swipe-item {
        flex: 0 0 25%; /* Show exactly 3.5 items on screen to hint scrolling */
        min-width: 80px;
        scroll-snap-align: start;
    }

    .nym-category-card-label {
        font-size: 12px;
        margin-top: 8px;
    }
}

/* ==========================================================================
   4. Widget 2: 2-Column Split Banners
   ========================================================================== */
.nym-split-banners-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.nym-split-banner-column {
    flex: 1 1 calc(50% - 10px);
    overflow: hidden;
}

.nym-split-banner-link {
    display: block;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

.nym-split-banner-card {
    width: 100%;
    overflow: hidden;
    background: #f7f7f7;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.nym-split-banner-picture,
.nym-split-banner-img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .nym-split-banner-column {
        flex: 0 0 100%; /* Vertical stack on mobile */
    }
    .nym-split-banners-row {
        gap: 15px;
    }
}

/* ==========================================================================
   5. Widget 3: 3-Column Occasion Grid (Mobile Swipe Adaptive)
   ========================================================================== */
.nym-three-column-swipe-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.nym-three-column-swipe-item {
    flex: 1 1 calc(33.333% - 14px);
    overflow: hidden;
}

.nym-three-column-link {
    display: block;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

.nym-three-column-card {
    width: 100%;
    aspect-ratio: 3/4; /* Elegant premium portrait aspect ratio */
    overflow: hidden;
    background: #f7f7f7;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.nym-three-column-picture,
.nym-three-column-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile responsive swipe mode for Occasion Grid */
@media (max-width: 768px) {
    .nym-three-column-swipe-row {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 5px 15px 15px 15px;
        margin: 0 -15px;
        gap: 15px;
    }
    
    .nym-three-column-swipe-row::-webkit-scrollbar {
        display: none;
    }
    
    .nym-three-column-swipe-item {
        flex: 0 0 65%; /* Show 1.5 cards on mobile to clearly encourage swiping */
        scroll-snap-align: start;
    }
}

/* ==========================================================================
   6. Widget 4: Multi-Grid Collage (4 Columns / Mobile 2-Columns Grid)
   ========================================================================== */
.nym-collage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.nym-collage-grid-item {
    overflow: hidden;
}

.nym-collage-link {
    display: block;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

.nym-collage-card {
    width: 100%;
    aspect-ratio: 5/7; /* Fine-tuned aspect ratio for fashion products catalog */
    overflow: hidden;
    background: #f7f7f7;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.nym-collage-picture,
.nym-collage-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .nym-collage-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns grid layout on mobile */
        gap: 12px;
        padding: 0 10px;
    }
}

/* ==========================================================================
   7. Widget 5: Wide Single Promo Banner
   ========================================================================== */
.nym-wide-banner-wrapper {
    width: 100%;
    overflow: hidden;
}

.nym-wide-banner-link {
    display: block;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

.nym-wide-banner-card {
    width: 100%;
    overflow: hidden;
    background: #f7f7f7;
}

.nym-wide-banner-picture,
.nym-wide-banner-img {
    display: block;
    width: 100%;
    height: auto;
}

/* ==========================================================================
   8. Widget 6: Lifestyle Showcase Gallery (6 Columns / Mobile 3-Columns)
   ========================================================================== */
.nym-lookbook-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    width: 100%;
}

.nym-lookbook-grid-item {
    overflow: hidden;
}

.nym-lookbook-link {
    display: block;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

.nym-lookbook-card {
    width: 100%;
    aspect-ratio: 1/1; /* Square ratio */
    overflow: hidden;
    background: #f7f7f7;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.nym-lookbook-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .nym-lookbook-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns layout on mobile screens */
        gap: 8px;
        padding: 0 8px;
    }
}

/* ==========================================================================
   9. CSS Visual Entrance Animations (Hardware Accelerated)
   ========================================================================== */
.nym-entrance-fade-in {
    opacity: 0;
    animation: nymAnimFadeIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.nym-entrance-slide-up {
    opacity: 0;
    transform: translateY(35px);
    animation: nymAnimSlideUp 1.1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.nym-entrance-zoom-in {
    opacity: 0;
    transform: scale(1.05);
    animation: nymAnimZoomIn 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes nymAnimFadeIn {
    to {
        opacity: 1;
    }
}

@keyframes nymAnimSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nymAnimZoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================================================
   10. Widget 7: Arched Banners Grid (Premium Arch Tops & Gold Frame)
   ========================================================================== */
.nym-arched-banners-grid {
    display: grid;
    gap: 25px;
    width: 100%;
}

/* Desktop Grid Column Options */
.nym-arched-desktop-cols-1 { grid-template-columns: 1fr; }
.nym-arched-desktop-cols-2 { grid-template-columns: repeat(2, 1fr); }
.nym-arched-desktop-cols-3 { grid-template-columns: repeat(3, 1fr); }
.nym-arched-desktop-cols-4 { grid-template-columns: repeat(4, 1fr); }
.nym-arched-desktop-cols-5 { grid-template-columns: repeat(5, 1fr); }
.nym-arched-desktop-cols-6 { grid-template-columns: repeat(6, 1fr); }

.nym-arched-banner-item {
    width: 100%;
    overflow: hidden;
}

.nym-arched-banner-link {
    display: block;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

.nym-arched-banner-card {
    width: 100%;
    aspect-ratio: 3/4; /* Classic Koskii arched portrait ratio */
    border-radius: 1000px 1000px 0 0; /* Creates an extremely clean, beautiful arch at the top! */
    overflow: hidden;
    position: relative;
    background: #f7f7f7;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s ease;
}

.nym-arched-banner-link:hover .nym-arched-banner-card {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.nym-arched-banner-picture,
.nym-arched-banner-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1000px 1000px 0 0;
}

/* Elegant Playfair Overlay Text style */
.nym-arched-banner-overlay-text,
.nym-collage-overlay-text {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-family: 'Playfair Display', Georgia, Cambria, "Times New Roman", Times, serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    z-index: 2;
    padding: 0 15px;
}

/* Ensure the image container has relative position to hold absolute overlay */
.nym-collage-card {
    position: relative;
}

/* Mobile Configurations for Arched Grid */
@media (max-width: 768px) {
    .nym-arched-banners-grid {
        gap: 15px;
    }
    
    /* 1 Column stack layout on mobile */
    .nym-arched-mobile-1 {
        grid-template-columns: 1fr;
    }
    
    /* 2 Columns grid layout on mobile */
    .nym-arched-mobile-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 10px;
    }
    
    /* Horizontal Swiping style on mobile */
    .nym-arched-mobile-swipe {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 5px 15px 15px 15px;
        margin: 0 -15px;
        gap: 15px;
    }
    
    .nym-arched-mobile-swipe::-webkit-scrollbar {
        display: none;
    }
    
    .nym-arched-mobile-swipe .nym-arched-banner-item {
        flex: 0 0 65%; /* Show 1.5 cards on mobile touch screen */
        scroll-snap-align: start;
    }
    
    .nym-arched-banner-overlay-text,
    .nym-collage-overlay-text {
        font-size: 16px;
        bottom: 15px;
    }
}

/* ==========================================================================
   11. Wide Promo Banner Internal Border Frame (Screenshot 4 style)
   ========================================================================== */
.nym-wide-banner-card {
    position: relative;
}

.nym-wide-banner-frame {
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 15px;
    right: 15px;
    border: 1px solid #d4af37;
    outline: 1px solid #d4af37;
    outline-offset: -4px; /* Double gold border effect */
    pointer-events: none;
    z-index: 2;
}

@media (max-width: 768px) {
    .nym-wide-banner-frame {
        top: 8px;
        bottom: 8px;
        left: 8px;
        right: 8px;
        outline-offset: -3px;
    }
}

/* ==========================================================================
   12. Standardized High-Fidelity Responsive Grid & Swiping Columns
   ========================================================================== */
.nym-grid-container {
    display: grid;
    gap: 20px;
    width: 100%;
}

/* Desktop Grid Columns selectors */
.nym-cols-lg-1 { grid-template-columns: 1fr; }
.nym-cols-lg-2 { grid-template-columns: repeat(2, 1fr); }
.nym-cols-lg-3 { grid-template-columns: repeat(3, 1fr); }
.nym-cols-lg-4 { grid-template-columns: repeat(4, 1fr); }
.nym-cols-lg-5 { grid-template-columns: repeat(5, 1fr); }
.nym-cols-lg-6 { grid-template-columns: repeat(6, 1fr); }
.nym-cols-lg-7 { grid-template-columns: repeat(7, 1fr); }
.nym-cols-lg-8 { grid-template-columns: repeat(8, 1fr); }

@media (max-width: 768px) {
    .nym-grid-container {
        gap: 12px;
    }
    
    /* Mobile Grid Columns selectors */
    .nym-cols-xs-1 { grid-template-columns: 1fr !important; }
    .nym-cols-xs-2 { grid-template-columns: repeat(2, 1fr) !important; }
    .nym-cols-xs-3 { grid-template-columns: repeat(3, 1fr) !important; }
    .nym-cols-xs-4 { grid-template-columns: repeat(4, 1fr) !important; }
    
    /* Premium Mobile Swiping Row alignment flow with zero gutter cutting */
    .nym-cols-xs-swipe {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        padding: 5px 20px 20px 20px !important;
        margin: 0 -20px !important;
        gap: 15px !important;
        width: calc(100% + 40px) !important;
    }
    
    .nym-cols-xs-swipe::-webkit-scrollbar {
        display: none !important;
    }
    
    .nym-cols-xs-swipe > * {
        flex: 0 0 65% !important; /* Elegant vertical banner swiping width */
        max-width: 80% !important;
        scroll-snap-align: start !important;
    }
    
    /* Specific swiping elements adjustments */
    .nym-circular-categories-container .nym-cols-xs-swipe > * {
        flex: 0 0 25% !important; /* Circle categories swipe size (4 on screen) */
    }
    
    .nym-lookbook-container .nym-cols-xs-swipe > * {
        flex: 0 0 35% !important; /* Lookbook squares swipe size (3 on screen) */
    }
    
    .nym-three-column-container .nym-cols-xs-swipe > * {
        flex: 0 0 65% !important; /* Portrait cards swipe size */
    }
}

/* ==========================================================================
   13. Premium Swiper Carousel Navigation Styling
   ========================================================================== */
.nym-home-carousel-container.swiper {
    position: relative;
    padding-bottom: 30px; /* Leave space for pagination or bottom spacing */
}

/* Base navigation button styles */
.nym-home-carousel-container .nym-carousel-btn {
    width: 46px;
    height: 46px;
    background: #ffffff !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    color: #c99a4c !important; /* Gold premium color */
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 154, 76, 0.15) !important;
}

/* Arrow indicator icons using default Swiper typography */
.nym-home-carousel-container .nym-carousel-btn::after {
    font-size: 16px !important;
    font-weight: bold !important;
}

/* Hover state with premium scaling and gold color transition */
.nym-home-carousel-container .nym-carousel-btn:hover {
    background: #c99a4c !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(201, 154, 76, 0.35) !important;
    border-color: #c99a4c !important;
    transform: scale(1.08);
}

.nym-home-carousel-container .swiper-button-prev {
    left: 15px !important;
}

.nym-home-carousel-container .swiper-button-next {
    right: 15px !important;
}

/* Mobile Responsive Optimization for Slide Navigation Controls */
@media (max-width: 768px) {
    .nym-home-carousel-container {
        padding-bottom: 20px;
    }
    
    .nym-home-carousel-container .nym-carousel-btn {
        width: 34px !important;
        height: 34px !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
    }
    
    .nym-home-carousel-container .nym-carousel-btn::after {
        font-size: 12px !important;
    }
    
    .nym-home-carousel-container .swiper-button-prev {
        left: 8px !important;
    }
    
    .nym-home-carousel-container .swiper-button-next {
        right: 8px !important;
    }
}

/* ==========================================================================
   14. Premium Product Grid & Slider Styles (Koskii Aesthetic)
   ========================================================================== */
.nym-product-widget-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #2b2b2b;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 35px 0;
    position: relative;
}

.nym-product-widget-heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: #c99a4c;
    margin: 12px auto 0 auto;
}

/* Product Card Wrapper */
.nym-product-grid-card {
    background: #ffffff;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    display: block;
}

.nym-product-card-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Elegant Portrait Aspect Ratio 3:4 Image Wrapper */
.nym-product-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f7f7f7;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.nym-product-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.nym-product-main-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
}

.nym-product-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    opacity: 0;
    z-index: 1;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
}

/* Alternate Hover Image Fade In effect */
.nym-product-image-wrap:hover .nym-product-hover-img {
    opacity: 1;
}

.nym-hover-zoom-active .nym-product-image-wrap:hover .nym-product-main-img,
.nym-hover-zoom-active .nym-product-image-wrap:hover .nym-product-hover-img {
    transform: scale(1.06);
}

/* Floating Wishlist Heart Icon Style */
.nym-product-wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    cursor: pointer;
    z-index: 4;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.35));
    transition: transform 0.3s ease, color 0.3s ease;
}

.nym-product-wishlist-btn:hover {
    transform: scale(1.18);
    color: #ff3366; /* Elegant red scale on wishlist add */
}

.nym-wishlist-icon {
    width: 24px;
    height: 24px;
    display: block;
}

/* Golden Ribbon Bestseller Tag Overlay */
.nym-product-badge-bestseller {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, #e6c073 0%, #c99a4c 100%);
    color: #ffffff;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 5px 12px;
    border-radius: 0 4px 0 0;
    text-transform: uppercase;
    z-index: 3;
    box-shadow: 2px -2px 8px rgba(0, 0, 0, 0.1);
}

/* Glassmorphism Rating star Badge Overlay */
.nym-product-badge-rating {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    color: #2b2b2b;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nym-star-symbol {
    color: #4caf50; /* Emerald green star indicator */
    font-size: 12px;
}

/* Crimson Red Sale Offer Overlay Tag */
.nym-product-badge-promo {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #cc2a36;
    color: #ffffff;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Product Info Container below image */
.nym-product-content {
    padding: 15px 0 5px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #ffffff;
    box-sizing: border-box;
}

.nym-product-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.nym-product-title-link {
    text-decoration: none;
    flex: 1;
    display: block;
    min-width: 0;
}

.nym-product-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #4d4d4d;
    margin: 0;
    padding: 0;
    text-align: left;
    line-height: 1.4;
    text-transform: capitalize;
    /* Limit titles to exactly 2 lines with elegant ellipsis */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.nym-product-title-link:hover .nym-product-title {
    color: #c99a4c;
}

/* Action cart button */
.nym-product-cart-btn {
    width: 36px;
    height: 36px;
    background: #cc2a36 !important; /* Elegant Crimson Red */
    color: #ffffff !important;
    border-radius: 6px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(204, 42, 54, 0.18);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    flex-shrink: 0;
}

.nym-product-cart-btn:hover {
    background: #b5202b !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(204, 42, 54, 0.32);
}

.nym-cart-bag-icon {
    width: 18px;
    height: 18px;
    display: block;
}

/* Pricing layout block */
.nym-product-prices {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1;
    width: 100%;
}

.nym-product-price-original {
    font-size: 13px;
    text-decoration: line-through;
    color: #999999;
    font-weight: 400;
}

.nym-product-price-active {
    font-size: 15px;
    font-weight: 700;
    color: #2b2b2b;
}

.nym-product-discount {
    font-size: 12px;
    font-weight: 700;
    color: #cc2a36; /* Bright Red discount indicator */
}

/* ==========================================================================
   15. Products Grid & Slider Mobile Adaptability
   ========================================================================== */
@media (max-width: 768px) {
    .nym-product-widget-heading {
        font-size: 18px;
        margin-bottom: 22px;
    }
    
    .nym-product-content {
        padding: 10px 0 5px 0;
        gap: 6px;
    }
    
    .nym-product-title {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .nym-product-cart-btn {
        width: 30px !important;
        height: 30px !important;
        border-radius: 5px !important;
    }
    
    .nym-cart-bag-icon {
        width: 14px;
        height: 14px;
    }
    
    .nym-product-price-original {
        font-size: 11px;
    }
    
    .nym-product-price-active {
        font-size: 13px;
    }
    
    .nym-product-discount {
        font-size: 10px;
    }
    
    .nym-product-wishlist-btn {
        top: 10px;
        right: 10px;
    }
    
    .nym-product-wishlist-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .nym-product-badge-bestseller {
        font-size: 8px;
        padding: 4px 8px;
    }
    
    .nym-product-badge-rating {
        font-size: 9px;
        padding: 2px 6px;
        bottom: 8px;
        right: 8px;
    }
}

/* ==========================================================================
   16. Premium Watch & Buy Video Stories Styles (Madras Sarees style)
   ========================================================================== */
.nym-watch-buy-container {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    display: block;
}

.nym-story-card {
    background: transparent;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.nym-story-card-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Vertical Video Reel aspect ratio 9:16 container */
.nym-story-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
    background: #000000;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.nym-story-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.6s ease;
}

/* Play/Pause Overlay indicator overlay */
.nym-story-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Show play symbol when hovered or when video is explicitly paused */
.nym-story-video-wrap:hover .nym-story-video-overlay,
.nym-story-video.paused + .nym-story-video-overlay {
    opacity: 1;
}

.nym-story-play-icon {
    color: #ffffff;
    width: 44px;
    height: 44px;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.nym-story-video-wrap:hover .nym-story-play-icon {
    transform: scale(1.1);
}

/* Custom Instagram Reel Preview Card styling (Zero black sidebars & loads instantly) */
.nym-story-instagram-preview {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #000000;
}

.nym-story-instagram-poster {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.nym-story-instagram-preview:hover .nym-story-instagram-poster {
    transform: scale(1.06);
}

/* Floating Glassmorphic Instagram Badge Icon in top-right */
.nym-instagram-badge-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #ffffff !important;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, background 0.3s ease;
}

.nym-story-instagram-preview:hover .nym-instagram-badge-icon {
    transform: scale(1.1);
    background: rgba(225, 48, 108, 0.95) !important; /* Instagram Brand Pink color on hover! */
    border-color: rgba(225, 48, 108, 0.95);
}

/* Overlay play button for Instagram preview */
.nym-instagram-play-overlay {
    opacity: 0.85 !important;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.nym-story-instagram-preview:hover .nym-instagram-play-overlay {
    opacity: 1 !important;
    background: rgba(0, 0, 0, 0.25);
}

/* Mini Shopping Block details card below video */
.nym-story-mini-product {
    display: block;
    padding: 12px;
    background: #faf7f2; /* Highly elegant premium cream background */
    border-radius: 0 0 6px 6px;
    text-decoration: none;
    box-sizing: border-box;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid #f2ece0;
    border-top: none;
    transition: all 0.3s ease;
}

.nym-story-mini-product:hover {
    background: #f5eedf;
    transform: translateY(1.5px);
}

.nym-story-product-flex {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.nym-story-product-img-wrap {
    width: 44px;
    height: 55px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid #f0e6d5;
}

.nym-story-product-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

.nym-story-product-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nym-story-product-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #3c3c3c;
    margin: 0;
    padding: 0;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Limit title strictly to 1 single line with ellipsis */
    line-height: 1.2;
    transition: color 0.3s ease;
}

.nym-story-product-pricing {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1;
}

.nym-story-price-original {
    font-size: 11px;
    text-decoration: line-through;
    color: #999999;
    font-weight: 400;
}

.nym-story-price-active {
    font-size: 12px;
    font-weight: 700;
    color: #2b2b2b;
}

.nym-story-discount {
    font-size: 10px;
    font-weight: 700;
    color: #cc2a36; /* Dynamic red discount badge */
}

.nym-story-instagram-iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    display: block;
    background: #faf7f2;
}

/* Premium Lightbox Modal for website playback */
.nym-story-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.nym-story-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85); /* Darker elegant slate overlay background */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.nym-story-modal-content {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 400px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border: 1px solid rgba(219, 39, 119, 0.15); /* Soft pink border highlight */
    transform: scale(0.9);
    opacity: 0;
    animation: nymStoryModalZoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes nymStoryModalZoomIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.nym-story-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    line-height: 1;
    transition: background 0.25s ease, transform 0.25s ease;
}

.nym-story-modal-close:hover {
    background: #db2777; /* Rose on hover */
    transform: scale(1.08);
}

.nym-story-modal-body {
    width: 100%;
    aspect-ratio: 9/16;
    background: #000000;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal video/iframe covers entire vertical layout */
.nym-modal-media {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border: none !important;
    display: block;
}

.nym-story-modal-footer {
    padding: 15px;
    background: #faf7f2; /* Cream background matching mini product details */
    border-top: 1px solid #f2ece0;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.nym-story-modal-instagram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); /* Instagrm official colorful gradient */
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nym-story-modal-instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.35);
}

.nym-story-trigger {
    cursor: pointer !important;
}

/* ==========================================================================
   17. Watch & Buy Mobile Responsiveness Adaptations
   ========================================================================== */
@media (max-width: 768px) {
    .nym-story-mini-product {
        padding: 8px;
    }
    
    .nym-story-product-flex {
        gap: 8px;
    }
    
    .nym-story-product-img-wrap {
        width: 32px;
        height: 40px;
    }
    
    .nym-story-product-title {
        font-size: 10px;
    }
    
    .nym-story-price-original {
        font-size: 9px;
    }
    
    .nym-story-price-active {
        font-size: 10px;
    }
    
    .nym-story-discount {
        font-size: 8px;
    }
    
    .nym-story-play-icon {
        width: 32px;
        height: 32px;
    }
}

/* ==========================================================================
   18. Widget: Boutique Premium Elegant Card Footer
   ========================================================================== */
/* Force parent Elementor widget wrappers to be 100% full-width to prevent right margin space */
.elementor-widget-nym_boutique_footer,
.elementor-widget-nym_boutique_footer .elementor-widget-container {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
}

.nym-boutique-footer-wrap {
    position: relative;
    width: 100% !important;
    display: block !important;
    margin: 50px auto 0 auto !important;
    padding: 20px !important;
    background: transparent;
    overflow: hidden;
    box-sizing: border-box;
}

/* Rounded Card Panel Design with Boutique rose glow shadow - Centered Responsive Width */
.nym-premium-footer-card {
    position: relative;
    z-index: 5;
    background: #ffffff;
    border: 1px solid rgba(219, 39, 119, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(219, 39, 119, 0.04), 0 4px 20px rgba(0, 0, 0, 0.02);
    padding: 50px 45px;
    box-sizing: border-box;
    width: 95% !important;
    max-width: 1900px !important;
    margin: 0 auto !important;
}

/* Floral corner decorations & custom uploads handling */
.nym-footer-floral-decor {
    position: absolute;
    z-index: 10;
    pointer-events: none;
    opacity: 0.85;
}

.nym-floral-img-upload {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    display: block;
}

.nym-floral-top-right {
    top: -20px;
    right: -20px;
    width: 280px;
    height: 280px;
}

.nym-floral-bottom-left {
    bottom: -20px;
    left: -20px;
    width: 220px;
    height: 220px;
}

/* Grid layout columns */
.nym-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1fr 1.1fr;
    gap: 40px;
    width: 100%;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 40px;
}

.nym-footer-col {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* Brand Column styling */
.nym-footer-brand-col {
    padding-right: 20px;
}

.nym-footer-brand-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.nym-footer-logo-img img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.nym-footer-logo-svg {
    width: 70px;
    height: 105px;
    display: block;
}

.nym-footer-brand-names {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nym-brand-cursive {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 32px;
    font-weight: 700;
    color: #db2777; /* Premium Boutique Pink */
    letter-spacing: -0.5px;
}

.nym-brand-sub {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #f59e0b; /* Gold Accent */
    letter-spacing: 3px;
    margin-top: 2px;
}

.nym-brand-divider-accent {
    margin-top: 6px;
    color: #f59e0b;
    font-size: 10px;
}

.nym-footer-brand-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

/* Trust Circle row */
.nym-footer-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: auto;
}

.nym-footer-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 calc(50% - 8px);
}

.nym-trust-badge-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 13px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.02);
}

.nym-footer-trust-badge:hover .nym-trust-badge-circle {
    transform: scale(1.12);
}

.nym-trust-badge-label {
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    color: #555555;
    line-height: 1.3;
}

/* Headings with pink divider lines */
.nym-footer-col-heading {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: 1px;
    margin: 0 0 25px 0;
    padding-bottom: 8px;
    position: relative;
    display: inline-block;
}

.nym-footer-col-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: #db2777;
    border-radius: 1px;
}

/* Links lists styling */
.nym-footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nym-footer-link-li {
    margin: 0;
    padding: 0;
}

.nym-footer-link-a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.nym-footer-link-a:hover {
    color: #db2777;
    transform: translateX(3px);
}

.nym-link-arrow {
    color: #db2777;
    font-size: 14px;
    font-weight: 700;
    margin-right: 2px;
    transition: transform 0.25s ease;
}

.nym-footer-link-a:hover .nym-link-arrow {
    transform: translateX(2px);
}

/* Categories inline circle icons styling */
.nym-cat-badge-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 12px;
    transition: transform 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.02);
}

.nym-footer-link-a:hover .nym-cat-badge-circle {
    transform: rotate(15deg) scale(1.1);
}

/* Contact information list styling */
.nym-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nym-footer-contact-li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.nym-contact-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 13px;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.02);
}

.nym-footer-contact-text {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: #4b5563;
    line-height: 1.5;
}

/* Sub-Footer Ribbon Panel styling */
.nym-footer-sub-ribbon {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    gap: 25px;
}

.nym-ribbon-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-sizing: border-box;
}

.nym-ribbon-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: 2px;
}

/* Social icons white circular mockup backgrounds */
.nym-social-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nym-social-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff !important;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease, color 0.25s ease;
}

/* Branded default colors matching mockup */
.nym-social-facebook { color: #1877f2 !important; }
.nym-social-instagram { color: #e1306c !important; }
.nym-social-pinterest { color: #bd081c !important; }
.nym-social-youtube { color: #ff0000 !important; }
.nym-social-whatsapp { color: #25d366 !important; }

/* Branded Hover Glow matching mockup */
.nym-social-facebook:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 15px rgba(24, 119, 242, 0.3) !important;
}
.nym-social-instagram:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 15px rgba(225, 48, 108, 0.3) !important;
}
.nym-social-pinterest:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 15px rgba(189, 8, 28, 0.3) !important;
}
.nym-social-youtube:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 15px rgba(255, 0, 0, 0.3) !important;
}
.nym-social-whatsapp:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3) !important;
}

/* Calligraphy typography centered */
.nym-calligraphy-ribbon {
    align-items: center;
    text-align: center;
}

.nym-calligraphy-prefix {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: #db2777;
    letter-spacing: 2px;
}

.nym-calligraphy-script {
    font-family: 'Great Vibes', 'Playfair Display', cursive;
    font-size: 26px;
    color: #db2777;
    line-height: 1;
    margin-top: -2px;
}

/* Heart pulsing micro-animation */
.nym-pulsing-heart {
    color: #db2777;
    animation: nymPulse 1.4s infinite ease-in-out;
    display: inline-block;
}

@keyframes nymPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Payment badging boxes styling - White cards with soft borders */
.nym-payments-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nym-payment-card-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff !important;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    width: 50px;
    height: 32px;
    overflow: hidden;
    padding: 3px 6px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.nym-payment-card-box:hover {
    transform: translateY(-2px) scale(1.06);
    border-color: #d1d5db;
}

.nym-payment-card-box svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Security badges - 3-Column Vertical Flex matching Mockup */
.nym-security-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
}

.nym-security-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.nym-security-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 13px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.nym-security-badge-item:hover .nym-security-icon-circle {
    transform: scale(1.1);
}

.nym-security-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #6b7280;
}

/* Copyright line bottom footer spacing - Flex horizontal line divider */
.nym-footer-outer-copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 35px 0 0 0;
    width: 100%;
    box-sizing: border-box;
}

.nym-copyright-divider-line {
    flex: 1;
    height: 1px;
    background: #fbcfe8; /* Elegant pink divider line */
    opacity: 0.7;
}

.nym-copyright-content-center {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nym-copyright-text-line {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nym-copyright-flower-icon {
    color: #db2777;
    font-size: 13px;
    margin-left: 2px;
}

/* ==========================================================================
   19. Responsive Layout Adaptations for Laptop, Tablet, & Mobile
   ========================================================================== */
/* Laptop Sizing View (1024px - 1439px) */
@media (max-width: 1439px) and (min-width: 1024px) {
    .nym-premium-footer-card {
        padding: 40px 35px !important; /* Top & Bottom padding matching 32px-50px */
        width: 95% !important;
    }
}

/* Tablet Sizing View (768px - 1023px) */
@media (max-width: 1023px) {
    .nym-premium-footer-card {
        padding: 30px 25px !important; /* Top & Bottom padding matching 24px-40px */
        width: 95% !important;
    }
    
    .nym-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .nym-floral-top-right {
        width: 220px;
        height: 220px;
    }
    
    .nym-floral-bottom-left {
        width: 160px;
        height: 160px;
    }
}

/* Mobile Sizing View (320px - 767px) */
@media (max-width: 768px) {
    .nym-premium-footer-card {
        padding: 24px 15px !important; /* Top & Bottom padding matching 20px-32px */
        border-radius: 16px;
        width: 92% !important;
    }
    
    .nym-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 30px;
    }
    
    .nym-footer-brand-col {
        padding-right: 0;
    }
    
    .nym-footer-trust-row {
        gap: 10px;
    }
    
    .nym-footer-trust-badge {
        flex: 0 0 100%;
    }
    
    .nym-footer-sub-ribbon {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-top: 25px;
    }
    
    .nym-calligraphy-ribbon {
        align-items: flex-start;
        text-align: left;
    }
    
    .nym-floral-top-right {
        width: 150px;
        height: 150px;
    }
    
    .nym-floral-bottom-left {
        width: 110px;
        height: 110px;
    }
}




