.auction-details {
    padding: 27px 0 80px 0;

    @media screen and (max-width: 992px) {
        padding: 60px 0;
    }

    @media screen and (max-width: 576px) {
        padding: 40px 0;
    }
}

.auction-details-cont {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 22px;
    align-items: start;

    @media screen and (max-width: 1200px) {
        gap: 20px;
    }

    @media screen and (max-width: 992px) {
        grid-template-columns: 1fr;
    }

    .l-side {
        display: flex;
        flex-direction: column;
        gap: 16px;
        height: 100%;

        .lower-part {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 10px;

            .price-cont {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                margin-bottom: 10px;
                gap: 5px;

                h5 {
                    font-size: 14px;
                    font-weight: 500;
                    color: #666666;
                    margin-bottom: 0;
                }
            }

            .total-price {
                display: flex;
                align-items: center;
                gap: 4px;

                .acc-price {
                    color: $main;
                    font-size: 32px;
                    font-weight: 600;
                }

                img {
                    height: 27px;
                    width: auto;
                    object-fit: contain;
                }
            }

            h4 {
                font-size: 24px;
                font-weight: 600;
                color: #1C1C1C;
                margin-bottom: 8px;
            }

            .subscribe-btn {
                width: 100%;
                height: 48px;
                background-color: $main;
                border-radius: 9px;
                padding: 0 5px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: $white;
                margin-bottom: 16px;
            }

            .agreement-cont {
                display: flex;
                align-items: center;
                gap: 8px;
                cursor: pointer;

                .check-cont {
                    width: 22px;
                    height: 22px;
                    border-radius: 4px;
                    background-color: #99999980;
                }

                .checked {
                    background-color: $main;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                p {
                    font-size: 14px;
                    font-weight: 400;
                    margin-bottom: 0;
                }
            }

        }
    }
}

// Left Side - Auction Info
.auction-info-side {
    background: white;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #A3A3A340;

    @media screen and (max-width: 576px) {
        padding: 8px;
    }
}

.auction-details-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #4f4848;
    line-height: 1.6;

    @media screen and (max-width: 576px) {
        font-size: 16px;
        margin-bottom: 12px;
    }
}

.auction-details-title.is-clamped {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

.auction-details-title.is-expanded {
    display: block;
    overflow: visible;
    margin-bottom: 16px;
}

.auction-desc-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.auction-desc-toggle {
    align-self: flex-start;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    font-weight: 600;
    font-size: 14px;
    color: #1B8354;
    margin-bottom: 16px;

    @media screen and (max-width: 576px) {
        font-size: 13px;
    }
}


.auction-details-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1C1C1C;

    @media screen and (max-width: 576px) {
        font-size: 14px;
        margin-bottom: 24px;
    }
}

.auction-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;

    @media screen and (max-width: 576px) {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;

    .meta-label {
        font-size: 16px;
        font-weight: 600;
        color: $main;
        text-wrap: nowrap;

        @media screen and (max-width: 992px) {
            font-size: 12px;
        }
    }

    .meta-value {
        font-size: 20px;
        font-weight: 600;
        color: #1C1C1C;

        @media screen and (max-width: 992px) {
            font-size: 14px;
        }
    }

    .price {
        background-color: $main;
        color: $white;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 30px;
        border-radius: 4px;
        gap: 8px;

        img {
            width: 17px;
            height: auto;
        }
    }


}

.status-badge {
    display: flex;
    justify-content: space-between;
    min-width: 125px;
    align-items: center;
    gap: 8px;
    padding: 0px 12px;
    height: 38px;
    border-radius: 4px;
    width: fit-content;
    color: white;
    font-size: 16px;
    font-weight: 600;


    .status-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: white;
    }
}

.current {
    background-color: #1B835440;
    color: $main;

    .status-dot {
        background-color: $main;
    }
}

.finished {
    background-color: #1B835440;
    color: $main;

    .status-dot {
        background-color: $main;
    }
}

.upcoming {
    background-color: #EE951040;
    color: #EE9510;

    .status-dot {
        background-color: #EE9510;
    }
}

