@font-face {
    font-family: 'Bison Bold';
    src: url('./fonts/Bison-Bold(PersonalUse).ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}


@font-face {
    font-family: 'EuropaGroteskBold';
    src: url('fonts/europa-grotesk-sh-bold.otf') format('opentype');
    /* For WOFF2 or WOFF files, use the appropriate format below:
    src: url('fonts/europa-grotesk-sh-bold.woff2') format('woff2'),
         url('fonts/europa-grotesk-sh-bold.woff') format('woff');
    */
 
}


body {
    font-family: 'Montserrat', 'Arial', sans-serif;

    -webkit-font-smoothing: antialiased; /* For Webkit browsers */
    -moz-osx-font-smoothing: grayscale; /* For Firefox */
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: black;
    overflow-x: hidden;
}









header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    z-index: 1000;
    box-sizing: border-box;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out, height 0.5s ease-in-out;
}











header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
    opacity: 0;
}

header.scrolled::before {
    opacity: 1;
}

header:hover::before {
    opacity: 1;
}


.hover-paragraph {
    text-align: center;
    
    font-size: 1.3rem; 
    color: black; 
    font-family: 'Anonymous Pro', sans-serif;
    font-weight: 300;
    width: 55%; 
    position: relative; 
}


.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
    transition: background-color 0.3s ease-in-out;
}

.menu-icon:hover span {
    background-color: #fec643;
}

.logo {
    margin-left: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@font-face {
    font-family: 'Bison Bold';
    src: url('./fonts/Bison-Bold(PersonalUse).ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}


@font-face {
    font-family: 'EuropaGroteskBold';
    src: url('fonts/europa-grotesk-sh-bold.otf') format('opentype');
    /* For WOFF2 or WOFF files, use the appropriate format below:
    src: url('fonts/europa-grotesk-sh-bold.woff2') format('woff2'),
         url('fonts/europa-grotesk-sh-bold.woff') format('woff');
    */
 
}
/* Global Box Sizing */
*, *::before, *::after {
    box-sizing: border-box;
}


body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: black;
    overflow-x: hidden;
}




/* Custom text selection styling */
::selection {
    background-color:  #fec643; /* Background color of selection */
    color: black;           /* Text color of selection */
}

/* For Firefox (optional, same styling) */
::-moz-selection {
    background-color: #fec643;
    color: black;
}







header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    z-index: 1000;
    box-sizing: border-box;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out, height 0.5s ease-in-out;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
    opacity: 0;
}

header.scrolled::before {
    opacity: 1;
}

header:hover::before {
    opacity: 1;
}


.hover-paragraph {
    text-align: center;
    
    font-size: 1.3rem; 
    color: black; 
    font-family: 'Anonymous Pro', sans-serif;
    font-weight: 300;
    width: 55%; 
    position: relative; 
}


.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
    transition: background-color 0.3s ease-in-out;
}

.menu-icon:hover span {
    background-color: #fec643;
}

