html,
body {
    background-color: #0b141d;
    color: white;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1 {
    font-weight: 500;
    font-size: 70px;
}

h2 {
    font-weight: 500;
    font-size: 50px;
    margin-bottom: 16px;
}

h6 {
    font-size: 30px;
    font-weight: 600;
}

h3 {
    font-size: 25px;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

h5 {
    font-size: 14px;
    margin-bottom: 16px;
}

p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(156, 163, 175, 1);
}

a {
    text-decoration: none;
    border-bottom: none;
    color: black;
}

.container {
    max-width: 100%;
    padding: 0 6vw;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.py-100 {
    padding: 100px 0;
}

.py-200 {
    padding: 200px 0;
}

.pb-40 {
    padding: 40px 0;
}

.pb-50 {
    padding-bottom: 50px;
}

.pt-70 {
    padding-top: 70px;
}

.py-150 {
    padding: 150px 0;
}

.py-40 {
    padding: 40px 0;
}

.nav_item {
    color: rgba(255, 179, 65, 1) !important;
    font-size: 20px;
    font-weight: 700;
}

.nav_item:hover {
    color: rgba(255, 179, 65, 1);
    font-size: 20px;
    font-weight: 700;
}

.navbar-toggler {
    border-color: white !important;
}

.navbar-toggler-icon {
    filter: invert(1) brightness(100%) !important;
}

.banner-font-size {
    font-size: 20px;
}

.header-section {
    background-color: #0b141d;
    padding: 80px 0 40px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.header-title {
    position: relative;
    display: inline-block;
    font-weight: 600;
    z-index: 1;
    letter-spacing: 2px;
}

.header-title::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 20%;
    width: 50%;
    height: 80%;
    background-color: rgba(209, 147, 56, 1);
    transform: rotate(-5deg);
    z-index: -1;
}

.banner-font-size {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-top: 10px;
}

.side-img-left {
    position: absolute;
    left: -150px;
    top: 50%;
    transform: translateY(-50%) translateX(0);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 10;
    transition: transform 0.2s ease-out;
    will-change: transform;
    opacity: 1;
}

.side-img-right {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    opacity: 1;
}

@media (max-width: 992px) {

    .side-img-left,
    .side-img-right {
        display: none;
    }

    .header-title {
        font-size: 2.5rem;
    }
}

.tilt-container {
    transform-origin: center;
    margin-left: -10%;
    position: relative;
}

.tilted-slider-area {
    position: relative;
    overflow: hidden;
    padding: 70px 0 80px 0;
}

.slider-row {
    margin: 30px 0;
}

.slider-wrapper {
    transform: rotate(6deg);
}

.slider-row.reverse .slider-track {
    animation-direction: reverse;
}

.slider_img {
    min-width: 400px;
    height: 300px;
    border-radius: 18px;
    object-fit: cover;
}

.slider_img_two {
    min-width: 200px;
    height: 100px;
    border-radius: 18px;
    object-fit: cover;
}

.slider-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee 80s linear infinite;
}

/*////////////////////*/

.yellow-ticker-wrap {
    background: #ffb341;
    padding: 20px 0px;
    position: absolute;
    width: 140%;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(6deg);
    z-index: 50;
    overflow: hidden;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    will-change: transform;
}

.mySwiperText::part(wrapper) {
    transition-timing-function: linear !important;
}

.ticker-text {
    font-family: 'Arial Black', sans-serif;
    font-size: clamp(40px, 8vw, 70px);
    font-weight: 900;
    color: transparent;
    -webkit-text-fill-color: transparent;

    -webkit-text-stroke: 1px #111;
    text-stroke: 1px #111;

    paint-order: stroke fill;

    text-transform: uppercase;
    padding: 0 40px;
    white-space: nowrap;
    letter-spacing: 2px;
    text-rendering: optimizeLegibility;
}

@media (max-width: 768px) {
    .yellow-ticker-wrap {
        padding: 15px 0;
        width: 180%;
    }

    .ticker-text {
        -webkit-text-stroke: 1px #111;
        font-size: 32px;
        padding: 0 20px;
        letter-spacing: 1px;
    }
}

/*///////////////////////*/

.yellow-ticker-wrap-second {
    background: rgba(255, 161, 21, 1);
    padding: 50px 0 50px;
    transform: translateY(-50%);
    z-index: 50;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    position: relative;
    top: 40px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.section-padding {
    padding: 100px 0;
}

/*
.button-style {
    background: #fbc76b;
    padding: 20px 40px;
    border-radius: 30px;
    color: black;
    font-size: 18px;
    font-weight: 700;
}
*/

/*//////////////////////*/

.button-style {
    position: relative;
    padding: 20px 80px;
    border-radius: 30px;
    color: black;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    background: #fbc76b;
    z-index: 1;
    overflow: hidden;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

/* 1. Animation ko shuru mein hide kar diya */
.button-style::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            transparent,
            rgba(255, 0, 0, 0.2),
            rgba(255, 0, 0, 0.5),
            #ff0000);
    animation: snake-rotate 1.5s linear infinite;
    z-index: -2;
    opacity: 0;
    /* Hidden by default */
    transition: 0.3s;
    /* Smooth appearance */
}

/* 2. Hover karne par animation show hogi */
.button-style:hover::before {
    opacity: 1;
}

.button-style::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: #fbc76b;
    border-radius: 26px;
    z-index: -1;
    transition: 0.3s;
}

.button-style:hover::after {
    background: #fbd38d;
    /* Hover par button ka inner color halka change hoga */
}

.button-style:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

@keyframes snake-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- ANIMATED ADD TO CART BUTTON STYLE --- */
.add-cart-btn-large {
    position: relative;
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    color: black;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    background: #fbc76b;
    z-index: 1;
    overflow: hidden;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    margin-bottom: 25px;
    text-align: center;
}

.add-cart-btn-large::before {
    content: '';
    position: absolute;
    top: -150%;
    left: -50%;
    width: 200%;
    height: 400%;
    background: conic-gradient(transparent,
            transparent,
            rgba(255, 0, 0, 0.2),
            rgba(255, 0, 0, 0.5),
            #ff0000);
    animation: snake-rotate 1.5s linear infinite;
    z-index: -2;
    opacity: 0;
    transition: 0.3s;
}

.add-cart-btn-large:hover::before {
    opacity: 1;
}

.add-cart-btn-large::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: #fbc76b;
    border-radius: 27px;
    z-index: -1;
    transition: 0.3s;
}

.add-cart-btn-large:hover::after {
    background: #fbd38d;
}

.add-cart-btn-large:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    color: black;
}