.cancelled {
    background-color: #EC2D3040;
    color: #EC2D30;

    .status-dot {
        background-color: #EC2D30;
    }
}


.highest-bid-section {
    background: linear-gradient(135deg, #f0f9f6 0%, #e8f5f1 100%);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    text-align: center;

    .bid-label {
        font-size: 14px;
        font-weight: 500;
        color: #666;
        margin-bottom: 12px;
    }

    .bid-amount {
        font-size: 32px;
        font-weight: 700;
        color: #1a7a5e;

        @media screen and (max-width: 576px) {
            font-size: 28px;
        }
    }
}

.auction-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;

    button {
        width: 100%;
        padding: 14px 24px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;

        @media screen and (max-width: 576px) {
            font-size: 14px;
            padding: 12px 20px;
        }
    }

    .participate-btn {
        background-color: #1a7a5e;
        color: white;

        &:hover {
            background-color: #166845;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(26, 122, 94, 0.3);
        }
    }

    .terms-btn {
        background-color: transparent;
        color: #666;
        border: 1px solid #ddd;


    }
}

// Right Side - Gallery
.auction-gallery-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.main-auction-image-link {
    display: block;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.main-auction-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    @media screen and (max-width: 768px) {
        max-height: 400px;
    }
}

.auction-countdown-overlay {
    position: absolute;
    bottom: 16px;
    inset-inline-end: 16px;
    background: rgba(0, 0, 0, 1);
    border-radius: 15px;
    padding: 16px 32px;
    z-index: 10;
    height: 93px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 34px;

    @media screen and (max-width: 576px) {
        padding: 12px 24px;
        bottom: 16px;
    }
}

.countdown-display {
    display: flex;
    align-items: center;
    gap: 4px;
}

.countdown-segment {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 16px;

    @media screen and (max-width: 576px) {
        padding: 6px 12px;
    }
}

.countdown-number {
    font-size: 32px;
    font-weight: 700;
    color: $main;
    font-family: monospace;

    @media screen and (max-width: 768px) {
        font-size: 24px;
    }
}

.countdown-separator {
    font-size: 32px;
    font-weight: 700;
    color: $main;

    @media screen and (max-width: 576px) {
        font-size: 24px;
    }
}

.auction-thumbs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;

    @media screen and (max-width: 768px) {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    @media screen and (max-width: 576px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.auction-detail-thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    aspect-ratio: 4/3;

    &.active {
        border-color: #1a7a5e;
    }

    .thumb-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}

.thumb-eye-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 42, 30, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.thumb-eye-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.thumb-eye-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;

    &:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }

    @media screen and (max-width: 576px) {
        width: 32px;
        height: 32px;
    }
}

.hidden-fancybox-link {
    display: none;
}

.auction-details {
    .main-image-container {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        background: white;
        aspect-ratio: 950/600;
        width: 100%;
        max-width: unset;
        max-height: unset;
    }

    .thumbs-row {
        width: 100%;
        display: grid;
        align-items: center;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        overflow: hidden;
        max-width: 100%;
        flex-wrap: nowrap;
        max-height: 163px;

        @media screen and (max-width: 767px) {
            max-height: 75px;
        }

        .auction-detail-thumb {
            width: 100%;
            display: inline-block;
            margin-inline-end: 8px;
            height: 163px;

            @media screen and (max-width: 767px) {
                height: 75px;
            }
        }
    }
}


