/* Common styling for all product pages */
.product-top-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #17181A;
    background-image: url('../../images/wave-pattern-light.svg');
    background-repeat: repeat;
    height: 370px;
    position: relative;
    overflow: hidden;
}

.product-top-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.product-top-header-content {
    padding: 15px;
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-top-header-content p:nth-child(1) {
    font-size: 25px;
    color: #fff;
    font-weight: 500;
}

#top-header-label-one {
    color: #fff;
    font-weight: 500;
    padding-top: 5px;
    font-size: 18px;
}

#line {
    font-weight: 200;
    font-size: 22px;
    padding-left: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Typing text color for all product pages */
[id$="-typing"] {
    color: #7B586B;
}

.products-content-box {
    width: 300px;
    min-height: 680px;
    display: flex;
    flex-direction: column;
    flex: 0 0 300px;
}

.products-content-container {
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.payment-methods {
    background-color: #17181A;
    width: 100%;
}

.payment-methods-content {
    width: 70%;
    border-bottom: #ccc solid 1px;
}
