* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: Arial, sans-serif;
    background: #eaeded
}

.hdr_mstr {
    background: #131921;
    color: #fff;
    position: relative;
    z-index: 100
}

.hdr_top {
    display: flex;
    align-items: center;
    padding: 6px 16px;
    gap: 4px;
    flex-wrap: wrap;
    min-height: 60px
}

@media(max-width:768px) {
    .hdr_top {
        padding: 6px 8px
    }
}

@media(max-width:550px) {
    .hdr_top {
        flex-wrap: wrap;
        justify-content: space-between
    }
}

.lgo_wrp {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    border: 1px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: none;
    min-width: 120px;
    min-height: 50px
}

.lgo_wrp:hover {
    border-color: #fff
}

.lgo_inr {
    width: 110px;
    height: 36px;
    background: transparent
}

@media(max-width:550px) {
    .lgo_wrp {
        padding: 2px 4px;
        min-width: auto;
        min-height: auto
    }
}

@media(max-width:350px) {
    .lgo_inr img {
        width: 80px
    }
}

.dlv_sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6px 8px;
    border: 1px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0
}

.dlv_sec:hover {
    border-color: #fff
}

@media(max-width:768px) {
    .dlv_sec {
        display: none
    }
}

.dlv_lbl {
    font-size: 11px;
    color: #ccc;
    padding-left: 14px
}

.dlv_val {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 13px;
    font-weight: 700
}

.src_sec {
    flex: 1;
    display: flex;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
    position: relative
}

@media(max-width:650px) {
    .src_sec {
        height: 36px
    }
}

@media(max-width:550px) {
    .src_sec {
        order: 3;
        width: 100%;
        margin-top: 8px
    }
}

.src_wrp {
    display: flex;
    width: 100%
}

.src_cat_btn {
    background: #e8e8e8;
    border: none;
    padding: 0 10px;
    font-size: 12px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    outline: none;
    border-right: 1px solid #ccc;
    min-width: 60px;
    position: relative
}

.src_cat_btn:hover {
    background: #d5d5d5
}

@media(max-width:650px) {
    .src_cat_btn {
        font-size: 10px;
        padding: 0 6px;
        min-width: 45px
    }
}

.src_inp {
    flex: 1;
    border: none;
    padding: 0 12px;
    font-size: 15px;
    outline: none;
    color: #222
}

@media(max-width:650px) {
    .src_inp {
        font-size: 12px
    }
}

.src_btn {
    background: #febd69;
    border: none;
    padding: 0 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.src_btn:hover {
    background: #f3a847
}

.cat_drp {
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 1000;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 220px;
    max-height: 420px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    display: none
}

.cat_drp.open {
    display: block
}

.cat_drp li {
    list-style: none;
    padding: 7px 14px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    border-left: 3px solid transparent
}

.cat_drp li:hover {
    background: #e8f4fd;
    border-left-color: #e8710a
}

.cat_drp li.cat_act {
    background: #cce0f5;
    font-weight: 700;
    border-left-color: #e8710a
}

.lng_sec {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 6px 6px;
    border: 1px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    flex-shrink: 0;
    position: relative
}

.lng_sec:hover,
.lng_sec.act_drop {
    border-color: #f90
}

@media(max-width:650px) {
    .lng_sec {
        padding: 2px 3px
    }
}

.lng_txt {
    font-size: 13px;
    font-weight: 700
}

.lng_arr {
    font-size: 9px
}

.lng_drp {
    position: absolute;
    top: 60px;
    right: 16px;
    z-index: 1000;
    background: #fff;
    color: #333;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
    padding: 16px;
    width: 280px;
    display: none
}

.lng_drp.open {
    display: block
}

.lng_drp h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px
}

.lng_drp label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 4px 0;
    cursor: pointer
}

.lng_drp label input {
    accent-color: #e8710a
}

.lng_drp hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 12px 0
}

.lng_drp a {
    color: #007185;
    font-size: 13px;
    text-decoration: none
}

.lng_drp a:hover {
    text-decoration: underline
}

.lng_ftr {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    margin-top: 10px
}

.acc_sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6px 8px;
    border: 1px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative
}

.acc_sec:hover,
.acc_sec.act_drop {
    border-color: #fff
}