.auction-bird-ditails {
    margin-bottom: 117px;

    .auction-bird-ditails-content {
        display: flex;
        gap: 40px;
        flex-direction: column;

        .stron-dets {
            display: flex;
            gap: 30px;

            @media screen and (max-width: 1200px) {
                flex-direction: column;
            }

        }

        .card {
            width: 100%;
            padding: 28px;
            border: 1px solid #A3A3A340;
            border-radius: 16px;
            overflow: auto;

            @media screen and (max-width: 767px) {
                padding: 16px;
            }

            .card-title {
                font-size: 24px;
                font-weight: 600;
                color: #1C1C1C;
                margin-bottom: 24px;

                @media screen and (max-width: 767px) {
                    font-size: 20px;
                }
            }

            .card-body {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;

                @media screen and (max-width: 767px) {
                    grid-template-columns: 1fr 1fr;
                }

                .item {
                    background-color: #1B83540D;
                    padding: 16px;
                    border-radius: 8px;

                }

                .item-title {
                    font-size: 14px;
                    font-weight: 500;
                    color: $main;
                    margin-bottom: 8px;
                }

                .item-value {
                    font-size: 20px;
                    font-weight: 600;
                    color: #1C1C1C;
                    margin-bottom: 0;

                    @media screen and (max-width: 767px) {
                        font-size: 16px;
                    }
                }
            }

        }





        .bird-achivements {

            .card-body {
                grid-template-columns: 1fr 1fr;

                .item-title {
                    font-size: 18px;
                    font-weight: 600;

                    @media screen and (max-width: 767px) {
                        font-size: 14px;
                    }
                }

                .item-value {
                    font-size: 14px;
                    font-weight: 500;
                    color: #474747;

                    @media screen and (max-width: 767px) {
                        font-size: 12px;
                    }
                }
            }

        }

        .family-tree {
            overflow-y: auto;
            padding: 12px 28px !important;

            .card-body {
                grid-template-columns: repeat(4, 1fr);

                @media screen and (max-width: 1200px) {
                    grid-template-columns: 1fr 1fr;
                }

                .item-title {
                    font-size: 20px;
                    font-weight: 600;
                    color: #1C1C1C;
                }

                .detail-cont {
                    display: flex;
                    justify-content: space-between;
                    flex-wrap: wrap;
                    gap: 10px;

                    @media screen and (max-width: 767px) {
                        flex-direction: column;
                        gap: 8px;
                        align-items: flex-start;
                    }

                    .detail-label {
                        font-size: 16px;
                        font-weight: 500;
                        color: $main;
                    }

                    .detail-value {
                        font-size: 16px;
                        font-weight: 500;
                        color: #1C1C1CB2;

                        @media screen and (max-width: 767px) {
                            font-size: 14px;
                        }
                    }
                }
            }

            .detss-cont {
                display: flex;
                flex-direction: column;
                gap: 18px;
            }
        }

        .not-started {
            .card-body {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .not-started-hummer-d {
            width: 100%;
            border: 1px solid #E5E5E5;
            border-radius: 16px;
            overflow: hidden;
        }
    }
}

.news-details {
    padding: 27px 0 40px 0;

    @media screen and (max-width: 992px) {
        padding: 60px 0 40px 0;
    }

    @media screen and (max-width: 576px) {
        padding: 40px 0 20px 0;
    }
}

.news-details-cont {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 22px;
    align-items: start;

    @media screen and (max-width: 1200px) {
        gap: 20px;
    }

    @media screen and (max-width: 992px) {
        grid-template-columns: 1fr;
    }

    .l-side {
        display: flex;
        flex-direction: column;
        gap: 16px;
        height: 100%;
    }
}

.news-info-side {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #E5E5E5;
    display: flex;
    flex-direction: column;
    gap: 24px;

    @media screen and (max-width: 576px) {
        padding: 20px;
        gap: 20px;
    }
}

.news-details-title {
    font-size: 32px;
    font-weight: 700;
    color: #1C1C1C;
    margin-bottom: 0;
    line-height: 1.4;

    @media screen and (max-width: 992px) {
        font-size: 28px;
    }

    @media screen and (max-width: 576px) {
        font-size: 24px;
    }
}

.news-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;

    @media screen and (max-width: 576px) {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .meta-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px;
        background: #F8F9FA;
        border-radius: 8px;

        .meta-icon {
            color: var(--main-color);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .meta-content {
            display: flex;
            flex-direction: column;
            gap: 4px;
            flex: 1;
        }

        .meta-label {
            font-size: 12px;
            font-weight: 500;
            color: #999999;
        }

        .meta-value {
            font-size: 14px;
            font-weight: 600;
            color: #1C1C1C;
        }
    }
}

.news-excerpt {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: #F8F9FA;
    border-radius: 12px;
    border-right: 4px solid var(--main-color);

    [dir="ltr"] & {
        border-right: none;
        border-left: 4px solid var(--main-color);
    }

    .excerpt-title {
        font-size: 18px;
        font-weight: 600;
        color: #1C1C1C;
        margin-bottom: 0;

        @media screen and (max-width: 576px) {
            font-size: 16px;
        }
    }

    .excerpt-text {
        font-size: 15px;
        font-weight: 400;
        line-height: 1.8;
        color: #666666;
        margin-bottom: 0;

        @media screen and (max-width: 576px) {
            font-size: 14px;
        }
    }
}

.news-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;

    .tags-label {
        font-size: 14px;
        font-weight: 600;
        color: #1C1C1C;
    }

    .tags-list {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .tag-item {
        display: inline-block;
        padding: 6px 16px;
        background: var(--main-color);
        color: white;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 500;
        transition: all 0.3s ease;

        &:hover {
            background: darken(#1B5E20, 10%);
            transform: translateY(-2px);
        }

        @media screen and (max-width: 576px) {
            font-size: 12px;
            padding: 5px 12px;
        }
    }
}


.news-body {
    padding: 40px 0 80px 0;
    background: #FAFAFA;

    @media screen and (max-width: 992px) {
        padding: 30px 0 60px 0;
    }

    @media screen and (max-width: 576px) {
        padding: 20px 0 40px 0;
    }
}

.news-body-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;

    @media screen and (max-width: 1200px) {
        gap: 24px;
        grid-template-columns: 1fr 300px;
    }

    @media screen and (max-width: 992px) {
        grid-template-columns: 1fr;
    }
}

.news-main-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #E5E5E5;
    display: flex;
    flex-direction: column;
    gap: 32px;

    @media screen and (max-width: 768px) {
        padding: 24px;
        gap: 24px;
    }

    @media screen and (max-width: 576px) {
        padding: 20px;
        gap: 20px;
    }
}

.news-introduction {
    .intro-text {
        font-size: 18px;
        font-weight: 500;
        line-height: 1.9;
        color: #333333;
        margin-bottom: 0;

        @media screen and (max-width: 576px) {
            font-size: 16px;
        }
    }
}

.news-section-vont {
    .section-heading {
        font-size: 24px;
        font-weight: 700;
        color: #1C1C1C;
        margin-bottom: 16px;

        @media screen and (max-width: 576px) {
            font-size: 20px;
            margin-bottom: 12px;
        }
    }

    .section-text {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.9;
        color: #666666;
        margin-bottom: 0;

        @media screen and (max-width: 576px) {
            font-size: 15px;
        }
    }
}

.news-quote-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-right: 4px solid var(--main-color);
    padding: 32px;
    border-radius: 12px;
    position: relative;
    margin: 20px 0;

    [dir="ltr"] & {
        border-right: none;
        border-left: 4px solid var(--main-color);
    }

    @media screen and (max-width: 576px) {
        padding: 24px;
    }

    .quote-mark {
        font-size: 80px;
        font-weight: 700;
        color: var(--main-color);
        opacity: 0.2;
        position: absolute;
        top: 10px;
        right: 20px;
        line-height: 1;

        [dir="ltr"] & {
            right: auto;
            left: 20px;
        }
    }

    .quote-text {
        font-size: 18px;
        font-weight: 500;
        line-height: 1.8;
        color: #1C1C1C;
        font-style: italic;
        margin-bottom: 16px;
        position: relative;
        z-index: 1;

        @media screen and (max-width: 576px) {
            font-size: 16px;
        }
    }

    .quote-author {
        font-size: 14px;
        font-weight: 600;
        color: var(--main-color);
        font-style: normal;
        display: block;
    }
}