@keyframes snake-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}




/*///////////////////////*/

.ai-mask-generator {
    padding: 0px 0 100px 0;
}

/*
.ai-mask {
    padding: 20px;
    border: 1px solid rgba(255, 179, 65, 1);
    border-radius: 24px;
}
*/


/*////////////////////////*/

.ai-mask-wrapper {
    position: relative;
    display: inline-block;
    padding: 20px;
    border-radius: 24px;
    overflow: hidden;
    z-index: 1;
}

/* 1. Before element ko default mein chhupa diya (opacity: 0) */
.ai-mask-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            transparent,
            rgba(255, 179, 65, 0.3),
            rgba(255, 179, 65, 1));
    animation: rotate-snake 3s linear infinite;
    z-index: -2;
    opacity: 0;
    /* Hidden by default */
    transition: opacity 0.4s ease;
    /* Smooth appearance ke liye */
}

/* 2. Hover karne par before element show hoga */
.ai-mask-wrapper:hover::before {
    opacity: 1;
}

.ai-mask-wrapper::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #0b121a;
    border-radius: 22px;
    z-index: -1;
}

.ai-mask-img {
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 15px;
}

@keyframes rotate-snake {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*//////////////////////////////////*/


/*/////////////////////*/
.collection-card {
    position: relative;
    border-radius: 20px;
    background: #0b121a;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 2px solid rgba(255, 179, 65, 1);
}

/* 1. Animation ko default mein hide kiya */
.collection-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            transparent,
            rgba(255, 179, 65, 0.2),
            rgba(255, 179, 65, 1));
    animation: rotate-card-border 4s linear infinite;
    z-index: -2;
    opacity: 0;
    /* Shuru mein nazar nahi aayega */
    transition: opacity 0.5s ease;
    /* Fading effect ke liye */
}

/* 2. Hover karne par border animation dikhegi */
.collection-card:hover::before {
    opacity: 1;
}

.collection-card::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: #0b121a;
    border-radius: 18px;
    z-index: -1;
}

