/* ==================================================
                HERO SECTION START
   ================================================== */
/* HERO */
.hero-section {
    background: url('../../images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

/* CONTAINER CONTENT */
.hero-section .container {
    position: relative;
    z-index: 2;
}

/* BADGE */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 149, 42, .2);
    border: 1px solid rgba(201, 149, 42, .4);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 50px;
    letter-spacing: .4px;
}

.hero-badge span {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
}

/* TITLE */
.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title em {
    color: var(--gold-light);
    font-style: normal;
}

/* SUBTEXT */
.hero-sub {
    color: rgba(255, 255, 255, .75);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* STATS */
.hero-stat-num {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
}

.hero-stat-label {
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
    margin-top: 4px;
}

/* SEARCH CARD */
.search-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

/* LABEL */
.search-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* FIELDS */
.search-field {
    border: 1.5px solid #e0e0d8;
    border-radius: 12px;
    padding: 12px 14px;
    height: 50px;
    font-size: 14px;
}

.search-field:focus {
    border-color: var(--green-fresh);
    box-shadow: none;
}

/* BUTTON */
.search-btn {
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 22px;
    height: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: .25s;
}

.search-btn:hover {
    background: var(--orange-dark);
    color: #fff;
}

/* DIVIDER */
.search-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.search-divider hr {
    flex: 1;
    border: none;
    border-top: 1px solid #ece9e2;
}

.search-divider span {
    color: var(--text-muted);
    font-size: 12px;
}

/* TAGS */
.popular-search .tag {
    background: var(--green-pale);
    color: var(--green-mid);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid var(--green-light);
    cursor: pointer;
    transition: .2s;
}

.popular-search .tag:hover {
    background: var(--green-light);
    color: var(--green-mid);
}

/* MOBILE */
@media (max-width: 991px) {
    .hero-section {
        padding: 70px 0;
        text-align: center;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-sub {
        font-size: 15px;
    }

    .search-card {
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-stat-num {
        font-size: 22px;
    }

    .hero-stat-label {
        font-size: 11px;
    }

    .search-card {
        padding: 20px;
    }
}

/* SELECT2 HERO STYLE */
/* SELECT2 STYLE */
.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    height: 50px;
    border: 1.5px solid #e0e0d8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.select2-container--default .select2-selection--single:focus {
    border-color: #4f8f5c;
}

.select2-container--default .select2-selection__rendered {
    line-height: 48px;
    font-size: 14px;
    color: #222;
}

.select2-container--default .select2-selection__placeholder {
    color: #999;
}

.select2-container--default .select2-selection__arrow {
    height: 48px;
}

.select2-dropdown {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.select2-results__option {
    padding: 12px 14px;
    font-size: 16px;
}

.select2-search--dropdown .select2-search__field {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 8px 10px;
}

/* ==================================================
                HERO SECTION END
   ================================================== */

/* ==================================================
                Lowest Priced Lisitngs
   ================================================== */
/* ── SECTIONS ── */
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    color: var(--green-fresh);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 6px
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2
}

.view-all {
    font-size: 16px;
    font-weight: 500;
    color: var(--green-mid);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    border: 1.5px solid rgba(26, 58, 31, .15);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    transition: all .2s
}

.view-all:hover {
    background: var(--green-pale);
    border-color: var(--green);
    color: var(--green);
}

/* --- PRODUCT CARDS --- */
.pc-grid{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:16px;
}
@media (max-width:1200px){

    .pc-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .desktop-only{
        display:none;
    }

}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid #ece9e2;
    transition: all .25s;
    cursor: pointer
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
    border-color: var(--green-light)
}

.pc-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background: linear-gradient(135deg, #d4e8d8, #a8d5b0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

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

.pc-img-placeholder {
    font-size: 36px
}

.pc-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--green);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: var(--radius-pill);
    letter-spacing: .3px
}

.pc-body {
    padding: 14px 16px
}

.pc-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.3
}

/*.pc-meta {*/
/*    margin-bottom: 10px;*/
/*    align-items: center;*/
/*    display:flex;*/
/*    gap:10px;*/
/*    flex-wrap:wrap;*/
/*    font-size:13px;*/
/*    color:#6b7280;*/
/*}*/

/*.pc-meta span{*/
/*    display:flex;*/
/*    align-items:center;*/
/*    gap:4px;*/
/*}*/

.pc-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--green)
}


.pc-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted)
}
/* ==================================================
                Lowest Priced Lisitngs
   ================================================== */

/* ==================================================
                Seller Buyer Section
   ================================================== */
/* ─── SELL / BUY CARDS ─── */
/* ─── SECTION WRAPPER ─── */
.sell_buy_sec {
    background: var(--bg-cream);
}

