/* -------------------------- Global CSS  ---------------------------*/
.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400; /* normal */
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.sidebar-category{
    display: flex;justify-content: start;align-items:center;gap:10px;
    transition: all 500ms ease-in-out;
    color:black;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(204, 204, 204, 0.21);
}
.sidebar-category:hover{
    color:red;
    transition: all 500ms ease-in-out;
}
.sidebar-category img{
    width:40px;
}
.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700; /* kalın */
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.fs-6{
    font-size:17px;
}
.outfit-bold {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700; /* kalın */
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.outfit-normal {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500; /* kalın */
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

/* Light */
.roboto-light {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300; /* ince */
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

/* Italic */
.roboto-italic {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: italic;
    font-variation-settings: "wdth" 100;
}

/* Bold Italic */
.roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: italic;
    font-variation-settings: "wdth" 100;
}
body{
    font-family: "Roboto", sans-serif;
}

button.remove-item{
    position: absolute;
    right: 0;
    border-radius: 50%;
    background: #f2f2ff;
    color: #0808ff;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swal2-confirm{
    font-family: "Outfit", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal !important;
    font-variation-settings: "wdth" 100 !important;
    transition: all 500ms ease-in-out;
}
.swal2-confirm:hover{
    background-color: black;
    color:white;
    transition: all 500ms ease-in-out;
}
.swal2-cancel{
    font-family: "Outfit", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal !important;
    font-variation-settings: "wdth" 100 !important;
}

/* -------------------------- ///GLOBAL CSS  ---------------------------*/
/* -------------------------- SEARCH PAGE  ---------------------------*/
.search-page #product-list .product-box h2 {
    font-size: 16px;
    line-height: 1.4em;
    max-height: calc(1.4em * 3);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
}
.search-page .products-right {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 32px !important;
}
.search-page #product-list .product-box {
    flex: 1 1 calc(33.333% - 32px) !important;
    border: 4px solid #2525FF0D;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    min-height: 440px;
    transition: .3s;
    box-sizing: border-box;
}
@media (max-width: 992px) {
    .search-page #product-list .product-box {
        flex: 1 1 calc(50% - 32px);
    }
}
@media (max-width: 768px) {
    .search-page #product-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .search-page #product-list a.product-box {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .search-page #product-list .product-box {
        flex: 1 1 100%;
        min-height: 240px;
    }
}
/* -------------------------- //// SEARCH PAGE  ---------------------------*/

/* -------------------------- Payment PAGE  ---------------------------*/
#register-form label.error{
    color:red !important;
    font-size:12px !important;
}
#register-form .select-wrap .select .select-list {
    font-family: "Roboto", sans-serif;
}
#register-form .button-select span{
    font-family: "Roboto", sans-serif !important;
}
#register-form  .select-wrap .select .select-list button{
    font-family: "Roboto", sans-serif !important;
}
#register-form label.error{
    color: red;
    font-size: 12px;

    padding-top: 8px !important;
    display: inline-block;
}
#register-form  .address-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
#register-form .address-item {
    position: relative;
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    cursor: pointer;
}
#register-form .address-item input[type="radio"] {
    position: absolute;
    opacity: 0;
}
#register-form .address-box {
    border: 2px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    transition: all 0.2s ease-in-out;
    background: #fff;
}
#register-form  .address-item input[type="radio"]:checked + .address-box {
    border-color: #2525ff;
    box-shadow: 0 0 5px rgba(37, 37, 255, 0.3);
    background: #f9f9ff;
}
@media (max-width: 768px) {
    #register-form .address-item {
        flex: 1 1 100%;
    }
}
#register-form .banks-pos {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#register-form .banks-pos .radio.full {
    width: 100%;
}
#register-form .banks-pos .radio.full label {
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#register-form  .banks-pos .radio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
#register-form .banks-pos .radio-grid .radio label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    padding: 12px 18px;
    transition: 0.2s;
}
#register-form .banks-pos .radio-grid .radio label:hover {
    border-color: #2525ff;
}
#register-form  .banks-pos .radio-grid .radio input:checked + label {
    border-color: #2525ff;
    box-shadow: 0 0 5px rgba(37, 37, 255, 0.25);
}
#register-form  .banks-pos .radio-grid .radio .icon img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}
@media (max-width: 768px) {
    #register-form .banks-pos .radio-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
#register-form  #credit-card-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
#register-form #credit-card-wrap .form-control {
    flex: 1;
    display: flex;
    flex-direction: column;
}
#register-form  .year-month .expiry-inputs {
    display: flex;
    align-items: center;
    gap: 5px;
}
#register-form .year-month .expiry-inputs input {
    width: 48%;
    text-align: center;
}