@keyframes rotate-card-border {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.collection-img {
    height: 400px;
    object-fit: fill;
    /*border-radius: 17px 17px 0 0;*/
    display: block;
    padding: 5px;
}

.collection-card > div {
    position: relative;
    z-index: 2;
}

/*///////////////////////*/


.dull-color-p {
    color: rgba(107, 114, 128, 1);
}

.collection-amount {
    color: rgba(255, 179, 65, 1);
}

.tokonomics {
    padding-bottom: 100px;
}

.svg_icon {
    background: rgba(0, 0, 0, 1);
    height: 48px;
    width: 48px;
    display: flex;
    justify-content: center;
    align-items: anchor-center;
    border-radius: 50%;
}

/*
.toko_card {
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px;
    text-align: center;
    border-radius: 20px;
}
*/

.toko_card {
    position: relative;
    padding: 35px;
    text-align: center;
    border-radius: 20px;
    background: #0b121a;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    border: none;
    box-shadow: rgba(255, 179, 65, 0.3) 0px 2px 8px 0px;
}

/* 1. Animation ko default mein hide kiya */
.toko_card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            transparent,
            rgba(255, 179, 65, 0.2),
            rgba(255, 179, 65, 1));
    animation: rotate-snake 4s linear infinite;
    z-index: -2;
    opacity: 0;
    /* Hidden by default */
    transition: opacity 0.4s ease-in-out;
    /* Smooth fade-in */
}

/* 2. Hover karne par animation show hogi */
.toko_card:hover::before {
    opacity: 1;
}

.toko_card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #0b121a;
    border-radius: 18px;
    z-index: -1;
}

.toko_card:hover {
    transform: translateY(-15px);
    box-shadow: rgba(255, 179, 65, 0.3) 0px 2px 8px 0px;
}

.toko_card > * {
    position: relative;
    z-index: 2;
}

.svg_icon {
    margin-bottom: 10px;
}

@keyframes rotate-snake {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*////////////////////////*/

/*
.token-card {
    background: rgba(19, 33, 52, 1);
    padding: 40px;
    border-radius: 20px;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
*/
.token-card {
    position: relative;
    background: rgba(19, 33, 52, 1);
    padding: 40px;
    border-radius: 20px;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    z-index: 1;
    /* Optional: Smooth movement ke liye transition */
    transition: transform 0.3s ease;
}

/* 1. Animation ko default mein hide kiya (opacity 0) */
.token-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            transparent,
            rgba(255, 179, 65, 0.2),
            rgba(255, 179, 65, 1));
    animation: rotate-snake 4s linear infinite;
    z-index: -2;
    opacity: 0;
    /* Shuru mein invisible */
    transition: opacity 0.4s ease;
    /* Smoothly nazar aane ke liye */
}

/* 2. Hover karne par border animation show hogi */
.token-card:hover::before {
    opacity: 1;
}

/* Optional: Hover par card thora sa move ho */
.token-card:hover {
    transform: translateY(-5px);
}

.token-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: rgba(19, 33, 52, 1);
    border-radius: 18px;
    z-index: -1;
}

.token-card > * {
    position: relative;
    z-index: 2;
}

@keyframes rotate-snake {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.token-title {
    color: #ffb84d;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.label-text {
    color: #d1d5db;
    font-size: 1.2rem;
    font-weight: 500;
}

.percent-text {
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.progress {
    background-color: #000000 !important;
    height: 12px !important;
    border-radius: 10px;
    margin-top: 8px;
    overflow: visible;
}

.progress-bar {
    border-radius: 10px;
    width: 0;
    /* Shuru mein 0 hogi */
    transition: width 1.5s cubic-bezier(0.1, 0.5, 0.5, 1);
    /* Smooth filling effect */
}

.bg-cex {
    background-color: #fcd535 !important;
}

.bg-comm {
    background-color: rgba(255, 140, 0, 1);
     !important;
}

.bg-mark {
    background-color: rgba(168, 85, 247, 1);
     !important;
}

.bg-tres {
    background: rgba(107, 114, 128, 1);
}

.bg-eco {
    background: rgba(80, 235, 132, 1);
}

.allocation-item {
    margin-bottom: 25px;
}

/*
.button-style-two {
    padding: 20px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    border: 1px solid rgba(255, 179, 65, 1);
    background: rgba(19, 33, 52, 1);
    color: rgba(255, 179, 65, 1);
}
*/
.button-style-two {
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid rgba(255, 179, 65, 1);
    background: rgba(19, 33, 52, 1);
    color: rgba(255, 179, 65, 1);
    display: inline-block;
    max-width: 100%;
    word-break: break-all;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

.button-style-two:hover {
    background: rgba(255, 179, 65, 0.1);
    color: rgba(255, 179, 65, 1);
}

@media (max-width: 576px) {
    .button-style-two {
        font-size: 14px;
        padding: 12px 20px;
    }
}


.toko_card_join {
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    text-align: center;
    border-radius: 20px;
}

.svg_icon {
    background: rgba(255, 255, 255, 0.05);
    ;
    height: 48px;
    width: 48px;
    display: flex;
    justify-content: center;
    align-items: anchor-center;
    border-radius: 50%;
}

.social-link {
    color: rgba(107, 114, 128, 1);
}

.artwork-card {
    border: 5px solid rgba(128, 130, 133, 1);
    border-radius: 20px;
}

/*
.artwork-img {
    height: 350px;
    object-fit: fill;
    border-radius: 20px;
    padding:10px;
}
*/

.cartwork-card {
    position: relative;
    border-radius: 20px;
    background: #0b121a;
    overflow: hidden;
    z-index: 1;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cartwork-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            transparent,
            rgba(255, 179, 65, 0.2),
            rgba(255, 179, 65, 1));
    animation: snake-rotate-artwork 4s linear infinite;
    z-index: -2;
}

.cartwork-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #0b121a;
    border-radius: 18px;
    z-index: -1;
}

.artwork-img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    position: relative;
    z-index: 2;
}