@media(max-width:768px) {
    .acc_sec {
        display: none
    }
}

.acc_top {
    font-size: 11px;
    color: #fff
}

.acc_bot {
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 2px
}

.acc_drp {
    position: absolute;
    top: 60px;
    right: 130px;
    z-index: 1000;
    background: #fff;
    color: #333;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
    width: 360px;
    display: none
}

.acc_drp.open {
    display: block
}

.acc_drp_top {
    padding: 16px;
    border-bottom: 1px solid #eee;
    text-align: center
}

.signin_btn {
    display: block;
    width: 100%;
    background: #FFD814;
    border: 1px solid #FCD200;
    border-radius: 8px;
    padding: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 8px
}

.signin_btn:hover {
    background: #F7CA00
}

.acc_drp_top p {
    font-size: 13px
}

.acc_drp_top p a {
    color: #007185;
    text-decoration: none
}

.acc_drp_top p a:hover {
    text-decoration: underline;
    color: #e8710a
}

.acc_drp_cols {
    display: flex;
    padding: 16px;
    gap: 16px
}

.acc_col {
    flex: 1
}

.acc_col h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px
}

.acc_col ul {
    list-style: none
}

.acc_col li {
    padding: 3px 0
}

.acc_col a {
    font-size: 13px;
    color: #333;
    text-decoration: none
}

.acc_col a:hover {
    text-decoration: underline;
    color: #e8710a
}

.ret_sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6px 8px;
    border: 1px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0
}

.ret_sec:hover {
    border-color: #fff
}

@media(max-width:768px) {
    .ret_sec {
        display: none
    }
}

.ret_top {
    font-size: 11px
}

.ret_bot {
    font-size: 13px;
    font-weight: 700
}

.crt_sec {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    padding: 6px 8px;
    border: 1px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    flex-shrink: 0;
    position: relative
}

.crt_sec:hover {
    border-color: #fff
}

@media(max-width:550px) {
    .crt_sec {
        padding: 2px 4px
    }
}

.crt_wrp {
    position: relative
}

.crt_cnt {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-30%);
    background: #f08804;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px
}

.crt_lbl {
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    padding-bottom: 2px
}

@media(max-width:550px) {
    .crt_lbl {
        font-size: 10px
    }

    .crt_wrp svg {
        width: 28px;
        height: 26px
    }
}

.nav_mstr {
    background: #232f3e;
    display: flex;
    align-items: center;
    padding: 0 8px;
    height: 38px;
    overflow-x: auto;
    gap: 4px
}

.nav_mstr::-webkit-scrollbar {
    display: none
}

@media(max-width:650px) {
    .nav_mstr {
        height: 34px
    }
}

.nav_itm {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 3px
}

.nav_itm:hover {
    border-color: #fff
}

@media(max-width:650px) {
    .nav_itm {
        font-size: 10px;
        padding: 4px 6px
    }
}

.sldr_cont {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 0
}

.sldr_trck {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform
}

.sldr_itm {
    flex: 0 0 100%;
    width: 100%
}

.sldr_itm img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover
}

.sldr_prev,
.sldr_next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    border-radius: 4px;
    width: 48px;
    height: 80px;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10
}

.sldr_prev:hover,
.sldr_next:hover {
    background: rgba(0, 0, 0, 0.8)
}

.sldr_prev {
    left: 16px
}

.sldr_next {
    right: 16px
}

@media(max-width:650px) {

    .sldr_prev,
    .sldr_next {
        width: 30px;
        height: 45px;
        font-size: 20px
    }
}

.sldr_dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10
}

@media(max-width:550px) {
    .sldr_dots {
        bottom: 8px;
        gap: 5px
    }
}

.sldr_dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s
}

@media(max-width:550px) {
    .sldr_dot {
        width: 6px;
        height: 6px
    }
}

.sldr_dot.act {
    background: #fff;
    transform: scale(1.2)
}

.mdl_overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 2000;
    align-items: center;
    justify-content: center
}

.mdl_overlay.open {
    display: flex
}

.mdl_box {
    background: #fff;
    color: #333;
    border-radius: 6px;
    padding: 20px;
    width: 380px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .3)
}