.news-conclusion {
    .conclusion-text {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.9;
        color: #666666;
        margin-bottom: 0;
        padding: 20px;
        background: #F8F9FA;
        border-radius: 8px;

        @media screen and (max-width: 576px) {
            font-size: 15px;
            padding: 16px;
        }
    }
}

.news-share-section {
    border-top: 1px solid #E5E5E5;
    padding-top: 24px;

    .share-title {
        font-size: 18px;
        font-weight: 600;
        color: #1C1C1C;
        margin-bottom: 16px;

        @media screen and (max-width: 576px) {
            font-size: 16px;
        }
    }

    .share-buttons {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .share-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        color: white;

        &:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        &.facebook {
            background: #1877F2;
        }

        &.twitter {
            background: #1DA1F2;
        }

        &.linkedin {
            background: #0A66C2;
        }

        &.copy-link {
            background: #666666;
        }

        @media screen and (max-width: 576px) {
            padding: 8px 16px;
            font-size: 13px;
        }
    }
}

.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;

    @media screen and (max-width: 992px) {
        grid-column: 1;
    }
}

.sidebar-box {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #E5E5E5;

    @media screen and (max-width: 576px) {
        padding: 20px;
    }

    .sidebar-title {
        font-size: 18px;
        font-weight: 700;
        color: #1C1C1C;
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 2px solid var(--main-color);

        @media screen and (max-width: 576px) {
            font-size: 16px;
        }
    }
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;

    .highlight-item {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.6;
        color: #666666;
        padding-right: 20px;
        position: relative;

        &::before {
            content: "✓";
            position: absolute;
            right: 0;
            color: var(--main-color);
            font-weight: bold;
        }

        [dir="ltr"] & {
            padding-right: 0;
            padding-left: 20px;

            &::before {
                right: auto;
                left: 0;
            }
        }
    }
}