@keyframes snake-rotate-artwork {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}




.artwork-padding > .container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    /* Ensure it behaves as a static screen */
    width: 100%;
    margin: 0 auto;
    z-index: 10;
    background-color: #0b141d;
}

.artwork-padding swiper-container {
    width: 100%;
    /* Ensure it handles touch events properly */
    touch-action: pan-y;
}



footer {
    background: linear-gradient(rgb(0 0 0 / 26%), rgb(0 0 0 / 0%)), url(../assets/img/footer-bg.png);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0 20px 0;
    border-top: 4px solid #ff9d2d;
    position: relative;
}

.footer-heading {
    color: rgba(255, 179, 65, 1);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.newsletter-group {
    position: relative;
    margin-bottom: 15px;
}

.newsletter-input {
    background: transparent;
    border: 1px solid #555;
    border-radius: 5px;
    color: rgba(255, 179, 65, 1);
    padding: 10px 15px;
    color: white;
    width: 100%;
    outline: none;
}

.newsletter-input::placeholder {
    color: #777;
    font-size: 0.9rem;
}

.newsletter-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ff9d2d;
}

.form-check-label {
    font-size: 0.8rem;
    color: #ccc;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff9d2d;
}

.social-icons {
    margin-top: 25px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ff9d2d;
}

.copyright-text {
    font-size: 0.85rem;
    color: #888;
    margin-top: 30px;
    margin-bottom: 0px;
}

.newsletter-input::placeholder {
    color: #ff9d2d !important;
    opacity: 1;
    font-size: 0.9rem;
}

.newsletter-input::-ms-input-placeholder {
    color: #ff9d2d;
}

.newsletter-input::placeholder {
    color: #ff9d2d;
}


.partner-wrapper {
    background-color: #0b141d;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.logo-band {
    width: 120%;
    position: absolute;
    left: -10%;
    padding: 80px 0;
    background: rgba(255, 161, 21, 1);
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.logo-band-new {
    width: 120%;
    position: absolute;
    left: -10%;
    padding: 80px 0;
    background: rgba(255, 179, 65, 1);
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.band-top {
    transform: rotate(5deg);
    z-index: 1;
    top: 25%;
}

.band-bottom {
    transform: rotate(-7deg);
    z-index: 2;
    top: 31%;
}

.partner-wrapper {
    width: 100%;
}

.logo-band,
.logo-band-new {
    overflow: hidden;

}

.logo-container {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
    will-change: transform;
}

.band-top .logo-container {
    animation: scrollLinear 100s linear infinite;
}

.band-bottom .logo-container {
    animation: scrollLinear 120s linear infinite;
}

.logo-item {
    height: 40px;
    margin: 0 60px;
    flex-shrink: 0;
    opacity: 0.8;
    mix-blend-mode: darken;
}

@keyframes scrollLinear {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.artwork-padding {
    position: relative;
}

.artwork-padding .container {
    position: relative;
    height: 100vh;
    width: 100%;
}

.artwork-padding.is-fixed .container {
    position: fixed;
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    .partner-wrapper {
        min-height: 300px;
    }

    .logo-band {
        padding: 10px 0;
        width: 150%;
        left: -25%;
    }

    .logo-item {
        height: 25px;
        margin: 0 10px;
    }
}




/*///////////////////////*/



.collection-card-page {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* 1. Animation ko default mein hide kiya */
.collection-card-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            transparent,
            rgba(255, 179, 65, 0.2),
            rgba(255, 179, 65, 1));
    animation: rotate-card-border 4s linear infinite;
    z-index: -2;
    opacity: 0;
    /* Shuru mein nazar nahi aayega */
    transition: opacity 0.5s ease;
    /* Fading effect ke liye */
}

/* 2. Hover karne par border animation dikhegi */
.collection-card-page:hover::before {
    opacity: 1;
}

.collection-card-page::after {
    content: '';
    position: absolute;
    inset: 3px;
    /*    background: #0b121a;*/
    background: rgba(18, 18, 28, 1);
    border-radius: 18px;
    z-index: -1;
}

@keyframes rotate-card-border {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*///////////////////*/


.button_style_collection_pae {
    position: relative;
    padding: 20px 60px;
    border-radius: 30px;
    color: black;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    background: #fbc76b;
    z-index: 1;
    overflow: hidden;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0px 0px 40px 0px rgba(255, 217, 61, 0.2);
}

/* 1. Animation ko shuru mein hide kar diya */
.button_style_collection_pae::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            transparent,
            rgba(255, 0, 0, 0.2),
            rgba(255, 0, 0, 0.5),
            #ff0000);
    animation: snake-rotate 1.5s linear infinite;
    z-index: -2;
    opacity: 0;
    /* Hidden by default */
    transition: 0.3s;
    /* Smooth appearance */
}

/* 2. Hover karne par animation show hogi */
.button_style_collection_pae:hover::before {
    opacity: 1;
}

.button_style_collection_pae::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: #fbc76b;
    border-radius: 26px;
    z-index: -1;
    transition: 0.3s;
}

.button_style_collection_pae:hover::after {
    background: #fbd38d;
    /* Hover par button ka inner color halka change hoga */
}

.button_style_collection_pae:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}