@media(max-width:480px) {
    .mdl_box {
        width: 90%;
        padding: 16px
    }
}

.mdl_cls {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center
}

.mdl_cls:hover {
    background: #f0f0f0
}

.mdl_box h3 {
    font-size: 18px;
    margin-bottom: 8px
}

.mdl_box p {
    font-size: 13px;
    color: #555;
    margin-bottom: 16px
}

.mdl_signin {
    display: block;
    width: 100%;
    background: #FFD814;
    border: 1px solid #FCD200;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 14px
}

.mdl_signin:hover {
    background: #F7CA00
}

.mdl_div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px
}

.mdl_div span {
    flex: 1;
    height: 1px;
    background: #ddd
}

.mdl_div p {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    margin-bottom: 0
}

.mdl_zip {
    display: flex;
    gap: 8px;
    margin-bottom: 14px
}

.mdl_zip input {
    flex: 1;
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: 8px 10px;
    font-size: 13px;
    outline: none
}

.mdl_zip input:focus {
    border-color: #e77600;
    box-shadow: 0 0 0 3px rgba(231, 118, 0, .2)
}

.mdl_zip button {
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 13px;
    cursor: pointer
}

.mdl_zip button:hover {
    background: #f5f5f5
}

.mdl_box select {
    width: 100%;
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: 8px 10px;
    font-size: 13px;
    margin-bottom: 14px;
    outline: none
}

.mdl_done {
    display: block;
    margin-left: auto;
    background: #FFD814;
    border: 1px solid #FCD200;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer
}

.mdl_done:hover {
    background: #F7CA00
}

.flag_us {
    display: inline-block;
    width: 22px;
    height: 15px;
    background: linear-gradient(to bottom, #B22234 0, #B22234 7.69%, #fff 7.69%, #fff 15.38%, #B22234 15.38%, #B22234 23.08%, #fff 23.08%, #fff 30.77%, #B22234 30.77%, #B22234 38.46%, #fff 38.46%, #fff 46.15%, #B22234 46.15%, #B22234 53.85%, #fff 53.85%, #fff 61.54%, #B22234 61.54%, #B22234 69.23%, #fff 69.23%, #fff 76.92%, #B22234 76.92%, #B22234 84.62%, #fff 84.62%, #fff 92.31%, #B22234 92.31%, #B22234 100%);
    position: relative;
    border: 1px solid rgba(0, 0, 0, .1);
    flex-shrink: 0
}

.flag_us::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    height: 54%;
    background: #3C3B6E
}

.crds_sec {
    max-width: 1500px;
    margin: 20px auto;
    padding: 0 20px
}

@media(max-width:650px) {
    .crds_sec {
        padding: 0 12px;
        margin: 15px auto
    }
}

.crds_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

@media(max-width:1024px) {
    .crds_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px
    }
}

@media(max-width:650px) {
    .crds_grid {
        grid-template-columns: 1fr;
        gap: 12px
    }
}

.crd {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s
}

.crd:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12)
}

.crd_img img {
    width: 100%;
    height: auto;
    display: block
}

.crd_cnt {
    padding: 16px
}

@media(max-width:550px) {
    .crd_cnt {
        padding: 12px
    }
}

.crd_cnt h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000
}

@media(max-width:650px) {
    .crd_cnt h3 {
        font-size: 16px
    }
}

.min_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px
}

@media(max-width:480px) {
    .min_grid {
        gap: 8px
    }
}

.min_itm {
    text-align: center
}

.min_itm img {
    width: 100%;
    max-width: 116px;
    height: auto;
    margin-bottom: 6px;
    border-radius: 4px
}

@media(max-width:650px) {
    .min_itm img {
        max-width: 95px
    }
}

@media(max-width:480px) {
    .min_itm img {
        max-width: 85px
    }
}

@media(max-width:350px) {
    .min_itm img {
        max-width: 75px
    }
}

.min_itm span {
    font-size: 12px;
    color: #333;
    display: block;
    line-height: 1.3
}

@media(max-width:650px) {
    .min_itm span {
        font-size: 10px
    }
}

@media(max-width:350px) {
    .min_itm span {
        font-size: 9px
    }
}

.crd_link {
    color: #007185;
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block
}

