body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Style for WebKit browsers */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(45deg, #ff6ec4, #7873f5);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(45deg, #ff6ec4, #7873f5, #4facfe);
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        /* Universal scrollbar style for better consistency */
        body {
            scrollbar-width: thin;
            scrollbar-color: black;
        }

.screen-container{
    margin: 0 70px 0 70px !important;

}

.page-header {
    border-left: 2px solid #39FF14; /* Neon green color */
    border-right: 2px solid #39FF14; /* Neon green color */
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,255,0,1) 50%, rgba(0,0,0,1) 100%);
    box-shadow:
        -8px 0 15px #39FF14, /* Left side */
        8px 0 15px #39FF14; /* Right side */
}

.deals-background {
    filter: brightness(50%);
    background: url('/images/dealsbg.webp') no-repeat center center fixed;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -10;
}

.neon-border {
    border-left: 2px solid #39FF14; /* Neon green color */
    border-right: 2px solid #39FF14; /* Neon green color */
    border-bottom: 2px solid #39FF14; /* Neon green color */
    box-shadow: 0 0 8px #39FF14, 0 0 15px #39FF14; /* Glowing effect */
}

.product-image-container {
    margin: 20px auto !important;
    position: relative;
    display: inline-block;
    width: 100%; /* Ensures the container takes the full width of its parent column */
}
.product-border{
    border: 3px solid #f0f0f0; /* Silver border */
    box-shadow: 0 0 25px rgba(192, 192, 192, 1); /* Stronger glow on hover */
    transition: box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.product-image {
    width: 100%;
    display: block;
    cursor: pointer;
    max-height: 100%; /* Default max-height for larger screens */
}

@media (max-width: 1140px) {
    .product-image {
        max-height: 350px; /* Max-height for smaller screens */
    }
}

.overlay {
    /*position: absolute;*/
    bottom: 0;
    background: rgba(34, 139, 34, 0.8); /* semi-transparent overlay */
    color: white;
    width: 100%;
    text-align: center;
    padding: 10px 0; /* Padding for aesthetic spacing */
    font-size: 23px;
}

/* Semi-transparent background for specific text containers */
.text-container {
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    border-radius: 5px; /* Rounded corners for aesthetics */
    padding: 45px; /* Padding for spacing */
    margin-bottom: 20px; /* Margin for spacing between elements */
    margin-top: 180px !important; /* Adjust to match the navbar's height */
}

.home-icon {
    color: white;
    font-size: 1.5em; /* Icon size */
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none !important; /* Remove default arrow background */
}

.carousel-control-prev-icon i,
.carousel-control-next-icon i {
    color: #39FF14; /* Set the color to black */
    font-size: 2em; /* Adjust the size as needed */
}
.carousel-control-next, .carousel-control-prev {
    opacity: 1 !important;
}

.carousel-control-prev, .carousel-control-next {
    position: fixed; /* Fix position relative to the viewport */
    top: 50%; /* Center vertically */
    z-index: 1050; /* Ensure they are above other content */
    width: 50px; /* Increase clickable area for usability */
    height: 50px; /* Match width for square appearance */
}

.carousel-control-prev {
    left: calc(10% - 12px); /* Position from the left of the viewport */
}

.carousel-control-next {
    right: calc(10% - 12px); /* Position from the right of the viewport */
}

.carousel-item img {
    width: 100vw;
    height: auto;
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
}
.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 40px !important;
    height: 40px !important;
}