/*///////////////////*/



.art-card-page {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 2px solid rgba(128, 130, 133, 1)
}

/* 1. Animation ko default mein hide kiya */
.art-card-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            transparent,
            rgba(255, 179, 65, 0.2),
            rgba(255, 179, 65, 1));
    animation: rotate-card-border 4s linear infinite;
    z-index: -2;
    opacity: 0;
    /* Shuru mein nazar nahi aayega */
    transition: opacity 0.5s ease;
    /* Fading effect ke liye */
}

/* 2. Hover karne par border animation dikhegi */
.art-card-page:hover::before {
    opacity: 1;
}

.art-card-page::after {
    content: '';
    position: absolute;
    inset: 3px;
    /*    background: #0b121a;*/
    background: rgba(18, 18, 28, 1);
    border-radius: 18px;
    z-index: -1;
}

@keyframes rotate-card-border {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



.team-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 18px;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-img img {
    width: 100%;
    height: 450px;
    object-fit: fill;
    border-radius: 14px;
    display: block;
}

.team-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding: 0 4px 4px 4px;
}

.team-content h4 {
    font-size: 25px;
    font-weight: 700;
    margin: 0 0 3px 0;
    color: #0f172a;
}

.team-content p {
    font-size: 20px;
    color: rgba(17, 25, 36, 1);
    margin: 0;
    font-weight: 700;
}

.x-icon {
    width: 50px;
    height: 50px;
    background: #0f172a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    cursor: pointer;
    flex-shrink: 0;
    color: transparent;
    -webkit-text-stroke: 2px #94a3b8;
    font-size: 28px;
}

/*//////////////////////////////////////*/

.sidebar-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.filter-tag {
    background: #1a242f;
    border: 1px solid #2d3748;
    padding: 5px 12px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    margin: 0 5px 10px 0;
    font-size: 13px;
}

.filter-tag i {
    margin-left: 10px;
    cursor: pointer;
    color: #a0aec0;
}

.btn-clear-filters {
    background: transparent;
    border: 1px solid #2d3748;
    color: white;
    padding: 6px 15px;
    font-size: 13px;
    border-radius: 4px;
}

.btn-applied-filters {
    background: #ffb352;
    border: none;
    color: black;
    padding: 6px 15px;
    font-size: 13px;
    border-radius: 4px;
    font-weight: bold;
}

.filter-group-box {
    border: 1px solid #2d3748;
    background: #161f2a;
    margin-top: 15px;
    overflow: hidden;
    /* Zaroori hai smoothness ke liye */
    border-radius: 4px;
}

.filter-header-item {
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: white;
    user-select: none;
}


/*////////////*/


.filter-body-content {
    max-height: 0;
    /* Shuru mein band */
    opacity: 0;
    overflow: hidden;
    padding: 0 15px;
    /* Side padding rahegi, top/bottom zero */
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
    border-top: 1px solid transparent;
}