.sec {
    padding: 56px 36px;
    max-width: 1080px;
    margin: 0 auto
}

.sec-ey {
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
    letter-spacing: .9px;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px
}

.sec-ti {
    font-size: 36px;
    font-weight: 700;
    color: var(--td);
    margin-bottom: 4px
}

.sec-sub {
    color: var(--tu);
    font-size: 16px;
    margin-bottom: 32px
}

.divider {
    border: none;
    border-top: 1px solid #e8e5de;
    margin: 0
}

.sb-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 20px
}

.sb-card {
    border-radius: var(--rlg);
    overflow: hidden;
    position: relative;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px
}

.sb-card.seller {
    background: var(--gd);
}

.sb-card.buyer {
    background: var(--green);
}

.sb-card-bg {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
    background-size: 12px 12px;
    pointer-events: none
}

.sb-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .9px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px
}

.sb-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--wh);
    line-height: 1.2;
    margin-bottom: 20px
}

.sb-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px
}

.sb-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 16px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.45
}

.sb-list li i {
    font-size: 15px;
    color: var(--gl);
    flex-shrink: 0;
    margin-top: 1px
}

.sb-btn-orange {
    background: var(--orange);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: var(--rpl);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background .2s;
    letter-spacing: .2px;
}

.sb-btn-orange:hover {
    background: var(--orange-dark);
    color: var(--white);
}

.sb-btn-outline {
    background: var(--wh);
    color: var(--green);
    font-size: 16px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: var(--rpl);
    border: 1.5px solid rgba(255, 255, 255, .4);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all .2s
}

.sb-btn-outline:hover {
    background: #e6e6e6;
    color: var(--green);
}

.sb-deco {
    position: absolute;
    bottom: 20px;
    right: 24px;
    opacity: .07;
    pointer-events: none
}

/* ==================================================
                Seller Buyer Section
   ================================================== */


/* ==================================================
                _price_list Section
   ================================================== */
/* ─── PRICE LIST ─── */
.price-wrap {
    background: var(--wh);
    border-radius: var(--rlg);
    border: 1px solid #e8e5de;
    overflow: hidden
}

.price-top {
    padding: 20px 24px;
    border-bottom: 1px solid #eae8e2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

.pmeta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: var(--tm)
}

.pmeta-item strong {
    color: var(--td);
    font-weight: 600
}

.pmeta-item i {
    font-size: 15px;
    color: var(--gf)
}

.ptable {
    width: 100%;
    border-collapse: collapse
}

.ptable thead tr {
    background: var(--gp)
}

.ptable th {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--gm);
    letter-spacing: .5px;
    text-align: left
}

.ptable th:not(:first-child) {
    text-align: center;
}

.ptable td {
    padding: 13px 20px;
    font-size: 16px;
    color: var(--td);
    border-bottom: 1px solid #f0ede8
}

.ptable td:not(:first-child) {
    text-align: center;
    font-weight: 500
}

.ptable tbody tr:hover {
    background: #fafaf7
}

.ptable tbody tr:last-child td {
    border-bottom: none
}

.ptable .item-name {
    display: flex;
    align-items: center;
    gap: 8px
}

.ptable .item-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: var(--rpl)
}

.badge-steam {
    background: #e8f0f5;
    color: #1a5c8a
}

.badge-sella {
    background: #fdf0e0;
    color: #8a5a1a
}

.badge-white {
    background: var(--gp);
    color: var(--gm)
}

.ptable .price-min {
    color: var(--gm)
}

.ptable .price-max {
    color: #c9952a
}

.price-range {
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.price-footer {
    padding: 14px 20px;
    background: #fafaf8;
    border-top: 1px solid #eae8e2;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.pf-note {
    font-size: 14px;
    color: var(--tu);
    display: flex;
    align-items: center;
    gap: 5px
}

/* ==================================================
                _price_list Section END
   ================================================== */

/* ==================================================
                ABOUT SECTION START
   ================================================== */
.about-container {
    background-color: #1a3a1f;
    padding: 80px 0px;
}

.collage-wrap {
    position: relative;
    height: 450px;
}

.col-img {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
}

.col-img.a {
    width: 320px;
    height: 310px;
    top: 0;
    left: 50px;
    z-index: 2;
}

.col-img.b {
    width: 270px;
    height: 290px;
    top: 105px;
    left: 290px;
    z-index: 2;
    border: 4px solid var(--green);
}

.col-img.c {
    width: 205px;
    height: 205px;
    top: 240px;
    left: 125px;
    z-index: 3;
    border: 4px solid var(--green);
}

.col-badge {
    position: absolute;
    bottom: 10px;
    right: 0;
    z-index: 4;
    background: var(--gold);
    border-radius: 14px;
    padding: 14px 20px;
    min-width: 110px;
    box-shadow: 0 8px 24px rgba(201, 149, 42, .4);
}

.topbar-divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, .15);
}