#register-form  .year-month .divider {
    font-weight: bold;
    color: #333;
    opacity: 0.6;
}

@media (max-width: 768px) {
    #register-form #credit-card-wrap {
        flex-direction: column;
    }

    #register-form .year-month .expiry-inputs input {
        width: 45%;
    }
}

#register-form .banktaksit td {
    padding: 14px 8px;
    text-align: center;
    vertical-align: middle;
}
#register-form .banktaksit img {
    display: block;
    margin: 0 auto;
}
#register-form .banktaksit .ilksatir_baslik td {
    background-color: #f3f3f3;
}
#register-form .banktaksit .taksit_satiri:nth-child(even) td {
    background-color: #fafafa;
}
#register-form .banktaksit input[type="radio"] {
    transform: scale(1.2);
}

#register-form input[name="card_number"] + label.error,
#register-form input[name="card_month"] + label.error,
#register-form input[name="card_year"] + label.error,
#register-form input[name="card_cvc"] + label.error {
    display: none !important;
}

#register-form input.error[name="card_number"],
#register-form input.error[name="card_month"],
#register-form input.error[name="card_year"],
#register-form input.error[name="card_cvc"] {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 1px rgba(220, 53, 69, 0.2);
}
#register-form .alert-danger{
    margin-bottom: 20px;
    background-color: #ff25250d;
    border: 1px solid #ff25251a;
}

/* -------------------------- /// Payment PAGE  ---------------------------*/
/* -------------------------- Payment Success PAGE  ---------------------------*/
#successPage .select-wrap .select .select-list {
    font-family: "Roboto", sans-serif;
}
#successPage .button-select span{
    font-family: "Roboto", sans-serif !important;
}
#successPage  .select-wrap .select .select-list button{
    font-family: "Roboto", sans-serif !important;
}
#successPage label.error{
    color: red;
    font-size: 12px;
    padding-top: 8px !important;
    display: inline-block;
}
#successPage .display-4{
    font-size:20px;margin-top:10px;  color: #28a745;
}
#successPage .display-5{
    font-size:16px;margin-top:10px;  color: black;
}
#successPage .display-6{
    font-size:16px;margin-top:10px;  color: black;
}
#successPage  .success-icon{
    width: 80px;color:green;    animation: bounceIn 0.8s;
    fill: #28a745;
}
#successPage .descalert{
    display: flex;
    gap:10px;
    flex-direction: column;
}
#successPage .order-no .badge{
    color: #28a745;
    font-size:16px;
}
/* --------------------------  ///Payment Success PAGE  ---------------------------*/


/* --------------------------  ORDER TRACKING PAGE ---------------------------*/
#trackingPage .text-primary {
    color: #0d6efd !important;
}

#trackingPage .text-success {
    color: #198754 !important;
}

#trackingPage  .text-info {
    color: #0dcaf0 !important;
}

#trackingPage   .text-warning {
    color: #ffc107 !important;
}

#trackingPage   .text-danger {
    color: #dc3545 !important;
}
#trackingPage  .text-primary:hover    { color: #0b5ed7 !important; }
#trackingPage  .text-success:hover    { color: #157347 !important; }
#trackingPage  .text-info:hover       { color: #31d2f2 !important; }
#trackingPage  .text-warning:hover    { color: #ffca2c !important; }
#trackingPage  .text-danger:hover     { color: #bb2d3b !important; }

 .text-primary {
    color: #0d6efd !important;
}

 .text-success {
    color: #198754 !important;
}

  .text-info {
    color: #0dcaf0 !important;
}

  .text-warning {
    color: #ffc107 !important;
}
   .text-danger {
    color: #dc3545 !important;
}
#trackingPage  .text-primary:hover    { color: #0b5ed7 !important; }
#trackingPage  .text-success:hover    { color: #157347 !important; }
#trackingPage  .text-info:hover       { color: #31d2f2 !important; }
#trackingPage  .text-warning:hover    { color: #ffca2c !important; }
#trackingPage  .text-danger:hover     { color: #bb2d3b !important; }