.filter-group-box.active .filter-body-content {
    border-top: 1px solid #2d3748;
    opacity: 1;
}

.filter-header-item i {
    transition: transform 0.3s ease;
    color: #ffb352;
}

.filter-group-box.active .filter-header-item i {
    transform: rotate(180deg);
}

.filter-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list-items li {
    margin-bottom: 10px;
    font-size: 13px;
    color: #a0aec0;
    display: flex;
    align-items: center;
}

/*/////////////////////////*/

.filter-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list-items li {
    margin-bottom: 10px;
    font-size: 13px;
    color: #a0aec0;
    display: flex;
    align-items: center;
}

.filter-list-items input {
    margin-right: 10px;
    accent-color: #ffb352;
}

.product-item-card {
    background: #1c252e;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.product-img-wrapper {
    background: #eeeeee;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    object-fit: cover;
}

.heart-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #ffb352;
    font-size: 18px;
    cursor: pointer;
}

.product-data-box {
    padding: 15px;
}

.item-title-text {
    color: rgba(255, 179, 65, 1);
    font-weight: bold;
    margin: 0;
    font-size: 20px;
}

.item-price-text {
    font-weight: bold;
    font-size: 20px;
    margin: 0;
    color: rgba(255, 179, 65, 1);
}

.card-controls-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 15px 0;
}

.color-selector-dots {
    display: flex;
    gap: 6px;
}

.color-dot-btn {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #444;
    cursor: pointer;
}

.color-dot-btn.active {
    border: 2px solid white;
    outline: 1px solid #ffb352;
}

.size-dropdown-select {
    background: #2d3748;
    border: 1px solid #4a5568;
    color: white;
    font-size: 11px;
    padding: 4px 6px;
    border-radius: 4px;
    width: 75px;
}

.qty-control-box {
    display: flex;
    border: 1px solid #4a5568;
    border-radius: 4px;
    background: #2d3748;
    overflow: hidden;
}

.qty-action-btn {
    background: none;
    border: none;
    color: white;
    padding: 0 8px;
    font-weight: bold;
}

.qty-number-input {
    width: 25px;
    background: #1c252e;
    border: none;
    color: white;
    text-align: center;
    font-size: 12px;
}

.btn-main-cart {
    background: rgba(255, 179, 65, 1);
    color: #fff;
    width: 100%;
    border: none;
    padding: 10px;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 16px;
    border-radius: 30px;
}



/*/////////////////////////////*/




/*
.merch-pin-section {
    background-color: #0d141e;
    position: relative;
    overflow: hidden;
}

.right-images-column {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.images-stack-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
}

.merch-img-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.merch-img-box.active {
    opacity: 1;
    visibility: visible;
}

.merch-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
    .merch-pin-section {
        height: auto !important;
    }

    .right-images-column {
        height: 600px;
    }

    .images-stack-container {
        height: 400px;
    }

    .left-content {
        text-align: center;
    }
}
*/

/*///////////////////////////////////////*/


/*
.artwork-section {
    width: 100%;
    padding-bottom: 50px;
    background-color: #0d141e;
}

.artwork-horizontal-wrapper {
    display: flex;
    flex-wrap: nowrap;
    padding-left: 0;
    width: max-content;
    align-items: center;
    gap: 0;
}

.artwork-card {
    flex-shrink: 0;
    width: 400px;
    height: 400px;
    overflow: hidden;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
}

.artwork-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.last-slide {
    width: 500px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.build-on-container {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-text-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateAnim 12s linear infinite;
}

.green-inner-circle {
    width: 130px;
    height: 130px;
    background: #ffb352;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.green-inner-circle:hover {
    transform: scale(1.1);
}

.custom-arrow {
    width: 45px;
    height: 45px;
    color: #000;
}

@keyframes rotateAnim {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .artwork-card {
        width: 280px;
        height: 280px;
    }

    .build-on-container {
        width: 200px;
        height: 200px;
    }

    .green-inner-circle {
        width: 90px;
        height: 90px;
    }

    .custom-arrow {
        width: 30px;
        height: 30px;
    }
}
*/

/*///////////////////////*/

.artwork-section {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 50px;
    background-color: #0d141e;
    overflow: hidden !important;
}

.artwork-horizontal-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    align-items: center;
    padding-right: 100px;
}

.artwork-card {
    flex: 0 0 auto !important;
    width: 400px;
    height: 400px;
    overflow: hidden;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    margin-right: 20px;
}