.preloaderBg {
    position: fixed;
    z-index: 10000;
    top: 0;
    background: white;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader-wrap {
    position: relative;
    width: 250px;
    height: 250px;
}
.preloader-text-wrap {
    position: relative;
    width: 500px;
    height: 250px;
}
.preloader-logo {
    margin: auto;
    background: url(/images/outrageous-logo.svg) no-repeat center;
    background-size: contain;
    width: 200px;
    height: 200px;
    position: absolute;
    top: 25px;
    left: 25px;
    animation: fadeIn 1s ease-in-out infinite;
    /*background: black;*/
}
.preloader-heading {
    margin: auto;
    width: 200px;
    height: 200px;
    position: absolute;
    top: 110px;
    color:black;
    left: 25px;
    animation: fadeIn 1s ease-in-out infinite;
    /*background: black;*/
}
.preloader-circle {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #25a3ff;
    border-radius: 50%;
    width: 250px;
    height: 250px;
    animation: spin 1s ease-in-out infinite;
    position: absolute;
    top: 0;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px auto;





    /*width: 100%;*/
    max-width: 800px;
    justify-content: center;
}
.switch-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.switch-label {
    font-weight: 500;
    font-size: 16px;
    margin-right: 10px;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: indianred;
    transition: 0.4s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    color: #333;
    text-align: center;
    line-height: 26px;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(26px);
    content: "ON";
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.button {
    width: 200px;
    background-color: white;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    margin: 20px;
}

.button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.card-body {
    padding: 2rem !important;
}

.icon-link {
    margin-top: 10px;
    transition: box-shadow 0.3s ease; /* Smooth transition for the box shadow */
}

.icon-link:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Apply box shadow on hover */
    transform: scale(1.1);
}

.icon-del {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
}

.icon-update {
    position: absolute;
    top: 10px;
    right: 40px;
    font-size: 1.2rem;
}
.icon-link{
    margin-top: 10px;
    transition: box-shadow 0.3s ease; /* Smooth transition for the box shadow */
}
.icon-link:hover{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Apply box shadow on hover */
    transform: scale(1.1);
}
.icon-add {
    background-color: forestgreen;
    color: white;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
}
.card-header{
    background-color: var(--highlight) !important;
}

.add-to-cart {
    margin-bottom: 10px;
    color: white !important;
    background-color: dimgrey;
    border: none;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between; /* Spreads items across the button */
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.add-to-cart.loading {
    pointer-events: none; /* Disable clicks during loading */
}

.add-to-cart.btn-added {
    background-color: blue; /* Blue background when item is added to cart */
}

.add-to-cart .cart-icon {
    font-size: 24px;
    margin-right: auto;
}

.add-to-cart .plus-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.add-to-cart.loading .plus-icon {
    display: none; /* Hide plus/minus icon when loading spinner is active */
}

.add-to-cart.loading::after {
    content: '';
    border: 3px solid white;
    border-top: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

/* Price Styling */
.add-to-cart .price-text {
    font-size: 18px;
    margin-left: auto;
    white-space: nowrap;
}

/* Notification Styling */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: green;
    color: white;
    font-size: 14px;
    border-radius: 5px;
    display: none;
    z-index: 1000;
}

/* Notification show class */
.notification.show {
    display: block;
    animation: fadeout 3s ease forwards;
}

@keyframes fadeout {
    0% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

/* Spinner Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Ensure carousel items are positioned relative for the button */
.carousel-item {
    position: relative;
}



.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%; /* Make sure the wrapper spans the full width */
}

.page-header {
    padding: 10px 20px; /* Adjust padding for spacing */
        margin: 0 70px 0 70px;
}

.left-icons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 10px; /* Space between the icons and left edge */
}

.left-icons a {
    margin-bottom: 25px; /* Spacing between home and back icon */
    font-size: 37px;
    color: forestgreen;
}

.logo-container {
    flex-grow: 1;
    text-align: center; /* Ensure the logo stays centered */
}


.right-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 10px;
}
.right-icons a {
    font-size: 37px;
    margin-bottom: 25px;
    color: forestgreen;
}

.cart-icon {
    position: relative;
    font-size: 37px; /* Icon size */
    color: forestgreen;
}

.cart-badge {
    position: absolute;
    top: 34%;
    left: 61%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 17px;
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-container {
    position: relative;
}

.cart-container .cart-badge {
    position: absolute;
    top: 42%;
    left: 57%;
    transform: translate(-50%, -50%);
    color: black;
    padding: 0px 2px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

.price {
    margin-left: 1rem;
}

.modal-footer {
    padding-top: 0rem;
}

#inactivityVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    z-index: 10000; /* Ensures it overlays everything */
    display: none;
}

.isDisabled {
    color: currentColor;
    cursor: not-allowed !important;
    opacity: 0.5;
    text-decoration: none;
}

.cartModal-content {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Modern shadow */
}

.cartModal-header {
    background-color: #f8f9fa; /* Light grey for modern look */
    border-bottom: 1px solid #dee2e6;
    border-radius: 10px 10px 0 0;
}

.cartModal-header .cartModal-title {
    font-weight: 600;
    color: #333;
}

.cartModal-header .cartModal-close {
    color: #333;
}

.cartModal-body {
    padding: 20px;
    background-color: #fff;
}

.cartModal-table {
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0 10px; /* Add spacing between rows for a modern look */
}

.cartModal-table-header th {
    font-weight: bold;
    color: #555;
}

.cartModal-table-hover tbody tr:hover {
    background-color: #f1f1f1; /* Subtle hover effect */
}

.cartModal-items td,
.cartModal-items th {
    vertical-align: middle; /* Center align content */
}

#cart-total-price {
    font-size: 1.25rem;
    font-weight: bold;
}

.cartModal-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    border-radius: 0 0 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cartModal-checkout-btn {
    background-color: #007bff;
    border-color: #007bff;
}

.cartModal-checkout-btn:hover {
    background-color: #0056b3;
}

.cartModal-close-btn {
    border-color: #6c757d;
    color: #6c757d;
}

.cartModal-close-btn:hover {
    background-color: #6c757d;
    color: #fff;
}