.logo {
    margin-left: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icons {
    display: flex;
    align-items: center;
}

.header-icons .icon {
    color: white;
    margin-left: 18px;
    font-size: 24px;
    padding: 5px;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.header-icons .icon:hover {
    color: #fec643;
}

.header-icons .icon i {
    color: inherit;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 1);
}

.header-icons .icon:hover i {
    text-shadow: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: black;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    z-index: 999;
}

.dropdown-menu.active {
    max-height: 1600px; 
}

.dropdown-content {
    margin-top: 100px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-menu-container {
    width: 100%;
    max-width: 500px;
    align-self: flex-start;
    margin-left: 20px;
    margin-top: -40px;
}

.dropdown-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.dropdown-menu-list li {
    padding: 0px 0px;
}

.dropdown-menu-list li a {
    color: white;
    text-decoration: none;
    font-size: 25px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    display: block;
    transition: background 0s, color 0.1s;
    padding: 5px 0px;
    border-radius: 5px;
    text-align: left;
}

.dropdown-menu-list li a:hover {
    color: #fec643;
    border-radius: 5px;
}

.dropdown-images {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    margin-top: -150px;
    flex-wrap: wrap;
    align-self: end;
    padding-right: 40px;
}

.image-container {
    position: relative;
}

.image-text {
    position: absolute;
    bottom: 30px;
    left: 20px;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 30px;
    font-weight: 700;
    font-family: 'Helvetica Neue', sans-serif;
}

.dropdown-image {
    width: 450px;
    height: 450px;
    border-radius: 40px;
    object-fit: cover;
}

.search-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: black;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    z-index: 999;
}

.search-menu.active {
    max-height: 150px;
}

.search-menu form {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.search-menu input {
    width: 60%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 1rem;
}

.search-menu button {
    background-color: #fec643;
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.search-menu button:hover {
    background-color: #e65100;
}

.search-menu .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

.search-menu .close-btn:hover {
    color: #fec643;
}

.hero {
    font-family: 'Open Sans', sans-serif;
    background: url('background.png') no-repeat center bottom;
    background-size: cover;
    height: 74vh;
    display: flex;
    align-items: flex-start;
    color: #fff;
    text-align: center;
    padding-top: 95px;
}

.intro {
    text-align: center;
    padding: 0px 20px;
    background-color: black;
    color: white;
}

@font-face {
    font-family: 'Grotesk Medium';
    src: url('fonts/Grotesk Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.intro h1 {
    font-size: 3.5rem;
    margin-bottom: 1px;
    font-family:  sans-serif;
    font-weight: 900;
}

.intro p {
    font-size: 1.2rem;
    font-family: 'Anonymous Pro', sans-serif;
   
    margin: 0;
}





.info-section-title {
    padding-bottom: 50px;
    font-family: 'Bison Bold', sans-serif; 
    font-weight: 900;
    text-align: center;
    color: black;
    font-size: 4.5rem;
    
    margin: 0 20px 40px 20px;
}





.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease-out, transform 1s ease-out;
    visibility: hidden;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
}

@keyframes buyNowAppear {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.buy-now-button.animate-on-scroll.visible {
    animation: buyNowAppear 1s forwards;
}

@keyframes float1 {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes float2 {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes float3 {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.float1 {
    animation: float1 5s ease-in-out infinite;
}

.float2 {
    animation: float2 6s ease-in-out infinite;
}

.float3 {
    animation: float3 4.5s ease-in-out infinite;
}

.features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 100px 10px; 
    background-color: black;
    color: gray;
    position: relative;
    overflow: hidden;
}

.features-inner {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease-in-out;
}

.feature-item {
    min-width: 300px; 
    text-align: left;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

.feature-item.hidden {
    opacity: 0;
}

.feature-item img {
    width: 100%;
    height: auto;
    max-width: 320px; 
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.feature-item img:hover {
    transform: scale(1.05);
}

.feature-text {
    margin-top: -40 px ;
    font-size: 1.4rem;
    text-align: left;
    margin-left: 40px;
    font-weight: 400;
    font-family: 'Anonymous Pro', sans-serif;
    color: white;
}

.preset-packs {
    font-weight: 700;
    background-color: #fec643;
    color: black;
    font-family: 'Anonymous Pro', monospace;
    border-radius: 15px;
    padding: 8px 12px;
    text-align: center;
    font-size: 1rem;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-top: 5px;
}

.feature-text p:first-child {
    margin-bottom: 5px;
}


/* Cart Count Badge Styles */
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: bold;
    display: none; /* Hidden by default */
    pointer-events: none; /* Allows clicks to pass through */
    transition: transform 0.2s ease-in-out;
}

.cart-count.active {
    display: block;
    transform: scale(1.2); /* Slightly enlarge to indicate an update */
}

.cart-count.active {
    transform: scale(1);
}

/* Responsive Design for Cart Count Badge */
@media (max-width: 600px) {
    .cart-count {
        top: -5px;
        right: -5px;
        padding: 1px 4px;
        font-size: 10px;
    }
}
.star-rating {
    display: flex;
    gap: 5px; 
    margin-top: 10px;
    margin-bottom: -10px; 
}

.star-rating i {
    color: #fec643;
    font-size: 1rem; 
}

.arrow {
    
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.arrow-left {
    left: 350px;
}

.arrow-right {
    right: 350px;
}

.arrow i {
    font-size: 1.2rem;
    color: black;
}

.arrow:hover {
    background-color: rgba(255,255,255,1);
    transform: translateY(-50%) scale(1.1);
}

.buy-now-container3 {
    text-align: center;
    padding: 100px 0px;
    margin-top: 20px; 
}

.buy-now-container {
    text-align: center;
    padding: 100px 0;
    background-color: black;
}

.buy-now-container2 {
    text-align: center;
    padding: 100px 0;
    background-color:  #e8e8e8;
}

.buy-now-button {

    text-decoration: none;
    font-family: 'Arial', sans-serif;
    background-color: #fec643;
    color: black;
    border: none;
    font-weight: 700;
    padding: 10px 190px; 
    font-size: 1rem;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.buy-now-button {
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    background-color: #fec643;
    color: black;
    border: none;
    font-weight: 700;
    padding: 10px 190px; 
    font-size: 1rem;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.buy-now-button2:hover {
    background-color:  #fc4a19;
 

}
.buy-now-button:hover {
    background-color: #feb710;
   
}
.reviews-count {
    color: #fff; 
    font-size: 0.9rem; 
    margin-left: 5px; 
    font-family: 'Open Sans', sans-serif; 
}

.info-section {
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: px 0;
    background-color: #e8e8e8;
}

.hover-reveal {
    flex: 1; 
    max-width: 20%; 
    position: relative;
}

.hover-reveal-container {
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 15px; 
    flex-wrap: wrap;
    padding-bottom: 30px;
}

.hover-reveal .base-image {
    width: 100%;
    max-width: 5000px;
    display: block;
    border-radius: 50px;
}

.logos {
    display: flex; 
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding-bottom: 30px;
    
}
.lightroomclassiclogo{
    width: 3%;
    justify-content: center;
}

.hover-reveal .reveal-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('normal.jpg');
    background-size: cover;
    background-position: center;
    clip-path: circle(0px at 0px 0px);
    transition: clip-path 0.2s ease-out;
    pointer-events: none;
    border-radius: 50px;
}

.first-container .reveal-overlay {
    background-image: url('photocompreveal.jpg'); 
}

.third-container .reveal-overlay {
    background-image: url('automotivebefore.jpg'); 
}

.hover-reveal .reveal-overlay3{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('automotivebefore.jpg');
    background-size: cover;
    background-position: center;
    clip-path: circle(0px at 0px 0px);
    transition: clip-path 0.2s ease-out;
    pointer-events: none;
    border-radius: 50px;
}

.hover-reveal .reveal-overlay1{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('automotiveafter.jpg');
    background-size: cover;
    background-position: center;
    clip-path: circle(0px at 0px 0px);
    transition: clip-path 0.2s ease-out;
    pointer-events: none;
    border-radius: 50px;
}

.image-comparison-section {
    padding: 40px 20px;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.img-comp-container {
    position: relative;
    height: auto;
    max-width: 800px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.img-comp-img {
    position: absolute;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.img-comp-img img {
    display: block;
    width: 100%;
    height: auto;
}

.img-comp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.img-comp-slider {
    position: absolute;
    z-index: 10;
    cursor: ew-resize;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color:#fec643;
    transition: background-color 0.3s ease;
}

.img-comp-slider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #fec643;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.img-comp-slider:hover {
    background-color: #e65100;
}

.img-comp-slider:before {
    background-color: inherit;
}

.img-comp-slider:active:before {
    background-color: #d84315;
}

@media (max-width: 1200px) {

    
    .dropdown-images {
        justify-content: center;
         padding: 0;
         
         width: 100%;
       
        
         margin-left: -100px;
        gap: 1px;
         margin-top: -150px;
      
     }
 
     .dropdown-image{
 
   
     
        margin-left: 10px;
        width: 180px;
 
        height: 190px;
      
        bottom: 0;
        top: 0;
        margin-top: 60px;
        border-radius: 10px;
     }
     
 
 
 
     .image-text {
         position: absolute;
         bottom: 10px;
         left: 2px;
         color: white;
         padding: 5px 10px;
         border-radius: 3px;
         font-size: 0.5rem;
         font-weight: 700;
         text-align: left;
         font-family: 'Helvetica Neue', sans-serif;
     }
 
     .dropdown-menu-list{
         margin-top: -100px;
     }
 
     .dropdown-menu-list li a {
         position: relative; 
         top: 0;
         left: 0;
           z-index: 9999; /* a large number ensures it stacks on top */
       
         color: white;
         text-decoration: none;
         font-size:1rem;
         font-weight: 700;
         font-family: 'Montserrat', sans-serif;
         display: block;
         transition: background 0s, color 0.1s;
         padding: 0px 0px;
         border-radius: 5px;
         text-align: left;
         margin-left: -30px;
         top: 0;
     }
 

    .cart-preview{

        width: 50%;
    }

    .cart-items{


        width: 100%;
    }
        
    .img-comp-container {
        max-width: 600px;
    }
}



@media (max-width: 480px) {
    .img-comp-slider {
        width: 2px;
    }

    .img-comp-slider:before {
        width: 16px;
        height: 16px;
        left: -6px;
    }
}

.footer {
    font-family: 'Anonymous Pro';
    background-color: BLACK;
    color: #fff;
    padding: 40px 20px 20px 200px;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    width: 60%;
    margin: 0 auto;
    border-top: 2px solid #000; 

    text-align: center; 
}

.footer-container {
    font-family: 'Anonymous Pro';
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
     padding-top: 250px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.footer-list li i {
    margin-right: 10px;
    color: #fec643;
}

.footer-list li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list li a:hover {
    color: #fec643;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
}


#cart-preview .quantity-input {
    width: 40px;
    text-align: center;
    border: 1px solid #ccc;
    margin: 0 5px;
    border-radius: 5px;
    font-size: 1rem;
    padding: 5px;
    color: black;
}
.newsletter-form input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 1rem;
}

.newsletter-form button {
    font-family: 'Helvetica';
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #fec643;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #e65100;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: #fff;
    font-size: 1.2rem;
    background-color: #333;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    background-color: #fec643;
    color: #fff;
}

.footer-bottom {
    font-family: 'Anonymous Pro';
    border-top: 1px solid #444;
    margin-top: 20px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-links li {
    font-size: 0.9rem;
}

.footer-bottom-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fec643;
}







.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 10px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 20px;
}

.modal-content form {
    display: flex;
    flex-direction: column;
}

.modal-content label {
    margin-bottom: 5px;
    font-weight: bold;
}

.modal-content input {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.modal-content button {
    padding: 10px;
    background-color: #fec643;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: #e65100;
}

.modal-content p {
    text-align: center;
}

.modal-content a {
    color: #fec643;
    text-decoration: none;
}

.modal-content a:hover {
    text-decoration: underline;
}

.dashboard {
    max-width: 800px;
    margin: 150px auto 50px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    color: #333;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.dashboard h1 {
    text-align: center;
    margin-bottom: 20px;
}

.dashboard p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.dashboard h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-align: center;
}

.make-purchase-container {
    text-align: center;
    margin: 20px 0;
}

#make-purchase-button {
    padding: 10px 20px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

#make-purchase-button:hover {
    background-color: #45a049;
}

.dashboard ul {
    list-style-type: none;
    padding: 0;
}

.dashboard li {
    background-color: #fff;
    padding: 10px;
    margin-bottom: 10px;
    border-left: 5px solid #fec643;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.dashboard li:hover {
    background-color: #f1f1f1;
}

.central-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

.central-image-container img {
    width: 500px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.dropdown-images :hover {
    filter: brightness(1.040);
}

.central-image-container img:hover {
    transform: scale(1.05);
}

.button-container {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.change-image-button,
.revert-image-button {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background-color: #fec643;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.change-image-button:hover,
.revert-image-button:hover {
    background-color: #e65100;
    transform: scale(1.05);
}

.change-image-button:active,
.revert-image-button:active {
    transform: scale(0.95);
}

.change-image-button.active,
.revert-image-button.active {
    background-color: #d84315;
}

.revert-image-button {
    background-color: #555;
}

.revert-image-button:hover {
    background-color: #777;
}

.revert-image-button.active {
    background-color: #999;
}

.img-comp-container {
    position: relative;
    height: auto;
    max-width: 800px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.img-comp-img {
    position: absolute;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.img-comp-img img {
    display: block;
    width: 100%;
    height: auto;
}

.img-comp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.img-comp-slider {
    position: absolute;
    z-index: 10;
    cursor: ew-resize;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color:#fec643;
    transition: background-color 0.3s ease;
}

.img-comp-slider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #fec643;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.img-comp-slider:hover {
    background-color: #e65100;
}

.img-comp-slider:before {
    background-color: inherit;
}

.img-comp-slider:active:before {
    background-color: #d84315;
}

@media (max-width: 1200px) {
    .img-comp-container {
        max-width: 600px;
    }
}





.instagram-feed {
    margin-top: 200px;
    width: 60%; 
    margin: 0 auto; 
    border-top: 2px solid #000;
    text-align: center; 
    padding: 60px 20px;
    background-color: black;
    color: WHITE;
    text-align: center;
}

.instagram-feed h2 {
    line-height: 1rem; 
    padding-top: 200px;
    font-family: 'EuropaGroteskBold', sans-serif;
    font-size:3rem;
    margin-bottom: 40px;
    color: white;
    font-weight: 300;
}

.instagram-feed iframe {
    max-width: 100%;
    border: none;
    border-radius: 10px;
}





html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        transition: none;
        opacity: 1;
        transform: none;
        visibility: visible;
    }

    .feature-item img {
        transition: none;
        opacity: 1;
        transform: none;
        visibility: visible;
    }

    .hover-reveal .reveal-overlay {
        transition: none;
    }

    .float1,
    .float2,
    .float3 {
        animation: none;
    }

    .dropdown-menu {
        transition: none;
    }

    .search-menu {
        transition: none;
        max-height: none;
        height: auto;
    }

    .img-comp-slider {
        transition: none;
    }
}

@keyframes ring {
    0% {
        transform: translateX(0) rotate(0deg);
    }
    20% {
        transform: translateX(-5px) rotate(-2deg);
    }
    40% {
        transform: translateX(5px) rotate(2deg);
    }
    60% {
        transform: translateX(-5px) rotate(-2deg);
    }
    80% {
        transform: translateX(5px) rotate(2deg);
    }
    100% {
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-headline {
    font-size: 3.5rem;
    font-weight: 900;
    width: 55%;
    font-family: 'EuropaGroteskBold', sans-serif;
    color: white;
    text-align: center;
    margin-top: -10px; 
   line-height: 3.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.buy-now-button3 {
    display: inline-block;
    text-decoration: none;
    background-color: #fec643;
    color: black;
    
    padding: 10px 170px; 
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.buy-now-button3:hover {
    background-color: #feb710; 
    transform: scale(1.05);
}

.slider-paragraph {
    font-size: 1.2rem;
    font-family: 'Anonymous Pro', sans-serif;
    color: white;
    text-align: center;
    margin-top: -50px; 
    width: 65%;
}

.slider {
    position: relative; 
    width: 100%; 
    height: auto; 
    background: #000; 
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); 
    padding: 20px; 
}
.image-container-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.image-container-slider {
    position: relative; 
    width: 100%;
    max-width: 1250px;
    aspect-ratio: 16 / 10; 
    overflow: hidden; 
    border-radius: 30px;
    margin-top: 100px;
    margin-bottom: 40px;
}

.image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before {
    z-index: 1;
}

.after {
    clip-path: inset(0 50% 0 0);
    z-index: 2;
}

.slider-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #fff;
    z-index: 3;
    pointer-events: none;
}

.slider-control {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 4;
    -webkit-appearance: none;
    background: transparent;
}

.slider-control::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 80px; 
    height: 80px;
    background: url('arrow.png') no-repeat center center;
    background-size: contain; 
    border: none; 
    border-radius: 50%; 
    cursor: pointer;
    box-shadow: none; 
}

.slider-control::-moz-range-thumb {
    width: 80px; 
    height: 80px;
    background: url('arrow.png') no-repeat center center;
    background-size: contain;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: none;
}

.ringing {
    animation: ring 1s ease-in-out;
}

.bookk-img.animate-on-scroll {
    --translate-y: 20px;
    --scale: 1.1;
    transform: translateY(var(--translate-y)) scale(var(--scale));
    transition: opacity 0.3s ease-out, transform 1s ease-out;
}

.bookk-img.animate-on-scroll.visible {
    opacity: 1;
    --translate-y: 0px;
    --scale: 1.1;
}

.bookk-img:hover {
    --scale: 1.2;
}

.feature-item img:hover {
    transform: scale(1.1);
}

.bookk-img:hover {
    transform: translateY(0px) scale(1.2);
}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: 80%;
    }

    .feature-item img {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .feature-text {
        margin-left: 0;
    }

    .buy-now-button {
        padding: 8px 60px;
        font-size: 1rem;
    }

    .central-image-container img {
        width: 100%;
    }

    .button-container {
        flex-direction: column;
    }

    .button-container button {
        width: 100%;
    }
}

/* Existing Styles */
.chest-section {
    position: relative; /* To position flash-images absolutely */
    padding: 60px 20px;
    background-color: #e8e8e8; 
    text-align: center;
}

.chest-section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-family: 'EuropaGroteskBold', sans-serif;
    color: #333; 
}

.chest-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; 
    flex-wrap: wrap; 
    position: relative;
}

.chest-image {
    width: 250px; 
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.chest-image:hover {
    transform: scale(1.05);
}

.chest-section-paragraph {
    font-size: 1.2rem;
    font-family: 'Anonymous Pro', sans-serif;
}

.buy-now-container2 {
    margin-top: 20px;
}

.buy-now-button2 {
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    background-color: #FE633B;
    color: WHITE;
    border: none;
    font-weight: 700;
    padding: 10px 150px; 
    font-size: 1rem;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.buy-now-button2:hover {
    background-color: #e03a07;
}




/* Flash Images Styling */
.flash-images {
    position: absolute;
    top: 20%; /* Positions the flash images above the middle chest */
    left: 48%;
    transform: translate(-50%, 0);
    display: none; /* Hidden by default */
    z-index: 20; /* Ensure it's above the chests */
    pointer-events: none; /* Prevents capturing mouse events */
}


.flash-image {
    width: 100px;
    height: auto;
    opacity: 0;
    position: absolute;
    animation: flash 1s infinite; /* Increased duration to 3s */
}

.flash-image:nth-child(1) {
    animation-delay: 0s; /* No delay for the first image */
}

.flash-image:nth-child(2) {
    animation-delay: 0.3s; /* Starts 1s after the first image */
}

.flash-image:nth-child(3) {
    animation-delay: 0.6s; /* Starts 2s after the first image */
}

@keyframes flash {
    0% { opacity: 0; transform: scale(0.5); }
    20% { opacity: 1; transform: scale(1); }
    40% { opacity: 0; transform: scale(1.5); }
    100% { opacity: 0; transform: scale(3); }
}
/* Animations for Moving Outer Chests */
.chest-left.move {
    transform: translateX(100px) scale(0.8); /* Changed to move right */
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.chest-right.move {
    transform: translateX(-100px) scale(0.8); /* Changed to move left */
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Transition for Middle Chest Opening */
.chest-middle.open {
    /* This class will be toggled via JavaScript to change the image */
}



.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #fec643;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.latest-video-section {
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5); 
    padding: 60px 20px;
    background-color: black; 
    text-align: center;
    height: 10%;
}

.latest-video-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-family: 'EuropaGroteskBold', sans-serif;
    color: white; 
}

.video-container {
    position: relative;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.latest-video-section p {
    font-size: 1rem;
    color: white;
}











@media (max-width: 480px) {

    .social-icons{


        justify-content: center;
    }
    .chest-section-title{

        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 2.4rem;
    }

    .cart-items
    {


        width: 100%;
    }

    .cart-preview{


        width: 100%;
    }

    .dropdown-images {
       justify-content: center;
        padding: 0;
        
        width: 100%;
      
       
        margin-left: -100px;
       gap: 1px;
        margin-top: -150px;
     
    }

    .dropdown-image{

  

       
       width: 100px;

       height: 140px;
       bottom: 0;
       margin-top: 150px;
       border-radius: 10px;
    }
    



    .image-text {
        position: absolute;
        bottom: 10px;
        left: 2px;
        color: white;
        padding: 5px 10px;
        border-radius: 3px;
        font-size: 0.5rem;
        font-weight: 700;
        text-align: left;
        font-family: 'Helvetica Neue', sans-serif;
    }

    .dropdown-menu-list{
        margin-top: -100px;
    }

    .dropdown-menu-list li a {
        position: relative; 
        top: 0;
        left: 0;
          z-index: 9999; /* a large number ensures it stacks on top */
      
        color: white;
        text-decoration: none;
        font-size:1rem;
        font-weight: 700;
        font-family: 'Montserrat', sans-serif;
        display: block;
        transition: background 0s, color 0.1s;
        padding: 0px 0px;
        border-radius: 5px;
        text-align: left;
        margin-left: -30px;
        top: 0;
    }



    .hover-reveal-container{

        width: 100%;
    }
 
    .hover-paragraph{


        width: 100%;
    }

    .buy-now-button2{

        padding: 8px 50px;
        border-radius: 10px;
        font-size: 1rem;

    }

        .logo img{
              width: 120px;
              height: auto;
            margin-right: 50%;
           
        
    }



    .hero {


        height: 63vh;

    }
    .header-icons .icon{
        font-size: 0.9rem;
      
        justify-content: flex-start;
        
        width: 3%;
        margin-right: 10%;
    


      
      
        padding: 0%;
    }


        .menu-icon{
            margin-left: 10px;
            width: 17px;
            height: 14px;
        

        }

    .hover-reveal-container{
      
        gap: 10px;
        width: 150%;
    }
    
    .hover-reveal .base-image {
        width: 100%;
        
        
        display: block;
        border-radius: 10px;
    }

 
    .info-section-title {
        font-size: 3rem;
        line-height: 2.5rem;
        margin: 30px 15px 15px 15px;
      
    }
  
    .intro h1{
        font-size: 2rem;

       
    }
    .intro p{


        font-size: 1rem;
    }



    .slider-headline{

        font-size: 1.5rem;
        line-height: 1.8rem;
        width: 100%;
        padding-bottom: 20px;
    }

    .slider-paragraph{


        width: 100%;
    }


    .buy-now-button3 {
      
 
        
        padding: 10px 120px; 
        font-size: 1rem;
        font-weight: bold;
        border-radius: 5px;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }



    .chest-images{


        display: flex; /* Aligns children in a row */
    flex-direction: row; /* Ensure horizontal layout */
    justify-content: space-between; /* Add spacing between images */
    gap: 10px; /* Optional: spacing between images */
    flex-wrap: nowrap; /* Prevent wrapping */
    }
    .chest-image {
        flex: 1; /* Equal width for all images */
        max-width: calc(33.33% - 10px); /* Ensure 3 images in a row */
    }


    .chest-section-paragraph {
        width: 92%; /* Already defined */
        text-align: center;
        margin: 0 auto; /* This centers the element horizontally */
    }


    .instagram-feed h2{
        font-size: 1.5rem;
        line-height: 1.4rem;
        width: 100%;
       
    }

    .instagram-feed{




        padding-bottom: 0px;

    }
    .footer{


        width: 100%;
       
    }

 

   
  
}












@media (min-width: 481px) and (max-width: 768px) {

    .logo img{
        width: 150px;
        height: auto;
      margin-right: 30%;
     
  
}

.header-icons .icon{
    font-size: 1.1rem;
  
    justify-content: flex-start;
    
    width: 3%;
    margin-right: 10%;



  
  
    padding: 0%;
}


    .menu-icon{
        margin-left: 10px;
        width: 20px;
        height: 18px;
    

    }



    .cart-items
    {


        width: 100%;
    }

    .cart-preview{


        width: 100%;
    }








    .img-comp-container {
        max-width: 100%;
    }

    .img-comp-slider {
        width: 3px;
    }

    .img-comp-slider:before {
        width: 20px;
        height: 20px;
        left: -8px;
    }

    .footer{


        width: 100%;
    }
    .footer-container {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        width: 100%;
        margin: 10px 0;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .features {
        flex-direction: column;
    }

    .features .arrow {
        display: none;
    }


    .hover-reveal-container{
      
        gap: 10px;
        width: 150%;
    }
    
    .hover-reveal .base-image {
        width: 100%;
        
        
        display: block;
        border-radius: 20px;
    }


    .intro h1{


        width: 100%;
        font-size: 2.7rem;
     }

     .info-section-title{

        line-height: 3.9rem;
        margin-top: 20px;
     }

     
     .hover-paragraph{

        width: 100%;
     }



     .slider  h1{


        width: 100%;
       
       
     }




     .slider-paragraph p{

        width: 100%;
        font-size: 1rem;
     }

     .chest-section{


        width: 100%;
     }
     .chest-images{

        padding: 0;
        display: flex; /* Aligns children in a row */
    flex-direction: row; /* Ensure horizontal layout */
    justify-content: space-between; /* Add spacing between images */
    /* Optional: spacing between images */
    flex-wrap: nowrap; /* Prevent wrapping */
    }
    .chest-image {
        flex: 1; /* Equal width for all images */
        max-width: calc(30.33% - 10px); /* Ensure 3 images in a row */
    }

    .chest-section-title{


        font-size: 3.5rem;
        width: 100%;
       
    }

    .chest-section-paragraph {
        padding-top: 30px;
        width: 100%; /* Already defined */
        text-align: center;
        margin: 0 auto; /* This centers the element horizontally */
    }


    .instagram-feed h2{
        font-size: 2rem;
        line-height: 2rem;
        width: 100%;
        
       
    }

    .social-icons{

        justify-content: center;
    }


    .instagram-feed{

        justify-content: center;
    }




    .dropdown-images {
        justify-content: center;
         padding: 0;
         
         width: 100%;
       
        
         margin-left: -100px;
        gap: 1px;
         margin-top: -150px;
      
     }
 
     .dropdown-image{
 
   
 
        
        width: 100px;
 
        height: 140px;
        bottom: 0;
        margin-top: 150px;
        border-radius: 10px;
     }
     
 
 
 
     .image-text {
         position: absolute;
         bottom: 10px;
         left: 2px;
         color: white;
         padding: 5px 10px;
         border-radius: 3px;
         font-size: 0.5rem;
         font-weight: 700;
         text-align: left;
         font-family: 'Helvetica Neue', sans-serif;
     }
 
     .dropdown-menu-list{
         margin-top: -100px;
     }
 
     .dropdown-menu-list li a {
         position: relative; 
         top: 0;
         left: 0;
           z-index: 9999; /* a large number ensures it stacks on top */
       
         color: white;
         text-decoration: none;
         font-size:1rem;
         font-weight: 700;
         font-family: 'Montserrat', sans-serif;
         display: block;
         transition: background 0s, color 0.1s;
         padding: 0px 0px;
         border-radius: 5px;
         text-align: left;
         margin-left: -30px;
         top: 0;
     }
 
 






}









@media (min-width: 769px) and (max-width: 905px) {





    .chest-images{

        padding: 0;
        display: flex; /* Aligns children in a row */
    flex-direction: row; /* Ensure horizontal layout */
    justify-content: space-between; /* Add spacing between images */
    /* Optional: spacing between images */
    flex-wrap: nowrap; /* Prevent wrapping */
    }
    .chest-image {
        flex: 1; /* Equal width for all images */
        max-width: calc(32.33% - 10px); /* Ensure 3 images in a row */
    }


    .chest-section-paragraph{


        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .chest-section-title
    {


        font-size: 4rem;
    }

    .instagram-feed h2
    {

        line-height: 3rem;
        font-size: 3rem;
        width: 100%;
    }
    .footer{


        width: 100%;
    }
    .hover-reveal-container{
      
        gap: 10px;
        width: 150%;
    }
    
    .hover-reveal .base-image {
        width: 100%;
        
        
        display: block;
        border-radius: 20px;
    }


    .features .arrow {
        display: none;
    }

    .cart-items
    {


        width: 100%;
    }

    .cart-preview{


        width: 50%;
    }


    .info-section-title{

        width: 100%;
        font-size: 3rem;
        margin-top: 30px;
    }


    .hover-paragraph {


        width: 70%;
    }


    .slider-headline{


        width: 100%;
    }
    
}
.header-icons {
    display: flex;
    align-items: center;
}

.header-icons .icon {
    color: white;
    margin-left: 18px;
    font-size: 24px;
    padding: 5px;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.header-icons .icon:hover {
    color: #fec643;
}

.header-icons .icon i {
    color: inherit;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 1);
}

.header-icons .icon:hover i {
    text-shadow: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: black;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    z-index: 999;
}

.dropdown-menu.active {
    max-height: 1600px; 
}

.dropdown-content {
    margin-top: 100px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-menu-container {
    width: 100%;
    max-width: 500px;
    align-self: flex-start;
    margin-left: 20px;
    margin-top: -40px;
}

.dropdown-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.dropdown-menu-list li {
    padding: 0px 0px;
}

.dropdown-menu-list li a {
    color: white;
    text-decoration: none;
    font-size: 25px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    display: block;
    transition: background 0s, color 0.1s;
    padding: 5px 0px;
    border-radius: 5px;
    text-align: left;
}

.dropdown-menu-list li a:hover {
    color: #fec643;
    border-radius: 5px;
}

.dropdown-images {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    margin-top: -150px;
    flex-wrap: wrap;
    align-self: end;
    padding-right: 40px;
}

.image-container {
    position: relative;
}

.image-text {
    position: absolute;
    bottom: 30px;
    left: 20px;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 30px;
    font-weight: 700;
    font-family: 'Helvetica Neue', sans-serif;
}

.dropdown-image {
    width: 450px;
    height: 450px;
    border-radius: 40px;
    object-fit: cover;
}

.search-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: black;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    z-index: 999;
}

.search-menu.active {
    max-height: 150px;
}

.search-menu form {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.search-menu input {
    width: 60%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 1rem;
}

.search-menu button {
    background-color: #fec643;
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.search-menu button:hover {
    background-color: #e65100;
}

.search-menu .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

.search-menu .close-btn:hover {
    color: #fec643;
}

.hero {
    font-family: 'Open Sans', sans-serif;
    background: url('background.png') no-repeat center bottom;
    background-size: cover;
    height: 74vh;
    display: flex;
    align-items: flex-start;
    color: #fff;
    text-align: center;
    padding-top: 95px;
}

.intro {
    text-align: center;
    padding: 0px 20px;
    background-color: black;
    color: white;
}

@font-face {
    font-family: 'Grotesk Medium';
    src: url('fonts/Grotesk Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.intro h1 {
    font-size: 3.5rem;
    margin-bottom: 1px;
    font-family:  sans-serif;
    font-weight: 900;
}

.intro p {
    font-size: 1.2rem;
    font-family: 'Anonymous Pro', sans-serif;
    white-space: nowrap;
    margin: 0;
}

.info-section-title {
    padding-bottom: 50px;
    font-family: 'Bison Bold', sans-serif; 
    font-weight: 900;
    text-align: center;
    color: black;
    font-size: 4.5rem;
    
    margin: 0 20px 40px 20px;
}

@media (max-width: 768px) {
    .info-section-title {
        font-size: 2.5rem;
        margin: 30px 15px 15px 15px;
    }
}

@media (max-width: 480px) {
    .info-section-title {
        font-size: 2rem;
        margin: 20px 10px 10px 10px;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease-out, transform 1s ease-out;
    visibility: hidden;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
}









@keyframes buyNowAppear {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}



@keyframes float1 {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes float2 {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes float3 {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.float1 {
    animation: float1 5s ease-in-out infinite;
}

.float2 {
    animation: float2 6s ease-in-out infinite;
}

.float3 {
    animation: float3 4.5s ease-in-out infinite;
}

.features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 100px 10px; 
    background-color: black;
    color: gray;
    position: relative;
    overflow: hidden;
}

.features-inner {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease-in-out;
}

.feature-item {
    min-width: 300px; 
    text-align: left;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

.feature-item.hidden {
    opacity: 0;
}

.feature-item img {
    width: 100%;
    height: auto;
    max-width: 320px; 
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.feature-item img:hover {
    transform: scale(1.05);
}

.feature-text {
    margin-top: -40 px ;
    font-size: 1.4rem;
    text-align: left;
    margin-left: 40px;
    font-weight: 400;
    font-family: 'Anonymous Pro', sans-serif;
    color: white;
}
.preset-packs1 {
    font-family: 'Arial', sans-serif;
    
    background-color: #ffffff;
    color: black;
    margin-left: 10px;
    border-radius: 10px;
    padding: 5px 85px;
    text-align: center;
    font-size: 1rem;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
   
}









.preset-packs {
   
    background-color: #fec643;
    color: black;
    font-family: 'Arial', monospace;
    border-radius: 10px;
    padding: 5px 12px;
    text-align: center;
    font-size: 1rem;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
   
}

.feature-text p:first-child {
    margin-bottom: 5px;
}

.star-rating {

    
    display: flex;
    gap: 5px; 
    margin-top: 30px;
    margin-bottom: -10px; 
}

.star-rating i {
    color: #ffb300;
    font-size: 1rem; 
}

.arrow {
    
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.arrow-left {
    left: 350px;
}

.arrow-right {
    right: 350px;
}

.arrow i {
    font-size: 1.2rem;
    color: black;
}

.arrow:hover {
    background-color: rgba(255,255,255,1);
    transform: translateY(-50%) scale(1.1);
}

.buy-now-container3 {
    text-align: center;
    padding: 100px 0px;
    margin-top: 20px; 
}

.buy-now-container {
    text-align: center;
    padding: 100px 0;
    background-color: black;
}

.buy-now-container2 {
    text-align: center;
    padding: 100px 0;
    background-color:  #e8e8e8;
}

.buy-now-button {

    text-decoration: none;
    font-family: 'Arial', sans-serif;
    background-color: #fec643;
    color: black;
    border: none;
    font-weight: 700;
    padding: 10px 190px; 
    font-size: 1rem;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.buy-now-button2 {
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    background-color: #ef633b;
    color:  #e8e8e8;
    border: none;
    font-weight: 700;
    padding: 12px 150px; 
    font-size: 1rem;
    cursor: pointer;
    border-radius: 7px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.buy-now-button2:hover {
    background-color:  #fc4a19;
    transform: scale(1.05);
    box-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.reviews-count {
    color: #fff; 
    font-size: 0.9rem; 
    margin-left: 5px; 
    font-family: 'Open Sans', sans-serif; 
}

.info-section {
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: px 0;
    background-color: #e8e8e8;
}

.hover-reveal {
    flex: 1; 
    max-width: 20%; 
    position: relative;
}

.hover-reveal-container {
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 15px; 
    flex-wrap: wrap;
    padding-bottom: 30px;
}

.hover-reveal .base-image {
    width: 100%;
    max-width: 5000px;
    display: block;
    border-radius: 50px;
}

.logos {
    display: flex; 
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding-bottom: 30px;
    
}
.lightroomclassiclogo{
    width: 3%;
    justify-content: center;
}

.hover-reveal .reveal-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('normal.jpg');
    background-size: cover;
    background-position: center;
    clip-path: circle(0px at 0px 0px);
    transition: clip-path 0.2s ease-out;
    pointer-events: none;
    border-radius: 50px;
}

.first-container .reveal-overlay {
    background-image: url('photocompreveal.jpg'); 
}

.third-container .reveal-overlay {
    background-image: url('automotivebefore.jpg'); 
}

.hover-reveal .reveal-overlay3{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('automotivebefore.jpg');
    background-size: cover;
    background-position: center;
    clip-path: circle(0px at 0px 0px);
    transition: clip-path 0.2s ease-out;
    pointer-events: none;
    border-radius: 50px;
}

.hover-reveal .reveal-overlay1{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('automotiveafter.jpg');
    background-size: cover;
    background-position: center;
    clip-path: circle(0px at 0px 0px);
    transition: clip-path 0.2s ease-out;
    pointer-events: none;
    border-radius: 50px;
}

.image-comparison-section {
    padding: 40px 20px;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.img-comp-container {
    position: relative;
    height: auto;
    max-width: 800px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.img-comp-img {
    position: absolute;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.img-comp-img img {
    display: block;
    width: 100%;
    height: auto;
}

.img-comp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.img-comp-slider {
    position: absolute;
    z-index: 10;
    cursor: ew-resize;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color:#fec643;
    transition: background-color 0.3s ease;
}

.img-comp-slider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #fec643;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.img-comp-slider:hover {
    background-color: #e65100;
}

.img-comp-slider:before {
    background-color: inherit;
}

.img-comp-slider:active:before {
    background-color: #d84315;
}

@media (max-width: 1200px) {
    .img-comp-container {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .img-comp-container {
        max-width: 100%;
    }

    .img-comp-slider {
        width: 3px;
    }

    .img-comp-slider:before {
        width: 20px;
        height: 20px;
        left: -8px;
    }
}

@media (max-width: 480px) {
    .img-comp-slider {
        width: 2px;
    }

    .img-comp-slider:before {
        width: 16px;
        height: 16px;
        left: -6px;
    }
}

.footer {
    font-family: 'Anonymous Pro';
    background-color: BLACK;
    color: #fff;
    padding: 40px 20px 20px 20px;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    width: 60%;
    margin: 0 auto;
    border-top: 2px solid #000; 
    text-align: center; 
}

.footer-container {
    font-family: 'Anonymous Pro';
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.footer-list li i {
    margin-right: 10px;
    color: #fec643;
}

.footer-list li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list li a:hover {
    color: #fec643;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
}

.newsletter-form input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 1rem;
}

.newsletter-form button {
    font-family: 'Helvetica';
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #fec643;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #e65100;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: #fff;
    font-size: 1.2rem;
    background-color: #333;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    background-color: #fec643;
    color: #fff;
}

.footer-bottom {
    font-family: 'Anonymous Pro';
    border-top: 1px solid #444;
    margin-top: 20px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-links li {
    font-size: 0.9rem;
}

.footer-bottom-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fec643;
}

#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #fec643;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background-color: #feb710;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        margin: 10px 0;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .features {
        flex-direction: column;
    }

    .features .arrow {
        display: none;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 10px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 20px;
}

.modal-content form {
    display: flex;
    flex-direction: column;
}

.modal-content label {
    margin-bottom: 5px;
    font-weight: bold;
}

.modal-content input {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.modal-content button {
    padding: 10px;
    background-color: #fec643;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: #e65100;
}

.modal-content p {
    text-align: center;
}

.modal-content a {
    color: #fec643;
    text-decoration: none;
}

.modal-content a:hover {
    text-decoration: underline;
}

.dashboard {
    max-width: 800px;
    margin: 150px auto 50px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    color: #333;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.dashboard h1 {
    text-align: center;
    margin-bottom: 20px;
}

.dashboard p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.dashboard h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-align: center;
}

.make-purchase-container {
    text-align: center;
    margin: 20px 0;
}

#make-purchase-button {
    padding: 10px 20px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

#make-purchase-button:hover {
    background-color: #45a049;
}

.dashboard ul {
    list-style-type: none;
    padding: 0;
}

.dashboard li {
    background-color: #fff;
    padding: 10px;
    margin-bottom: 10px;
    border-left: 5px solid #fec643;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.dashboard li:hover {
    background-color: #f1f1f1;
}

.central-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

.central-image-container img {
    width: 500px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.dropdown-images :hover {
    filter: brightness(1.040);
}

.central-image-container img:hover {
    transform: scale(1.05);
}

.button-container {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.change-image-button,
.revert-image-button {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background-color: #fec643;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.change-image-button:hover,
.revert-image-button:hover {
    background-color: #e65100;
    transform: scale(1.05);
}

.change-image-button:active,
.revert-image-button:active {
    transform: scale(0.95);
}

.change-image-button.active,
.revert-image-button.active {
    background-color: #d84315;
}

.revert-image-button {
    background-color: #555;
}

.revert-image-button:hover {
    background-color: #777;
}

.revert-image-button.active {
    background-color: #999;
}

.img-comp-container {
    position: relative;
    height: auto;
    max-width: 800px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.img-comp-img {
    position: absolute;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.img-comp-img img {
    display: block;
    width: 100%;
    height: auto;
}

.img-comp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.img-comp-slider {
    position: absolute;
    z-index: 10;
    cursor: ew-resize;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color:#fec643;
    transition: background-color 0.3s ease;
}

.img-comp-slider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #fec643;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.img-comp-slider:hover {
    background-color: #e65100;
}

.img-comp-slider:before {
    background-color: inherit;
}

.img-comp-slider:active:before {
    background-color: #d84315;
}

@media (max-width: 1200px) {
    .img-comp-container {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .img-comp-container {
        max-width: 100%;
    }

    .img-comp-slider {
        width: 3px;
    }

    .img-comp-slider:before {
        width: 20px;
        height: 20px;
        left: -8px;
    }
}

@media (max-width: 480px) {
    .img-comp-slider {
        width: 2px;
    }

    .img-comp-slider:before {
        width: 16px;
        height: 16px;
        left: -6px;
    }
}

.instagram-feed {
    margin-top: 200px;
    width: 60%; 
    margin: 0 auto; 
    border-top: 2px solid #000;
    text-align: center; 
    padding: 60px 20px;
    background-color: black;
    color: WHITE;
    text-align: center;
}

.instagram-feed h2 {
    line-height: 1rem; 
    padding-top: 200px;
    font-family: 'EuropaGroteskBold', sans-serif;
    font-size:3rem;
    margin-bottom: 40px;
    color: white;
    font-weight: 300;
}

.instagram-feed iframe {
    max-width: 100%;
    border: none;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .instagram-feed h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .instagram-feed h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        transition: none;
        opacity: 1;
        transform: none;
        visibility: visible;
    }

    .feature-item img {
        transition: none;
        opacity: 1;
        transform: none;
        visibility: visible;
    }

    .hover-reveal .reveal-overlay {
        transition: none;
    }

    .float1,
    .float2,
    .float3 {
        animation: none;
    }

    .dropdown-menu {
        transition: none;
    }

    .search-menu {
        transition: none;
        max-height: none;
        height: auto;
    }

    .img-comp-slider {
        transition: none;
    }
}

@keyframes ring {
    0% {
        transform: translateX(0) rotate(0deg);
    }
    20% {
        transform: translateX(-5px) rotate(-2deg);
    }
    40% {
        transform: translateX(5px) rotate(2deg);
    }
    60% {
        transform: translateX(-5px) rotate(-2deg);
    }
    80% {
        transform: translateX(5px) rotate(2deg);
    }
    100% {
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-headline {
    font-size: 3.5rem;
    font-weight: 900;
    width: 55%;
    font-family: 'EuropaGroteskBold', sans-serif;
    color: white;
    text-align: center;
    margin-top: -10px; 
   line-height: 3.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.buy-now-button3 {
    display: inline-block;
    text-decoration: none;
    background-color: #fec643;
    color: black;
    
    padding: 10px 170px; 
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.buy-now-button3:hover {
    background-color: #feb710; 
    transform: scale(1.05);
}

.slider-paragraph {
    font-size: 1.2rem;
    font-family: 'Anonymous Pro', sans-serif;
    color: white;
    text-align: center;
    margin-top: -50px; 
    width: 65%;
}

.slider {
    position: relative; 
    width: 100%; 
    height: auto; 
    background: #000; 
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); 
    padding: 20px; 
}
.image-container-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.image-container-slider {
    position: relative; 
    width: 100%;
    max-width: 1250px;
    aspect-ratio: 16 / 10; 
    overflow: hidden; 
    border-radius: 30px;
    margin-top: 100px;
    margin-bottom: 40px;
}

.image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before {
    z-index: 1;
}

.after {
    clip-path: inset(0 50% 0 0);
    z-index: 2;
}

.slider-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #fff;
    z-index: 3;
    pointer-events: none;
}

.slider-control {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 4;
    -webkit-appearance: none;
    background: transparent;
}

.slider-control::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 80px; 
    height: 80px;
    background: url('arrow.png') no-repeat center center;
    background-size: contain; 
    border: none; 
    border-radius: 50%; 
    cursor: pointer;
    box-shadow: none; 
}

.slider-control::-moz-range-thumb {
    width: 80px; 
    height: 80px;
    background: url('arrow.png') no-repeat center center;
    background-size: contain;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: none;
}

.ringing {
    animation: ring 1s ease-in-out;
}

.bookk-img.animate-on-scroll {
    --translate-y: 20px;
    --scale: 1.1;
    transform: translateY(var(--translate-y)) scale(var(--scale));
    transition: opacity 0.3s ease-out, transform 1s ease-out;
}

.bookk-img.animate-on-scroll.visible {
    opacity: 1;
    --translate-y: 0px;
    --scale: 1.1;
}

.bookk-img:hover {
    --scale: 1.2;
}

.feature-item img:hover {
    transform: scale(1.1);
}

.bookk-img:hover {
    transform: translateY(0px) scale(1.2);
}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: 80%;
    }

    .feature-item img {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .feature-text {
        margin-left: 0;
    }

    .buy-now-button {
        padding: 8px 60px;
        font-size: 1rem;
    }

    .central-image-container img {
        width: 100%;
    }

    .button-container {
        flex-direction: column;
    }

    .button-container button {
        width: 100%;
    }
}

.chest-section {
    padding: 60px 20px;
    background-color: #e8e8e8; 
    text-align: center;
}

.chest-section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-family: 'EuropaGroteskBold', sans-serif;
    color: #333; 
}

.chest-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; 
    flex-wrap: wrap; 
}

.chest-image {
    width: 250px; 
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chest-image:hover {
    transform: scale(1.05);
}

.chest-section-paragraph {
    font-size: 1.2rem;
    font-family: 'Anonymous Pro', sans-serif;
}

@media (max-width: 1024px) {
    .chest-image {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .chest-image {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .chest-images {
        flex-direction: column;
        gap: 20px;
    }
    
    .chest-image {
        width: 80%;
    }
}

.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #fec643;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.latest-video-section {
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5); 
    padding: 60px 20px;
    background-color: black; 
    text-align: center;
    height: 10%;
}

.latest-video-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-family: 'EuropaGroteskBold', sans-serif;
    color: white; 
}

.video-container {
    position: relative;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.latest-video-section p {
    font-size: 1rem;
    color: white;
}

@media (max-width: 1024px) {
    .video-container {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .latest-video-title {
        font-size: 2rem;
    }

    .video-container {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .latest-video-title {
        font-size: 1.5rem;
    }
}









/* Cart Count Badge Styles */
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: bold;
    display: none; /* Hidden by default */
    pointer-events: none; /* Allows clicks to pass through */
    transition: transform 0.2s ease-in-out;
}

.cart-count.active {
    display: block;
    transform: scale(1.2); /* Slightly enlarge to indicate an update */
}

.cart-count.active {
    transform: scale(1);
}


/* Firefox-Specific Styles */
@-moz-document url-prefix() {
    .image-text-container {
        /* Adjustments for Firefox */
        padding-left: 0; /* Remove left padding */
       
        padding-top: 100px; /* Adjust top padding as necessary */
        flex-direction: row; /* Arrange elements horizontally */
        align-items: center; /* Vertically center items */
        gap: 10px; /* Space between image and text */
        justify-content: center; /* Center the container content */
       /* Restrict maximum width */
        margin: 0 auto; /* Center the container */
    }

    .book3-text h1 {
        /* Adjustments for Firefox */
        font-size: 4rem; /* Adjust font size */
        margin-bottom: 0; /* Remove negative margin */
        line-height: 1.2; /* Adjust line height */
        width: 50%; /* Set width to align with image */
        text-align: left; /* Align text to the left */
    }

    .book3-image {
 
        width: 100%; /* Set image width */
        /* Optional: Limit maximum width */
        border-radius: 10px; /* Keep rounded corners */
        transition: transform 0.3s ease; /* Smooth scaling on hover */
    }
    
    /* Optional: Adjust text container if needed */
    .book3-text {
        width: 50%; /* Ensure text takes up half the container */
    }
}


.image-text-container {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 280px;
    padding-right: 20px;
    padding-top: 150px;
}


.book3-image {
    margin-top: -800px;
    width: 50%; /* Increase the width of the image */
     /* Set a new maximum size if needed */
    border-radius: 10px; /* Optional: Keep rounded corners */
    transition: transform 0.3s ease; /* Add smooth scaling for hover effect */
}

.book3-text {
    
    color: white; /* Ensure text is visible */
    font-family: 'Montserrat', sans-serif;
    text-align: left; /* Align text to the left */
    margin-top: 55px; /* Adjust this value to move the text upward */
    position: relative; /* Keep it relative for flexible positioning */
    padding-left: 80px;}

    .price-container {
        
        font-size: 10rem; /* Larger font for emphasis */
        font-family: 'Anonymous Pro';
        margin-bottom: 2rem; /* Add spacing below */
        margin-top: 40px;
        
    }
    


    .highlighted-text{

        padding: 0px 10px;
        background-color:  #fec643;
        font-weight: 200;
        color: black;
        border-radius: 10px;
        font-family: 'Anonymous Pro', sans-serif;
    
        font-size: 3.7rem;
       
    }



    .price-container .price {
     
        font-size: 1.2rem; /* Adjust size as needed */
        font-family: 'Anonymous Pro';
        text-align: left; /* Optional: center align the price */
        margin: 0; /* Remove any unwanted margins */
    }

    

    .description-container {
        font-size: 2rem;
        color: white; /* Optional: softer color for distinction */
        font-family: 'Anonymous Pro';
    }
    .book3-text h1 {
        margin-top: 10px;
        margin-bottom: -3px; /* Reduce space below the badge */
        font-family: 'Bison Bold', sans-serif;
         font-weight: 900;
        font-size: 7rem; /* Adjust font size */
    
        color: white; /* Text color */
        line-height: 0.6; /* Adjust line spacing */
        width: 70%;/* Set a maximum width for text wrapping */
        word-wrap: break-word; /* Ensure long words break correctly */
    }
    
.book3-text p {
    width: 60%;
    font-size: 1.3rem;
    margin: 10px 0;
    margin-top: 20px;
}

.price-paragraph{

    font-size: 2rem;
    font-family: 'Anonymous Pro';
}

.buy-now-button {
    background-color: black; /* Black background */
    color: #fec643; /* Yellow text */
    border: 2px solid #fec643; /* Yellow border */
    padding: 10px 20px; /* Button padding */
    font-size: 1rem; /* Font size */
    cursor: pointer;
    border-radius: 5px; /* Rounded corners */
   padding: 10px 150px;
}

.buy-now-button:hover {
    border: 2px solid white; /* Yellow border */
    color: BLACK; /* Yellow text */
    background-color: white;
}









.quantity-container {
    margin-bottom: 30px;
    display: flex;
    justify-content: center; /* Center the buttons and input */
    align-items: center; /* Vertically align content */
    margin-top: 10px; /* Space above */
    gap: 0; /* Remove gaps between buttons and input */
    border: 1px solid white; /* Reduce border thickness */
    border-radius: 12px; /* More rounded corners */
    width: max-content; /* Fit the width of the content */
    padding: 2px; /* Adjust padding if needed */
}

.quantity-btn {
    background: none; /* Remove default button styles */
    border: none; /* Remove individual borders */
    color: white; /* White text for the symbols */
    font-size: 1rem; /* Smaller font size for symbols */
    font-family: 'Arial', sans-serif;
    width: 40px; /* Reduce button width */
    height: 30px; /* Reduce button height */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    padding: 0; /* Remove extra padding */
    margin: 0; /* Remove extra margin */
}

.quantity-input {
    width: 15px; /* Narrower input width */
    height: 20px; /* Match height with buttons */
    text-align: center; /* Center the value */
    border: none; /* Remove border for input */
    font-size: 1.2rem; /* Smaller font size for input */
    color: white; /* Text color */
    background: none; /* Transparent background */
    outline: none; /* Remove focus outline */
    font-family: 'Anonymous Pro', sans-serif;
    appearance: textfield; /* For most browsers */
    padding: 0; /* Remove padding inside */
    margin: 0; /* Remove margin inside */
}

.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
    appearance: none; /* For Chrome, Safari, Edge */
    margin: 0; /* Ensure no additional spacing */
}










@media (max-width: 480px) {

    .description-container{

        width: 150%;
     
        text-align: left;
        justify-content: center;
        right: 0;
        margin-bottom: 300px;
        
    }
    .description-container1{

        width: 60%;
         font-size: 1rem;
      
        margin: 0;
        padding-left: 0;
        /* if you want the bullets themselves flush inside the box */
        list-style-position: inside;
        
    
    }
    .footer{

        width: 100%;
    }
    .cart-items
    {


        width: 100%;
    }

    .cart-preview{


        width: 100%;
    }

    .dropdown-images {
       justify-content: center;
        padding: 0;
        
        width: 100%;
      
       
        margin-left: -100px;
       gap: 1px;
        margin-top: -150px;
     
    }

    .dropdown-image{

  

       
       width: 100px;

       height: 140px;
       bottom: 0;
       margin-top: 150px;
       border-radius: 10px;
    }
    

    .header-icons .icon{
        font-size: 0.9rem;
      
        justify-content: flex-start;
        
        width: 3%;
        margin-right: 10%;
    


      
      
        padding: 0%;
    }
    .logo img{
        width: 120px;
        height: auto;
      margin-right: 50%;
     
  
}

        .menu-icon{
            margin-left: 10px;
            width: 17px;
            height: 14px;
        

        }


    .image-text {
        position: absolute;
        bottom: 10px;
        left: 2px;
        color: white;
        padding: 5px 10px;
        border-radius: 3px;
        font-size: 0.5rem;
        font-weight: 700;
        text-align: left;
        font-family: 'Helvetica Neue', sans-serif;
    }

    .dropdown-menu-list{
        margin-top: -100px;
    }

    .dropdown-menu-list li a {
        position: relative; 
        top: 0;
        left: 0;
          z-index: 9999; /* a large number ensures it stacks on top */
      
        color: white;
        text-decoration: none;
        font-size:1rem;
        font-weight: 700;
        font-family: 'Montserrat', sans-serif;
        display: block;
        transition: background 0s, color 0.1s;
        padding: 0px 0px;
        border-radius: 5px;
        text-align: left;
        margin-left: -30px;
        top: 0;
    }




    .buy-now-button{


        width: 90%;
        font-size: 1rem;
        padding: 7px;
       
    }
    .book3-text h1{


        width: 100%;
        font-size: 5rem;
    }
    .highlighted-text{

        
        width: 100%;
        font-size: 2.8rem;
        
    }


    .star-rating{

        margin-top: 280px;
    }
    .book3-image {
       
        margin: 0;         /* Remove extra margin */
        padding: 0;        /* Remove padding */
        position: absolute; /* Position it explicitly */
      
        left: 0;    
        top: 7.2%;       /* Align to the left */
        width: 45%;       /* Optional: full width of container */
    }


    .image-text-container{

              /* Remove any margins */
        padding: 0;        /* Remove any padding */
        text-align: left;  /* Align the text to the left */
        position: relative;
        top: 150px; /* If other positions are overriding */
        left: 5%;           /* Align to the left */
    }
    .book3-text {
        margin: 0;         /* Remove any margins */
        padding: 0;        /* Remove any padding */
        text-align: left;  /* Align the text to the left */
        position: relative; /* If other positions are overriding */
        left: 0;           /* Align to the left */
    }





    .preset-packs{
        width: 40%;
       
    }

    .preset-packs1{


        width: 38%;
       
        padding-left: 10px;
        padding-right: 10px;
    }








}











@media (min-width: 481px) and (max-width: 768px) {








    .cart-items
    {


        width: 100%;
    }

    .cart-preview{


        width: 100%;
    }

    .dropdown-images {
       justify-content: center;
        padding: 0;
        
        width: 100%;
      
       
        margin-left: -100px;
       gap: 1px;
        margin-top: -150px;
     
    }

    .dropdown-image{

  

       
       width: 100px;

       height: 140px;
       bottom: 0;
       margin-top: 150px;
       border-radius: 10px;
    }
    

    .header-icons .icon{
        font-size: 0.9rem;
      
        justify-content: flex-start;
        
        width: 3%;
        margin-right: 10%;
    


      
      
        padding: 0%;
    }
    .logo img{
        width: 120px;
        height: auto;
      margin-right: 50%;
     
  
}

        .menu-icon{
            margin-left: 10px;
            width: 17px;
            height: 14px;
        

        }


    .image-text {
        position: absolute;
        bottom: 10px;
        left: 2px;
        color: white;
        padding: 5px 10px;
        border-radius: 3px;
        font-size: 0.5rem;
        font-weight: 700;
        text-align: left;
        font-family: 'Helvetica Neue', sans-serif;
    }

    .dropdown-menu-list{
        margin-top: -100px;
    }

    .dropdown-menu-list li a {
        position: relative; 
        top: 0;
        left: 0;
          z-index: 9999; /* a large number ensures it stacks on top */
      
        color: white;
        text-decoration: none;
        font-size:1rem;
        font-weight: 700;
        font-family: 'Montserrat', sans-serif;
        display: block;
        transition: background 0s, color 0.1s;
        padding: 0px 0px;
        border-radius: 5px;
        text-align: left;
        margin-left: -30px;
        top: 0;
    }




    .buy-now-button{


        width: 90%;
        font-size: 1rem;
        padding: 7px;
       
    }
    .book3-text h1{


        width: 70%;
        font-size: 5rem;
    }
    .highlighted-text{

        
        width: 100%;
        font-size: 2.8rem;
        
    }


    .star-rating{

        margin-top: 280px;
    }
    .book3-image {
       
        margin: 0;         /* Remove extra margin */
        padding: 0;        /* Remove padding */
        position: absolute; /* Position it explicitly */
      
        left: 0;    
        top: 13.9%;       /* Align to the left */
        width: 35%;       /* Optional: full width of container */
    }


    .image-text-container{

              /* Remove any margins */
        padding: 0;        /* Remove any padding */
        text-align: left;  /* Align the text to the left */
        position: relative;
        top: 150px; /* If other positions are overriding */
        left: 5%;           /* Align to the left */
    }
    .book3-text {
        margin: 0;         /* Remove any margins */
        padding: 0;        /* Remove any padding */
        text-align: left;  /* Align the text to the left */
        position: relative; /* If other positions are overriding */
        left: 0;           /* Align to the left */
    }





    .preset-packs{
        width: 30%;
       
    }

    .preset-packs1{


        width: 38%;
       
        padding-left: 10px;
        padding-right: 10px;
    }









}












@media (min-width: 740px) and (max-width: 905px) {








    .preset-packs1{



        width: 30%;
    }

    .cart-items
    {


        width: 100%;
    }

    .cart-preview{


        width: 100%;
    }

    .dropdown-images {
       justify-content: center;
        padding: 0;
        
        width: 100%;
      
       
        margin-left: -100px;
       gap: 1px;
        margin-top: -150px;
     
    }

    .dropdown-image{

  

       
       width: 100px;

       height: 140px;
       bottom: 0;
       margin-top: 150px;
       border-radius: 10px;
    }
    

    .header-icons .icon{
        font-size: 0.9rem;
      
        justify-content: flex-start;
        
        width: 3%;
        margin-right: 10%;
    


      
      
        padding: 0%;
    }
    .logo img{
        width: 120px;
        height: auto;
    justify-content: center;
     
  
}

        .menu-icon{
            margin-left: 10px;
            width: 17px;
            height: 14px;
        

        }


    .image-text {
        position: absolute;
        bottom: 10px;
        left: 2px;
        color: white;
        padding: 5px 10px;
        border-radius: 3px;
        font-size: 0.5rem;
        font-weight: 700;
        text-align: left;
        font-family: 'Helvetica Neue', sans-serif;
    }

    .dropdown-menu-list{
        margin-top: -100px;
    }

    .dropdown-menu-list li a {
        position: relative; 
        top: 0;
        left: 0;
          z-index: 9999; /* a large number ensures it stacks on top */
      
        color: white;
        text-decoration: none;
        font-size:1rem;
        font-weight: 700;
        font-family: 'Montserrat', sans-serif;
        display: block;
        transition: background 0s, color 0.1s;
        padding: 0px 0px;
        border-radius: 5px;
        text-align: left;
        margin-left: -30px;
        top: 0;
    }




    .buy-now-button{


        width: 90%;
        font-size: 1rem;
        padding: 7px;
       
    }
    .book3-text h1{

       
        width: 50%;
        font-size: 5rem;
    }
    .highlighted-text{

        
        width: 100%;
        font-size: 2.8rem;
        
    }


    .star-rating{

        margin-top: 480px;
    }
    .book3-image {
       
        margin: 0;         /* Remove extra margin */
        padding: 0;        /* Remove padding */
        position: absolute; /* Position it explicitly */
      
        left: 0;    
        top: 13.9%;       /* Align to the left */
        width: 35%;       /* Optional: full width of container */
    }


    .image-text-container{

              /* Remove any margins */
        padding: 0;        /* Remove any padding */
        text-align: left;  /* Align the text to the left */
        position: relative;
        top: 150px; /* If other positions are overriding */
        left: 5%;           /* Align to the left */
    }
    .book3-text {
        margin: 0;         /* Remove any margins */
        padding: 0;        /* Remove any padding */
        text-align: left;  /* Align the text to the left */
        position: relative; /* If other positions are overriding */
        left: 0;           /* Align to the left */
    }





    .preset-packs{
        width: 15%;
       
    }

    .preset-packs1{


        width: 15%;
       
        padding-left: 10px;
        padding-right: 10px;
    }








}



@media (min-width: 906px) and (max-width: 1400px){





    .preset-packs1{



        width: 30%;
    }

    .cart-items
    {


        width: 100%;
    }

    .cart-preview{


        width: 100%;
    }

    .dropdown-images {
       justify-content: center;
        padding: 0;
        
        width: 100%;
      
       
        margin-left: -100px;
       gap: 1px;
        margin-top: -150px;
     
    }

    .dropdown-image{

  

       
       width: 100px;

       height: 140px;
       bottom: 0;
       margin-top: 150px;
       border-radius: 10px;
    }
    

    .header-icons .icon{
        font-size: 0.9rem;
      
        justify-content: flex-start;
        
        width: 3%;
        margin-right: 10%;
    


      
      
        padding: 0%;
    }
    .logo img{
        width: 120px;
        height: auto;
    justify-content: center;
     
  
}

        .menu-icon{
            margin-left: 10px;
            width: 17px;
            height: 14px;
        

        }


    .image-text {
        position: absolute;
        bottom: 10px;
        left: 2px;
        color: white;
        padding: 5px 10px;
        border-radius: 3px;
        font-size: 0.5rem;
        font-weight: 700;
        text-align: left;
        font-family: 'Helvetica Neue', sans-serif;
    }

    .dropdown-menu-list{
        margin-top: -100px;
    }

    .dropdown-menu-list li a {
        position: relative; 
        top: 0;
        left: 0;
          z-index: 9999; /* a large number ensures it stacks on top */
      
        color: white;
        text-decoration: none;
        font-size:1rem;
        font-weight: 700;
        font-family: 'Montserrat', sans-serif;
        display: block;
        transition: background 0s, color 0.1s;
        padding: 0px 0px;
        border-radius: 5px;
        text-align: left;
        margin-left: -30px;
        top: 0;
    }




    .buy-now-button{


        width: 90%;
        font-size: 1rem;
        padding: 7px;
       
    }
    .book3-text h1{

       
        width: 50%;
        font-size: 5rem;
    }
    .highlighted-text{

        
        width: 100%;
        font-size: 2.8rem;
        
    }


    .star-rating{

        margin-top: 480px;
    }
    .book3-image {
       
        margin: 0;         /* Remove extra margin */
        padding: 0;        /* Remove padding */
        position: absolute; /* Position it explicitly */
      
        left: 0;    
        top: 13.9%;       /* Align to the left */
        width: 35%;       /* Optional: full width of container */
    }


    .image-text-container{

              /* Remove any margins */
        padding: 0;        /* Remove any padding */
        text-align: left;  /* Align the text to the left */
        position: relative;
        top: 150px; /* If other positions are overriding */
        left: 5%;           /* Align to the left */
    }
    .book3-text {
        margin: 0;         /* Remove any margins */
        padding: 0;        /* Remove any padding */
        text-align: left;  /* Align the text to the left */
        position: relative; /* If other positions are overriding */
        left: 0;           /* Align to the left */
    }





    .preset-packs{
        width: 15%;
       
    }

    .preset-packs1{


        width: 15%;
       
        padding-left: 10px;
        padding-right: 10px;
    }







}











@media (max-width: 480px) {
    /* Slider Container */
    .slider {
        /* Remove padding-top to prevent aspect ratio conflicts */
        padding-top: 0;
        position: relative; 
        width: 100%; 
        height: auto; 
        background: #000; 
        display: flex;
        flex-direction: column; 
        justify-content: center;
        align-items: center;
        border-radius: 30px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); 
        padding: 20px; 
    }

    /* Image Container */
    .image-container-slider {
        position: relative; 
        width: 100%;
        max-width: 480px; /* Adjusted for mobile screens */
        /* Set a taller aspect ratio (4:5) */
        aspect-ratio: 4 / 5; 
        overflow: hidden; 
        border-radius: 30px;
        margin-top: 20px; /* Reduced margin for better spacing */
        margin-bottom: 20px; /* Reduced margin for better spacing */
    }

    /* Images */
    .image-container-slider img {
        width: 100%;
        height: 100%;
        object-fit: cover; 
    }

    .image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .before {
        z-index: 1;
    }

    .after {
        /* Adjust clipping to maintain horizontal slider functionality */
        clip-path: inset(0 50% 0 0);
        z-index: 2;
        transition: clip-path 0.3s ease;
    }

    /* Slider Bar */
    .slider-bar {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        background: #fff;
        z-index: 3;
        pointer-events: none;
        transition: left 0.3s ease;
    }

    /* Slider Control */
    .slider-control {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        z-index: 4;
        -webkit-appearance: none;
        appearance: none;
        background: transparent;
    }

    /* Slider Control Thumb */
    .slider-control::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 40px; 
        height: 40px;
        background: url('arrow.png') no-repeat center center;
        background-size: contain; 
        border: none; 
        border-radius: 50%; 
        cursor: pointer;
        box-shadow: none; 
    }



    .slider-control::-moz-range-thumb {
        width: 40px; 
        height: 40px;
        background: url('arrow.png') no-repeat center center;
        background-size: contain;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: none;
    }

    /* Adjust Range Input Track */
    .slider-control::-webkit-slider-runnable-track {
        width: 100%;
        height: 2px;
        background: transparent;
        border: none;
    }

    .slider-control::-moz-range-track {
        width: 100%;
        height: 2px;
        background: transparent;
        border: none;
    }

    /* Slider Paragraph */
    .slider-paragraph {
        text-align: center;
        padding: 10px;
    }

    /* Focus Styles for Accessibility */
    .slider-control:focus {
        outline: 2px solid #fff;
        outline-offset: 4px;
    }

    /* Active State Enhancements */
    .slider-control:active::-webkit-slider-thumb,
    .slider-control:active::-moz-range-thumb {
        transform: scale(1.1); /* Slightly enlarge the thumb on active state */
    }
}



.buy-stripe-button{
  background:linear-gradient(90deg,#635BFF,#7A5AF8);
  color:#fff;
  border:none;               /* remove the yellow outline */

   margin-bottom: 10px;
}


.buy-stripe-button:hover,
.buy-stripe-button:focus{
  filter:brightness(1.1);
  color: white;
  border: none;
}

.buy-stripe-button:active{
  filter:brightness(.9);
  color: white;
  border: none;
}



/* put this once, after every other .buy-now-button rule */
.button-stack{
  width:100%;  
  max-width:360px;         /* pick any width large enough for both labels */
 
   margin:0;   
}

/* 2.  Each button stretches to that width                       */
.button-stack .buy-now-button{
  display:block;
  width:100%;
  padding:10px clamp(0.8rem, 6vw, 36px);  /* ⇦ fluid side-padding */
  box-sizing:border-box;
}

/* put this at the very end of your 480 px block */
@media (max-width:480px){
  /* keep everything inside the viewport */
  .button-stack .buy-now-button{
    width:100%;
  max-width: 300px;
    padding-right:0;          /* kill any extra padding */
    margin-right:0;           /* …and margins           */
  }

  /* optional: safeguard ALL elements */
  *{
    max-width:100%;
  }
}