.artwork-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.last-slide {
    width: 500px !important;
    border: none !important;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible !important;
}

.build-on-container {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.rotating-text-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateAnim 12s linear infinite;
}

.orange-inner-circle {
    width: 130px;
    height: 130px;
    background: #ffb352;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.custom-arrow-svg {
    width: 45px;
    height: 45px;
}

@keyframes rotateAnim {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.merch-pin-section {
    background-color: #0d141e;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.white-window-box {
    width: 100%;
    max-width: 450px;
    height: 600px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    margin: auto;
    z-index: 10;
}

.images-rail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
}

.img-item {
    width: 100%;
    height: 500px;
    background: #333;
    border-radius: 20px;
    overflow: hidden;
}

.img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .artwork-card {
        width: 280px;
        height: 280px;
    }

    .last-slide {
        width: 320px !important;
    }

    .merch-pin-section {
        padding: 50px 0;
    }

    .white-window-box {
        height: 450px;
    }

    .img-item {
        height: 380px;
    }
}


/*////////////////////////////////////////////*/


/* --- Sidebar Main Container --- */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100vh;
    background-color: #0d141e;
    z-index: 1060;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 25px;
    overflow-y: auto;
    color: white;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.cart-sidebar.open {
    transform: translateX(0);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.cart-open {
    overflow: hidden;
}

/* --- Cart Item Design --- */
.cart-title {
    font-size: 20px;
    margin-bottom: 0px;
}

.items-outer-box {
    border: 1px solid rgba(255, 179, 82, 0.3);
    border-radius: 20px;
    padding: 10px 15px;
    margin-top: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item:last-child {
    border-bottom: none;
}

.item-img img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Top: Heading aur Delete Icon */
.details-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.details-top h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.delete-icon {
    cursor: pointer;
    font-size: 16px;
    color: #a0aec0;
    transition: 0.3s;
}

.delete-icon:hover {
    color: #ff4d4d;
}

/* Middle: Info */
.details-middle p {
    font-size: 13px;
    color: #a0aec0;
    margin: 2px 0;
}

.details-middle span {
    color: white;
}

/* Bottom: Price aur Counter */
.details-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.item-price {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.qty-pill {
    background: white;
    border-radius: 30px;
    padding: 4px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: black;
    min-width: 90px;
    justify-content: space-between;
}

.qty-btn {
    border: none;
    background: none;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
}

/* --- Summary Box --- */
.summary-box {
    margin-top: 20px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 179, 82, 0.3);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.gold-text {
    color: #ffb352;
    font-weight: bold;
}

.red-text {
    color: #ff4d4d;
    font-weight: bold;
}

.btn-continue,
.btn-checkout {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 10px;
}

.btn-continue {
    background: rgba(255, 179, 65, 1);
    color: #fff;
}

.btn-checkout {
    background: rgba(255, 179, 65, 1);
    color: #fff;
}

/* Mobile View Fix */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
    }
}

/*/////////////////////////////*/


.navbar_position {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
}

.nav_b {
    color: #fff !important;
}

.hero-section {
    height: 600px;
    background: url('../assets/img/bread.png') center center/cover no-repeat;
    position: relative;
    opacity: 0.6;
}


.hero-sections {
    height: 550px;
    background: url('../assets/img/product-baner.png') center center/contain no-repeat;
    position: relative;
    opacity: 0.6;
}


@media only screen and (min-width: 320px) and (max-width: 450px) {

    .hero-sections {
        height: 250px;
        background: url('../assets/img/product-baner.png') center center/contain no-repeat;
        position: relative;
        opacity: 0.6;
    }

}

/*/////////////////////////*/



.custom-nav-product {
    background: rgba(19, 33, 52, 1);
    padding: 15px 0;
}

.navbar-brand-custom_new {
    font-size: 24px;
    color: #ffb352 !important;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.nav-icons_new {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-icons_new a {
    color: #ffb352 !important;
    font-size: 16px;
    text-decoration: none;
}

.nav_toggler_new {
    border-color: #ffb352;
    padding: 4px 8px;
}

.nav_toggler_icon_new {
    filter: invert(78%) sepia(38%) saturate(638%) hue-rotate(345deg) brightness(101%) contrast(101%);
    width: 20px;
    height: 20px;
}

@media (min-width: 992px) {
    .nav-icons_new {
        gap: 20px;
        order: 3;
    }

    .nav-icons_new a {
        font-size: 18px;
    }

    .navbar-brand-custom_new {
        order: 1;
    }

    .navbar-collapse {
        order: 2;
    }
}

@media (max-width: 991px) {
    .container-nav-flex {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-brand-custom_new {
        font-size: 18px;
        margin-right: 0;
    }
}





/*//////////////////*/



.product-details-page {
    background-color: #121e2c;
    color: #ffffff;
    padding: 50px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.gallery-flex {
    display: flex;
    gap: 20px;
}

.thumb-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 15%;
}

.thumb-sidebar img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    border-radius: 2px;
}

.thumb-sidebar img.active {
    opacity: 1;
}

.main-display {
    width: 85%;
}

.main-display img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

.product-text-info {
    padding-left: 20px;
}

.p-title-main {
    font-size: 30px;
    font-weight: 700;
    color: #ffb258;
    margin-bottom: 20px;
}

.p-summary {
    font-size: 14px;
    color: #d1d1d1;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 480px;
}

.color-section {
    margin-bottom: 30px;
}

.color-circles {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.c-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #444;
}

.c-black {
    background: #000;
}

.c-white {
    background: #fff;
}

.size-guide-txt {
    font-size: 11px;
    float: right;
    color: #a0a8b3;
    text-decoration: underline;
}

.size-select-box {
    width: 100%;
    background: #0d1621;
    border: 1px solid #2c3a4a;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    margin-bottom: 15px;
    appearance: none;
}

.add-cart-btn-large {
    width: 100%;
    background: #ffb258;
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 25px;
}

.small-icons-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #a0a8b3;
}

