.product-card {
    transition: all 0.3s ease;
    border-radius: 1.25rem;
    cursor: pointer;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
    }

.img-container {
    background-color: #f8f9fa;
    border-radius: 1rem;
    padding: 20px;
    margin-bottom: 15px;
}

.price-text {
    color: #6d3c8e;
    font-weight: 800;
}

.fw-black {
    font-weight: 900;
}

}

.btn-purple:hover {
    background-color: #373274;
    transform: translateY(-2px);
}

.dip1-wrapper {
    margin: 0px 0;
}

.dip1-content {
    background: #6d3c8e;
    height: 220px;
    border-radius: 0px;
    clip-path: polygon(20% 0%, 80% 0%, 60% 100%, 40% 100%);
}
/* Mobile Adjustment */
@media (max-width: 768px) {
    .dip1-content {
        width: 100vw;
        margin-left: 0;
        margin-right: 0;
        clip-path: polygon(0% 0%, 100% 0%, 70% 100%, 30% 100%);
        height: 280px;
    }
}

.dip2-wrapper {
    margin: 0;
    background: #6d3c8e;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.dip2-content {
    background: #ffffff;
    height: 250px;
    width: 100%;
    clip-path: polygon(20% 0%, 80% 0%, 60% 100%, 40% 100%);
    border-radius: 0px;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .dip2-content {
        clip-path: polygon(0% 0%, 100% 0%, 70% 100%, 30% 100%);
        height: auto;
        padding: 40px 0;
    }

        .dip2-content div {
            max-width: 90% !important; /* Allow text to be wider on mobile */
        }
}

.dip3-wrapper {
    margin: 0;
    background: #6d3c8e;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.dip3-content {
    background: #f8f9fa;
    height: 200px;
    width: 100%;
    clip-path: polygon(20% 0%, 80% 0%, 60% 100%, 40% 100%);
    border-radius: 0px;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .dip3-content {
        clip-path: polygon(0% 0%, 100% 0%, 70% 100%, 30% 100%);
        height: auto;
        padding: 40px 0;
    }

        .dip3-content div {
            max-width: 90% !important; /* Allow text to be wider on mobile */
        }
}
hero-container-relative {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.blob-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    z-index: -1;
    opacity: 1;
}

/* Deep Purple Main Blob */
.blob-1 {
    top: 15%;
    left: 50%;
    width: 480px;
    height: 480px;
    background-color: #6d3c8e;
    animation: floatingBlobOne 7s ease-in-out infinite alternate;
}

/* Light Accent Contrast Blob */
.blob-2 {
    bottom: 15%;
    right: 10%;
    width: 240px;
    height: 240px;
    background-color: #6d3c8e;
    animation: floatingBlobTwo 9s ease-in-out infinite alternate;
}

/* Organic Smooth Float Paths */
@keyframes floatingBlobOne {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    100% {
        transform: translate(25px, -20px) scale(1.1);
    }
}

@keyframes floatingBlobTwo {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    100% {
        transform: translate(-20px, 25px) scale(1.05);
    }
}

.btn-check:checked + .btn-outline-secondary {
    border: 3px solid #93CAED !important;
    box-shadow: 0 0 10px 2px rgba(147, 202, 237, 0.6), 0 0 14px 4px rgba(109, 60, 142, 0.4) !important;
}

.btn-check:checked + .btn-outline-dark {
    border: 3px solid #93CAED !important;
    box-shadow: 0 0 10px 2px rgba(147, 202, 237, 0.6), 0 0 14px 4px rgba(109, 60, 142, 0.4) !important;
}

.micro-carousel-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

    .micro-carousel-wrapper::-webkit-scrollbar {
        display: none;
    }

/* Horizontal Flex Grid Engine */
.micro-carousel-grid {
    display: flex;
    gap: 20px; /* Space match layout */
    padding: 15px 5px;
}

    /* Sizing logic inheriting big style rules but locking item widths */
    .micro-carousel-grid .micro-card {
        flex: 0 0 calc((100% - (20px * 4)) / 5);
        min-width: 200px;
        cursor: default;
    }

    /* Sizing modification for inner micro img-containers */
    .micro-carousel-grid .micro-img-container {
        height: 110px;
        padding: 10px;
        margin-bottom: 12px;
    }

