/*
universal classes*/
body {
    background: #f9f9f9 !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.p-20 {
    padding: 20px;
}


/*custom design classes*/
.d-flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.section-image {
    max-height: 400px;
}

.fixed-nav-section {
    background: #ffffff;
}

.custom-navbar.fixed-nav-section {
    background: #ffffff;
    -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.fixed-nav-section .nav li a {
    color: #575757;
}

.fixed-nav-section .navbar-brand {
    color: #575757 !important;
}

.iphone-wrapper {
    position: relative;
    width: 250px;
    height: 450px;
    margin-top: 10px;
}

.screen-carousel {
    position: absolute;
    top: 10px;
    left: 12px;
    width: 225px;
    overflow: hidden;
    border-radius: 25px;
    z-index: 1;
}

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

.carousel-inner .item {
    margin: 0;
    padding: 0;
}

.carousel-inner,
.carousel-inner .item {
    width: 100%;
}

.carousel-inner {
    transform: translate3d(0, 0, 0);
}
.carousel-inner, .item {
    background-color: #000; /* or match the image edge color */
}
.phone-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 508px;
    z-index: 2;
    pointer-events: none;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background-color: #efefef;
    border: none;
    color: #000;
    font-size: 18px;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    width: 24px; /* increased size for better centering */
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.nav-arrow .left {
    font-size: 16px;
    position: relative;
    top: 0;
    left: -1px;
}

.nav-arrow .right {
    font-size: 16px;
    position: relative;
    top: 0;
    left: 1px;
}
.arrow-left {
    left: -40px;
}

.arrow-right {
    right: -40px;
}
.store-buttons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    background-color: #000;
    color: white;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    width: fit-content;
    transition: background 0.3s;
}

.store-btn:hover {
    background-color: #333;
}

.store-logo {
    width: 32px;
    height: 32px;
    margin-right: 12px;
}

.store-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.store-text .small-text {
    font-size: 12px;
    color: #ccc;
}

.store-text .large-text {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}
.imac-wrapper {
    position: relative;
    height: auto;
    margin-top: 10px;
}

.iframe-content {
    position: absolute;
    top: 11px;
    left: 2px;
    width: 99%;
    height: 268px;
    border: none;
    z-index: 1;
}

.imac-frame {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
    pointer-events: none;
}


#cookie-popup {
    position: fixed; /* 👈 Stays on screen */
    bottom: 20px;
    left: 20px;
    max-width: 300px;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    display: none;
    z-index: 9999;
}

#cookie-popup h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
}

#cookie-popup p {
    font-size: 14px;
    margin-bottom: 10px;
}

.cookie-buttons {
    display: flex;
    justify-content: space-between;
}

.cookie-buttons button {
    padding: 6px 12px;
    border: 1px solid #202020;
    border-radius: 25px;
    cursor: pointer;
}

.accept-btn {
    background-color: #202020;
    color: white;
}

.reject-btn {
    background-color: #ffffff;
    color: #000000;
}

#cookie-close {
    position: absolute;
    top: 5px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #888;
}

.nav>li>a:hover {
    background: unset !important;
}

@media only screen and (max-width: 992px) {
    .iframe-content{
        width: 99%;
        height: 204px;
        top: 8px;
    }

    .store-buttons{
        margin-left: 25px;
    }

    .footer-menu{
        margin-left: 0;
    }
}