.quick-share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;

    .quick-share-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid #E5E5E5;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        color: #666666;

        &:hover {
            background: var(--main-color);
            color: white;
            border-color: var(--main-color);
            transform: translateY(-2px);
        }
    }
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 16px;

    .info-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px;
        background: #F8F9FA;
        border-radius: 8px;

        .info-label {
            font-size: 13px;
            font-weight: 500;
            color: #999999;
        }

        .info-value {
            font-size: 14px;
            font-weight: 700;
            color: var(--main-color);
        }
    }
}


.single-news-content {
    padding: 60px 0;

    .news-article {
        margin: 0 auto;

        .news-image-wrapper {
            width: 100%;
            aspect-ratio: 1700 / 750;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 40px;

            .news-main-image {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: top;
            }
        }

        .news-content-wrapper {
            .news-article-title {
                font-size: 40px;
                font-weight: 500;
                color: #1C1C1C;
                margin-bottom: 24px;
                line-height: 1.4;

            }

            .news-article-description {
                font-size: 18px;
                font-weight: 500;
                color: #1C1C1C;
                line-height: 1.8;
                margin-bottom: 32px;
            }

            .news-article-body {
                .news-paragraph {
                    font-size: 18px;
                    font-weight: 500;
                    color: #1C1C1C;
                    line-height: 1.8;
                    margin-bottom: 24px;

                    &:last-child {
                        margin-bottom: 0;
                    }
                }
            }

            .champion-h1-dets-cont {
                display: flex;
                align-items: center;
                gap: 10px;
                flex-wrap: wrap;
                justify-content: space-between;
                margin-bottom: 24px;

                h1 {
                    margin-bottom: 0;
                }

                .dets-conts {
                    display: flex;
                    align-items: center;
                    gap: 8px;

                    @media (max-width: 768px) {
                        flex-direction: column;
                    }

                    .det-cont {
                        display: flex;
                        align-items: center;
                        gap: 4px;
                        height: 38px;
                        border-radius: 4px;
                        background-color: $main;
                        padding: 0 16px;

                        img {
                            width: 16px;
                            height: auto;

                        }

                        span {
                            font-size: 14px;
                            font-weight: 400;
                            color: #FBFBFBE5;
                        }
                    }
                }
            }
        }
    }

    // Responsive styles
    @media (max-width: 991px) {
        padding: 40px 0;

        .news-article {
            .news-image-wrapper {
                margin-bottom: 24px;
            }

            .news-content-wrapper {
                .news-article-title {
                    font-size: 28px;
                    margin-bottom: 16px;
                }

                .news-article-description {
                    font-size: 16px;
                    margin-bottom: 24px;
                }

                .news-article-body {
                    .news-paragraph {
                        font-size: 16px;
                        margin-bottom: 16px;
                    }
                }
            }
        }
    }
}