#trackingPage  #trackingModal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(0,0,0,0.45);
    align-items: center;
    justify-content: center;
}
#trackingPage  #trackingModal .modal-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 40px;
    width: 400px;
    max-width: calc(100% - 40px);
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,.25);
    font-family: "Outfit", sans-serif;
}
#trackingPage  #trackingModal .spinner {
    font-size: 48px;
    color: #007bff;
    margin-bottom: 15px;
}
#trackingPage  .modal-message {
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}
#trackingPage .modal-sub {
    color: #555;
    font-size: 14px;
}
#trackingPage .modal-error {
    display: none;
    margin-top: 12px;
    color: #c60000;
    font-size: 14px;
    font-weight: 600;
}
/* --------------------------  // ORDER TRACKING PAGE ---------------------------*/

/* --------------------------  USER ADDRESS PAGE ---------------------------*/
#addressPage .addres-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

#addressPage .addres-boxes .box {
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 16px;
    background: #fff;
    min-width: 280px;
}

#addressPage .addres-boxes .box h6 {
    font-weight: 600;
    margin-bottom: 8px;
}

#addressPage .addres-boxes .box p {
    font-size: 14px;
    margin-bottom: 12px;
    color: #333;
}

#addressPage  .addres-boxes .box .button {
    width: 100%;
}

@media (max-width: 992px) {
    #addressPage  .addres-boxes .box {
        flex: 1 1 calc(50% - 20px);
    }
}
@media (max-width: 600px) {
    #addressPage  .addres-boxes .box {
        flex: 1 1 100%;
    }
}
#addressPage  a.btn-danger-outline {
    color: #ff252f;
    border: 1px solid #ff2525;
    background-color: #fff;
}
#addressAddPage .select-wrap .select .select-list {
    font-family: "Roboto", sans-serif;
}
#addressAddPage .button-select span{
    font-family: "Roboto", sans-serif !important;
}
#addressAddPage .select-wrap .select .select-list button{
    font-family: "Roboto", sans-serif !important;
}
#addressAddPage label.error{
    color: red;
    font-size: 12px;

    padding-top: 8px !important;
    display: inline-block;
}
/* --------------------------  USER ADDRESS PAGE ---------------------------*/

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

/* Sayfa linkleri */
.pagination li a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 6px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
}

/* Hover efekti */
.pagination li a:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
    color: #000;
}

/* Aktif sayfa */
.pagination li.active a,
.pagination li.active span {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
    cursor: default;
}

/* Mobil uyum */
@media (max-width: 576px) {
    .pagination li a {
        padding: 6px 10px;
        font-size: 14px;
    }
}

#productPages .product-box h2 {
    font-size: 16px;
    line-height: 1.4em;
    max-height: calc(1.4em * 3);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
}
#productPages  #currentImage{
    min-height: 400px;
    max-height: 500px !important;
    object-fit: contain;
    text-align: center;
}
#productPages .product-images .image{
    text-align: center;
}
#productPages  .tab-content .content p {
    font-family: "Outfit", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal !important;
    font-variation-settings: "wdth" 100 !important;
}
#productPages  .product-detail .right .product-info .price {
    font-size:25px !important;
}
#productPages  .swal2-confirm{
    background-color: rgba(53, 54, 53, 0.41);
    font-family: "Outfit", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal !important;
    font-variation-settings: "wdth" 100 !important;
    transition: all 500ms ease-in-out;
}
#productPages  .swal2-confirm:hover{
    background-color: black;
    color:white;
    transition: all 500ms ease-in-out;
}
#productPages .swal2-cancel{
    font-family: "Outfit", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal !important;
    font-variation-settings: "wdth" 100 !important;
}