.crd_link:hover {
    color: #c7511f;
    text-decoration: underline
}

@media(max-width:480px) {
    .crd_link {
        font-size: 11px
    }
}

.min_grid2 {
    grid-template-columns: repeat(2, 1fr) !important
}

.min_grid3 {
    grid-template-columns: repeat(3, 1fr) !important
}

@media(max-width:640px) {

    .min_grid2,
    .min_grid3 {
        grid-template-columns: repeat(2, 1fr) !important
    }
}

.bks_sec {
    max-width: 1500px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px
}

@media(max-width:650px) {
    .bks_sec {
        padding: 12px
    }
}

.bks_hdr {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    padding: 0 8px;
    flex-wrap: wrap
}

.bks_hdr h2 {
    font-size: 22px;
    font-weight: 700;
    color: #000
}

@media(max-width:650px) {
    .bks_hdr h2 {
        font-size: 18px
    }
}

.bks_all {
    color: #007185;
    font-size: 14px;
    text-decoration: none
}

.bks_all:hover {
    color: #c7511f;
    text-decoration: underline
}

.bks_sldr {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px
}

.bks_trck_wrap {
    flex: 1;
    overflow: hidden
}

.bks_trck {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 20px
}

.bks_prev,
.bks_next {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.2s;
    flex-shrink: 0;
    color: #333
}

.bks_prev:hover,
.bks_next:hover {
    background: #f0f0f0;
    border-color: #999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1)
}

@media(max-width:600px) {

    .bks_prev,
    .bks_next {
        width: 32px;
        height: 32px;
        font-size: 18px
    }
}

.bks_dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px
}

.bks_dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s
}

.bks_dot.act {
    background: #e8710a;
    width: 24px;
    border-radius: 5px
}

.bok_itm {
    flex: 0 0 calc(100% / 7 - 20px);
    min-width: 120px;
    text-align: center;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s
}

.bok_itm:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1)
}

.bok_itm img {
    width: 100%;
    max-width: 140px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1)
}

.bok_itm .bok_title {
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.bok_itm .bok_author {
    font-size: 11px;
    color: #555;
    margin-top: 4px
}

@media(max-width:1200px) {
    .bok_itm {
        flex: 0 0 calc(100% / 5 - 16px)
    }
}

@media(max-width:900px) {
    .bok_itm {
        flex: 0 0 calc(100% / 4 - 16px)
    }
}

@media(max-width:600px) {
    .bok_itm {
        flex: 0 0 calc(100% / 3 - 12px);
        min-width: 80px
    }

    .bok_itm .bok_title {
        font-size: 11px
    }

    .bok_itm .bok_author {
        font-size: 10px
    }
}

@media(max-width:480px) {
    .bok_itm {
        flex: 0 0 calc(100% / 2 - 10px)
    }
}

.top_sellers {
    margin-top: 30px
}

.rec_sec {
    max-width: 1500px;
    margin: 40px auto;
    padding: 0 20px
}

@media(max-width:650px) {
    .rec_sec {
        margin: 20px auto;
        padding: 0 12px
    }
}

.rec_card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    border: 1px solid #e7e7e7
}

@media(max-width:650px) {
    .rec_card {
        padding: 30px 16px
    }
}

.rec_div {
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
    margin: 0 0 30px
}

.rec_div:last-of-type {
    margin: 30px 0 0
}

.rec_cnt {
    max-width: 300px;
    margin: 0 auto
}

.rec_txt {
    font-size: 14px;
    color: #333;
    margin-bottom: 16px;
    font-weight: 500
}

@media(max-width:650px) {
    .rec_txt {
        font-size: 12px
    }
}

.rec_btn {
    background: #FFD814;
    border: 1px solid #FCD200;
    border-radius: 20px;
    padding: 8px 80px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-bottom: 12px;
    transition: background 0.2s
}

.rec_btn:hover {
    background: #F7CA00
}

@media(max-width:650px) {
    .rec_btn {
        padding: 6px 40px;
        font-size: 11px
    }
}

.rec_new {
    font-size: 11px;
    color: #555
}

.rec_new a {
    color: #007185;
    text-decoration: none
}

.rec_new a:hover {
    color: #c7511f;
    text-decoration: underline
}