.auction-counting-down {
    height: 100%;
    border-radius: 16px;
    border: 1px solid #A3A3A340;
    overflow: hidden;
}

.upcoming-countdown-container {
    background-color: #ffffffee;
    width: 100%;
    padding: 24px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .upcoming-icon {
        img {
            width: 90px;
            height: 90px;
            object-fit: contain;
        }
    }

    .upcoming-timer {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;

        color: $main;
        font-size: 32px;
        font-weight: 700;

        .timer-separator {
            color: #1B8354B2;
        }
    }

}

// Bidding Interface Styles
.bidding-interface {
    .current-price-display {
        text-align: center;
        padding: 20px 0;
        border-bottom: 1px solid #A3A3A340;
        margin-bottom: 20px;

        .price-amount {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 8px;

            .currency-symbol {
                font-size: 24px;
                font-weight: 700;
                color: $main;
            }

            .price-value {
                font-size: 32px;
                font-weight: 700;
                color: $main;
            }
        }

        .price-label {
            font-size: 14px;
            font-weight: 500;
            color: #666666;
            margin-bottom: 0;
        }
    }

    .bid-section {
        display: flex;
        flex-direction: column;
        gap: 16px;

        .title-btns {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .bid-title {
            font-size: 20px;
            font-weight: 600;
            color: #1C1C1C;
            margin-bottom: 0;

            @media screen and (max-width: 576px) {
                font-size: 18px;
            }
        }

        .bid-type-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;

            .bid-type-btn {
                height: 40px;
                border-radius: 8px;
                border: 1px solid $main;
                background-color: transparent;
                color: $main;
                font-size: 14px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                min-width: 122px;


                &:hover {
                    background-color: rgba($main, 0.1);
                }

                &.active {
                    background-color: $main;
                    color: white;
                }

                @media screen and (max-width: 576px) {
                    font-size: 14px;
                    height: 44px;
                }
            }
        }

        .bid-amounts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;

            @media screen and (max-width: 576px) {
                grid-template-columns: 1fr 1fr;
            }

            .bid-amount-btn {
                height: 56px;
                border-radius: 8px;
                border: 1px solid $main;
                background-color: transparent;
                color: #1C1C1C;
                font-size: 18px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 4px;

                &:hover {
                    border-color: $main;
                    background-color: rgba($main, 0.1);
                }

                &.selected {
                    background-color: $main;
                    border-color: $main;
                    color: white;

                    .currency-symbol,
                    .amount-value {
                        color: white;
                    }
                }

                .currency-symbol {
                    font-size: 16px;
                    color: $main;
                }

                .amount-value {
                    font-size: 18px;
                    font-weight: 600;
                    color: $main;
                }

                @media screen and (max-width: 576px) {
                    height: 48px;
                    font-size: 16px;

                    .currency-symbol {
                        font-size: 14px;
                    }

                    .amount-value {
                        font-size: 16px;
                    }
                }
            }
        }


        .autobigging-grid {
            display: flex;
            align-items: center;
            gap: 16px;

            select {
                width: 100%;
                color: #1C1C1C80;
            }

            .input-group {
                position: relative;
                width: 100%;

                input {
                    width: 100%;
                    height: 56px;
                    padding: 0 20px;
                    padding-inline-end: 45px;
                    background-color: #EBEDF040;
                    border-radius: 9px;
                    color: #1C1C1C80;
                    font-size: 16px;
                    font-weight: 500;
                    border: none;
                    outline: none;
                }

                img {
                    position: absolute;
                    inset-inline-end: 20px;
                    top: 50%;
                    transform: translateY(-50%);
                    width: 20px;
                    height: auto;
                }
            }
        }

        .submit-bid-btn {
            width: 100%;
            height: 56px;
            background-color: $main;
            border-radius: 8px;
            color: white;
            font-size: 18px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 8px;

            &:hover:not(:disabled) {
                background-color: darken(#1B8354, 10%);
                transform: translateY(-2px);
                box-shadow: 0 4px 12px rgba($main, 0.3);
            }

            &:disabled {
                opacity: 0.6;
                cursor: not-allowed;
            }

            @media screen and (max-width: 576px) {
                height: 48px;
                font-size: 16px;
            }
        }
    }
}