.about-pill {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .75);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Contact BUTTON */
.btn-contact {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 11px 24px;
    font-size: 16px;
    font-weight: 600;
    transition: .25s;
    white-space: nowrap;
}

.btn-contact:hover {
    background: var(--orange-dark);
    color: var(--white);
}

.btn-contact i {
    font-size: 16px;
}

.about-image-box {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Large Image */
.image-box-1 {
    background-image: url('../../images/about-1.jpg');
}

/* Top Right Image */
.image-box-2 {
    background-image: url('../../images/about-2.jpg');
}

/* Bottom Right Image */
.image-box-3 {
    background-image: url('../../images/about-3.jpg');
}

.about-icon {
    color: #1a3a1f;
    opacity: 0.3;
}

.about-icon-lg {
    font-size: 70px;
}

.about-icon-md {
    font-size: 52px;
    color: #2d5c35;
}

.about-icon-sm {
    font-size: 44px;
}

.about-subtitle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.9px;
    color: var(--gl);
}

.about-subtitle-line {
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    display: inline-block;
}

.about-title {
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.about-description {
    /*color: var(--white);*/
    color: rgba(255, 255, 255, 0.62);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-contact-btn {
    border-radius: 50rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==================================================
                ABOUT SECTION END
   ================================================== */


/* ==================================================
                CONTACT SECTION START
   ================================================== */


.bg-cream {
    background-color: var(--bg-cream) !important
}

.bg-gd {
    background-color: var(--gd) !important
}

.bg-gm {
    background-color: var(--gm) !important
}

.bg-gp {
    background-color: var(--gp) !important
}

.text-gd {
    color: var(--gd) !important
}

.text-gm {
    color: var(--gm) !important
}

.text-gf {
    color: var(--gf) !important
}

.text-gl {
    color: var(--gl) !important
}

.text-gold {
    color: var(--green) !important
}

.border-gl {
    border-color: var(--gl) !important
}

/* contact info cards */
.info-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eae8e2;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all .2s;
}

.info-card:hover {
    border-color: var(--gl);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .07);
    transform: translateY(-2px)
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gp);
    border: 1.5px solid var(--gl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--gf);
    letter-spacing: .7px;
    text-transform: uppercase;
    margin-bottom: 3px
}

.info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--gd)
}

.info-sub {
    font-size: 14px;
    color: #8a8a80;
    margin-top: 1px
}

/* form card */
.form-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
    border: 1px solid #eae8e2
}

.form-card i {
    font-size: 16px;
    color: var(--gf);
}

/* custom inputs */
.form-label-custom {
    font-size: 16px;
    font-weight: 600;
    color: #4a4a42;
    letter-spacing: .4px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px
}

/* custom inputs */
.form-control-custom {
    width: 100%;
    border: 1.5px solid #e2e0d8;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 16px;
    color: #1a1a18;
    outline: none;
    transition: border .2s, box-shadow .2s;
    background: #fafaf8;
}

.form-control-custom:focus {
    border-color: var(--gf);
    box-shadow: 0 0 0 3px rgba(74, 140, 85, .1);
    background: #fff
}

.form-control-custom::placeholder {
    color: #b8b8ae
}

.input-wrap {
    position: relative
}

.input-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #b8b8ae;
    pointer-events: none
}

.textarea-icon {
    top: 14px;
    transform: none
}

/* submit btn */
.btn-submit {
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 13px 32px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all .2s;
    box-shadow: 0 4px 14px rgba(26, 58, 31, .3);
}

.btn-submit:hover {
    background: #d68d0d;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(26, 58, 31, .25)
}

.btn-submit i {
    color: var(--white);
    font-size: 14px;
}

/* decorative dots */
.deco-dots {
    display: grid;
    grid-template-columns:repeat(6, 8px);
    gap: 6px
}

.deco-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(26, 58, 31, .1);
    display: block
}

/* ==================================================
                CONTACT SECTION END
   ================================================== */
.image-placeholder .ti {
    font-size: 48px;
    opacity: .3;
    color: var(--green) !important;
}


/* breadcrumb */
.breadcrumb-bar {
    background: #255d2e;
    padding: 11px 0
}

.breadcrumb-bar .bc-link {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 4px
}

.breadcrumb-bar .bc-link:hover {
    color: #fff
}

.breadcrumb-bar .bc-sep {
    color: var(--white);
    font-size: 12px
}

.breadcrumb-bar .bc-cur {
    color: var(--white);
    font-size: 16px;
    font-weight: 500
}
/* breadcrumb */
