#canvas-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

#carousel-controls {
    position: absolute;
    top: 70%;
    left: 0%;
    display: flex;
    justify-content: space-between;
    width: 100%;
    z-index: 99;
}

@media (min-width: 1201px) {
  #carousel-controls {
    top: 75%;
    left: -1%;
  }
}

@media (min-width: 1440px) {
  #carousel-controls {
    top: 71%;
  }
}

.hold-btn {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    color: #BA9056;
    font-size: 13px;
    border: 1px solid #BA9056;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9997;
    user-select: none;
    width: 80px;
    height: 80px;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.hold-btn:before,
.hold-btn:after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: solid 1px #BA9056;
    border-radius: 50%;
}

.hold-btn:before {
    animation: ripple 2s linear infinite;
}

.hold-btn:after {
    animation: ripple 2s 1s linear infinite;
}

@keyframes ripple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

@media (max-width: 1200px) {
    .nav-btn-right {
        left: 70% !important;
    }

    .nav-btn-left {
        left: 24% !important;
    }
}

@media (max-width: 768px) {
    .hold-btn {
        display: block;
        bottom: 68px;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (min-width: 768px) {
    .hold-btn {
        display: none !important;
    }

    .scroll-indicator {
        display: block;
    }
}

.scroll-indicator {
    text-align: center;
    animation: fadeIn 2s ease-in-out;
    bottom: 80px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 40px;
    height: 59px;
    border: 2px solid #EDB86E;
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
}

.wheel {
    width: 4px;
    height: 15px;
    background: #EDB86E;
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 8px;
    }

    50% {
        opacity: 0.5;
        top: 16px;
    }

    100% {
        opacity: 1;
        top: 8px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

#product-info {
    position: absolute;
    bottom: 170px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 20;
}

#product-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

#product-index {
    font-size: 14px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
}

#product-title {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 2px;
    margin: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.nav-btn-left,
.nav-btn-right {
    position: absolute;
    top: 70%;
    transform: translateY(-50%);
    width: 75px;
    height: 50px;
    background: transparent;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease;
    border: navajowhite;
}

.nav-btn-left::before,
.nav-btn-right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    padding: 1px;
    background: linear-gradient(311deg, #2E2C21 15%, #BA9056 53%, #2E2C21 80%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask-composite: exclude;
    pointer-events: none;
}

.nav-btn-left:hover,
.nav-btn-right:hover {
    background: transparent;
    transform: translateY(-50%) scale(1.1);
    border: none;
}

.nav-btn-left.left {
    left: 40px;
}

.nav-btn-left.right {
    right: 40px;
}

.label-aum-cc {
    font-size: 32px;
    color: #EDB86E;
    font-family: 'LucidaCalligraphy', cursive;
    z-index: 20;
    left: 50%;
    top: 16px;
    position: relative;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 20px;
    }

    .nav-btn-left,
    .nav-btn-right {
        display: none;
    }

    #product-title {
        font-size: 22px;
        margin: 0;
    }

    .btn-aum {
        padding: 7px 40px;
        -webkit-user-select: none;
         user-select: none;
    }

    #product-info {
        bottom: 187px;
        width: 100%;
    }

    #product-title-wrapper {
        gap: 0;
    }

    .label-aum-cc {
        top: 0px;
        font-size: 23px;
    }
}

.custom-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    border-top: 1px solid #333;
    z-index: 1000;
    border-width: 1px 0;
    border-style: solid;
    border-image-source: linear-gradient(270deg, #050607 0%, #BA9056 50.11%, #151517 100%);
    border-image-slice: 1;
    border-bottom: none;
}

.custom-footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 800px;
}

.custom-footer .footer-links a {
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #fff;
    opacity: 0.8;
}

.custom-footer .footer-links a:hover {
    color: #EDB86E;
}

@media (max-width: 1200px) {
    .custom-footer .footer-links {
        gap: 100px;
    }
    .custom-footer .footer-links a {
   font-size: 11px;
}
}

@media (min-width: 1200px) {
    .custom-footer .footer-links {
        gap: 400px;
    }
}