.info-container-bottom {
    margin-top: 60px;
}

.info-card-wrapper {
    background: #1a2634;
    border: 1.5px solid #2c3a4a;
    border-radius: 8px;
    margin-bottom: 30px;
}

.info-item-header {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid transparent;
}

.info-item-header.border-bottom {
    border-bottom: 1px solid #2c3a4a;
}

.info-item-body {
    padding: 25px;
    font-size: 13px;
    color: #c0c8d1;
    line-height: 1.8;
}

.badge-pill-custom {
    display: inline-block;
    background: #111b26;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 15px;
    font-size: 11px;
    border: 1px solid #233140;
}

.row-gap-custom {
    --bs-gutter-x: 3rem;
}

@media (max-width: 991px) {
    .gallery-flex {
        flex-direction: column-reverse;
    }

    .thumb-sidebar {
        flex-direction: row;
        width: 100%;
    }

    .thumb-sidebar img {
        width: 80px;
        height: 80px;
    }

    .main-display {
        width: 100%;
    }

    .main-display img {
        height: 450px;
    }
}

/*////////////////////////////////////*/


.replica-modal-bg {
    background-color: #0d1621 !important;
    border-radius: 8px;
    border: none;
}

.replica-image {
    max-width: 280px;
    width: 100%;
    height: auto;
}

.replica-title {
    color: #ffb352;
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 15px;
}

.replica-desc {
    color: #d1d1d1;
    font-size: 15px;
    line-height: 1.6;
}

.replica-divider {
    border-top: 1px solid #2c3a4a;
    width: 100%;
    opacity: 0.5;
}

.replica-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.replica-grid {
    min-width: 650px;
    width: 100%;
}

.replica-unit-row {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.replica-tab {
    background-color: #ffb352;
    color: #000;
    font-weight: 800;
    font-size: 14px;
    padding: 8px 0;
    width: 170px;
    text-align: center;
    border-radius: 2px;
    margin-right: 20px;
    flex-shrink: 0;
}

.replica-header-item {
    flex: 1;
    text-align: center;
    color: #a0a8b3;
    font-weight: 700;
    font-size: 14px;
}

.replica-data-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
}

.replica-label {
    width: 170px;
    margin-right: 20px;
    color: #ffffff;
    font-weight: 400;
    font-size: 15px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.replica-label span {
    color: #ff5722;
    font-style: italic;
    font-weight: 700;
    margin-right: 15px;
    font-size: 16px;
    width: 15px;
    display: inline-block;
}

.replica-val {
    flex: 1;
    text-align: center;
    color: #a0a8b3;
    font-size: 15px;
}

@media (max-width: 767px) {
    .replica-title {
        font-size: 28px;
        margin-top: 10px;
    }

    .replica-desc {
        font-size: 13px;
    }

    .replica-modal-bg {
        margin: 10px;
    }

    .replica-scroll-wrapper::-webkit-scrollbar {
        height: 4px;
    }

    .replica-scroll-wrapper::-webkit-scrollbar-thumb {
        background: #2c3a4a;
        border-radius: 10px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 950px;
    }
}