/* Responsive breakpoint handling loops */
@media (max-width: 1200px) {
    .micro-carousel-grid .micro-card {
        flex: 0 0 calc((100% - (20px * 3)) / 4);
    }
}

@media (max-width: 992px) {
    .micro-carousel-grid .micro-card {
        flex: 0 0 calc((100% - (20px * 2)) / 3);
    }
}

@media (max-width: 768px) {
    .micro-carousel-grid .micro-card {
        flex: 0 0 calc((100% - (20px * 1)) / 2);
    }
}

@media (max-width: 520px) {
    .micro-carousel-grid .micro-card {
        flex: 0 0 82%;
    }
}

/* Hero & Wrapper Styling */
.hero-bg-layer {
    background: linear-gradient(to bottom, transparent, #6d3c8e), url('https://www.nuepos.com/assets/images/background/bundles hero small@1.25x.webp') !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
    background-size: 100% 100%, 50% !important;
    background-color: #eeece7 !important;
    max-height: 100vh;
    min-height: 70vh;
    height: 90% !important;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-bg-layer {
        background-position: right !important;
        min-height: 500px;
        background-repeat: no-repeat;
    }
}

.hanging-image {
    max-width: 85%;
    height: auto;
    margin-top: -120px;
    position: relative;
    z-index: 5;
}

.spec-list {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 0.9rem;
    color: #444;
}

    .spec-list li {
        margin-bottom: 6px;
    }
/* Container for the specific effect */
.custom-hover-card {
    position: relative;
    width: 300px;
    height: 600px;
}

    /* Base Slide Styles */
    .custom-hover-card .slide {
        width: 300px;
        height: 350px;
        transition: 0.5s ease-in-out;
    }

        /* Slide 1 (The Icon) */
        .custom-hover-card .slide.slide1 {
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2;
            background: #6d3c8e;
            transform: translateY(200px); /* Pushed down to middle initially */
        }

        /* Slide 2 (The Info) */
        .custom-hover-card .slide.slide2 {
            border-bottom-left-radius: 15px;
            border-bottom-right-radius: 15px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            background: #fff;
            box-sizing: border-box;
            transition: 0.5s ease-in-out;
            transform: translateY(-150px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

    /* Hover States - The "Split" action */
    .custom-hover-card:hover .slide.slide1 {
        transform: translateY(0);
        background: #16133d;
    }

    .custom-hover-card:hover .slide.slide2 {
        transform: translateY(0);
    }

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.custom-hover-card .slide.slide2 .content h3,
.custom-hover-card .slide.slide2 .content p {
    text-align: center;
    margin-bottom: 5px;
}

.text-shadow {
    /* offset-x | offset-y | blur-radius | color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.text-shadow {
    /* offset-x | offset-y | blur-radius | color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.btn-purple:hover {
    background-color: #373274;
    transform: translateY(-2px);
}
/* Container for the specific effect */
.custom-hover-card {
    position: relative;
    width: 300px;
    height: 600px;
}

    /* Base Slide Styles */
    .custom-hover-card .slide {
        width: 300px;
        height: 350px;
        transition: 0.5s ease-in-out;
    }

        /* Slide 1 (The Icon) */
        .custom-hover-card .slide.slide1 {
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2;
            background: #6d3c8e;
            transform: translateY(200px); /* Pushed down to middle initially */
        }

        /* Slide 2 (The Info) */
        .custom-hover-card .slide.slide2 {
            border-bottom-left-radius: 15px;
            border-bottom-right-radius: 15px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            background: #fff;
            box-sizing: border-box;
            transition: 0.5s ease-in-out;
            transform: translateY(-150px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

    /* Hover States - The "Split" action */
    .custom-hover-card:hover .slide.slide1 {
        transform: translateY(0);
        background: #16133d;
    }

    .custom-hover-card:hover .slide.slide2 {
        transform: translateY(0);
    }

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.custom-hover-card .slide.slide2 .content h3,
.custom-hover-card .slide.slide2 .content p {
    text-align: center;
    margin-bottom: 5px;
}