.ftr_mstr {
    background: #232f3e;
    margin-top: 40px
}

.ftr_top {
    background: #37475a;
    text-align: center;
    padding: 15px 0
}

.ftr_top a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500
}

.ftr_top a:hover {
    text-decoration: underline
}

.ftr_lang_bar {
    background: #232f3e;
    padding: 30px 0 20px;
    border-bottom: 1px solid #3a4553;
    margin-bottom: 20px
}

.ftr_lang_grp {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap
}

@media(max-width:550px) {
    .ftr_lang_grp {
        flex-direction: column;
        align-items: center;
        gap: 8px
    }
}

.ftr_sel {
    background: #232f3e;
    border: 1px solid #848688;
    color: #fff;
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 13px;
    cursor: pointer
}

.ftr_sel:hover {
    border-color: #fff
}

.ftr_sel option {
    background: #fff;
    color: #000
}

@media(max-width:550px) {
    .ftr_sel {
        width: 150px;
        font-size: 11px;
        padding: 4px 8px
    }
}

.ftr_logo {
    text-align: center;
    padding: 10px 0 20px;
    border-bottom: 1px solid #3a4553;
    margin-bottom: 30px
}

.ftr_logo img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    width: 76px
}

@media(max-width:480px) {
    .ftr_logo img {
        width: 60px
    }
}

.ftr_links {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    border-bottom: 1px solid #3a4553
}

@media(max-width:1024px) {
    .ftr_links {
        gap: 30px
    }
}

@media(max-width:900px) {
    .ftr_links {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:640px) {
    .ftr_links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px
    }
}

.ftr_col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px
}

@media(max-width:480px) {
    .ftr_col h4 {
        font-size: 14px
    }
}

.ftr_col ul {
    list-style: none;
    padding: 0
}

.ftr_col li {
    margin-bottom: 10px
}

.ftr_col a {
    color: #ddd;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s
}

.ftr_col a:hover {
    color: #fff;
    text-decoration: underline
}

@media(max-width:480px) {
    .ftr_col a {
        font-size: 12px
    }
}

.ftr_col .see_more {
    color: #ddd;
    font-weight: 400
}

.ftr_svcs {
    max-width: 1500px;
    margin: 0 auto;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    border-bottom: 1px solid #3a4553
}

@media(max-width:640px) {
    .ftr_svcs {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px
    }
}

.svc_itm a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    color: #ddd;
    font-size: 13px;
    transition: color 0.2s
}

@media(max-width:640px) {
    .svc_itm a {
        justify-content: center
    }
}

.svc_itm a:hover {
    color: #fff
}

.svc_itm a:hover strong {
    text-decoration: underline
}

.svc_itm strong {
    display: block;
    font-size: 14px
}

.svc_itm span {
    font-size: 12px;
    color: #aaa
}

.svc_itm a:hover span {
    color: #ddd
}

@media(max-width:480px) {
    .svc_itm strong {
        font-size: 12px
    }

    .svc_itm span {
        font-size: 10px
    }
}

.ftr_legal {
    text-align: center;
    padding: 20px
}

.legal_links {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    padding: 0
}

@media(max-width:640px) {
    .legal_links {
        flex-direction: column;
        gap: 10px
    }
}

.legal_links li a {
    color: #ddd;
    text-decoration: none;
    font-size: 12px
}

.legal_links li a:hover {
    color: #fff;
    text-decoration: underline
}

.ftr_copy {
    color: #aaa;
    font-size: 12px
}

@media(max-width:350px) {
    .crd_cnt h3 {
        font-size: 14px
    }

    .min_itm span {
        font-size: 8px
    }

    .min_itm img {
        max-width: 65px
    }

    .bks_hdr h2 {
        font-size: 14px
    }

    .rec_btn {
        padding: 4px 30px
    }

    .rec_txt {
        font-size: 11px
    }

    .ftr_sel {
        width: 120px;
        font-size: 10px
    }

    .ftr_logo img {
        width: 50px
    }

    .ftr_col h4 {
        font-size: 13px
    }

    .ftr_col a {
        font-size: 11px
    }

    .legal_links li a {
        font-size: 10px
    }

    .ftr_copy {
        font-size: 10px
    }
}