.finished-hummer {
    height: 100%;
    border: 1px solid #A3A3A340;
    border-radius: 16px;
    overflow: hidden;

    img {
        width: 100px;
        height: 100px;
        object-fit: contain;
    }

}

.non-padding {
    padding: 0;

    .non-padding-cont {
        background-color: rgba($color: #fff, $alpha: .95);
        padding: 28px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 100%;

        img {
            width: 100px;
            height: auto;
        }

        h5 {
            font-size: 32px;
            font-weight: 600;
            color: #1C1C1C;
            text-align: center;
        }

        p {
            font-size: 20px;
            font-weight: 500;
            color: #666;
            text-align: center;
        }
    }
}

.bidders-show-more {
    color: $main;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 8px;
    text-align: center;
    @include flexCenter;
    margin: 40px auto 0;
}


.bids-history-cont {
    padding: 20px 70px 50px;
    max-width: 800px;
    margin: 50px auto;
    border-radius: 16px;
    border: 1px solid #A3A3A340;

    .card-title {
        font-size: 24px;
        font-weight: 600;
        color: #1C1C1C;
        margin-bottom: 24px;
    }

    @media screen and (max-width: 576px) {
        padding: 28px 20px;
    }
}

.bids-history {
    height: 100%;
    overflow-y: auto !important;
    padding: 12px 28px !important;

    .card-body {
        display: flex;
        flex-direction: column;
        gap: 16px;
        flex-direction: column;
    }

    .bids-header {
        display: flex;
        justify-content: space-between;
        padding-bottom: 12px;

        .header-label {
            font-size: 16px;
            font-weight: 500;
            color: $main;
        }
    }

    .bids-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .bid-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;

        .bid-name {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            color: #333;

            .user-icon {
                font-size: 18px;
                color: #666;
            }
        }

        .bid-amount {
            font-size: 16px;
            font-weight: 500;
            color: #333;
            display: flex;
            align-items: center;
            gap: 4px;
        }
    }

    .show-all-bids {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px;
        background: transparent;
        border: none;
        color: $main;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        margin-top: 8px;

        .arrow-icon {
            font-size: 12px;
        }

        &:hover {
            opacity: 0.8;
        }
    }
}
.news-gallery-slider {
    margin-bottom: 40px;

    .news-gallery-swiper {
        border-radius: 12px;
        overflow: hidden;
        aspect-ratio: 1700 / 750;

        .swiper-slide {
            a {
                display: block;
                width: 100%;
                height: 100%;
            }
        }

        .news-main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: #fff;
            background: rgba(0, 0, 0, 0.4);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            
            &::after {
                font-size: 18px;
            }
        }

        .swiper-pagination-bullet {
            background: #fff;
            opacity: 0.6;
            width: 10px;
            height: 10px;

            &-active {
                opacity: 1;
                background: #1B8354;
            }
        }
    }

    .gallery-thumbnails {
        display: flex;
        gap: 8px;
        margin-top: 12px;
        overflow-x: auto;
        padding-bottom: 8px;

        &::-webkit-scrollbar {
            height: 4px;
        }

        &::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 4px;
        }

        .gallery-thumb-item {
            flex-shrink: 0;
            width: 100px;
            height: 70px;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid transparent;
            cursor: pointer;
            transition: border-color 0.2s;

            &:hover {
                border-color: #1B8354;
            }

            .gallery-thumb-img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    }
}

@media (max-width: 991px) {
    .news-gallery-slider {
        margin-bottom: 24px;

        .news-gallery-swiper {
            .swiper-button-next,
            .swiper-button-prev {
                width: 36px;
                height: 36px;

                &::after {
                    font-size: 14px;
                }
            }
        }

        .gallery-thumbnails {
            .gallery-thumb-item {
                width: 80px;
                height: 56px;
            }
        }
    }
}
