 /* Sadece Sepet CSS'i - Yeni Sınıf İsimleri */
 
 .sidebar {
     left: -150px;
 }
 
 .shop-cart-wrapper {
     position: relative;
     margin-left: 8px;
 }
 
 .shop-cart-btn {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 45px;
     height: 45px;
     border-radius: 50%;
     color: var(--mainbg) !important;
     background: transparent;
     border: none;
     cursor: pointer;
     transition: background-color 0.2s;
     position: relative;
     border: none !important;
 }
 
 .shop-cart-btn::after {
     content: "";
     position: absolute;
     width: 100%;
     height: 100%;
     border-radius: 4px;
     border: 1px solid var(--mainbg);
     opacity: .1;
 }
 
 .shop-cart-btn::before {
     content: "";
     position: absolute;
     width: 100%;
     height: 100%;
     border-radius: 4px;
     background: var(--mainbg) !important;
     opacity: .1;
 }
 
 .shop-cart-count {
     position: absolute;
     top: -3px;
     right: -3px;
     background-color: var(--mainbg);
     color: var(--whitebg);
     font-size: 11px;
     font-weight: 600;
     height: 18px;
     min-width: 18px;
     border-radius: 9px;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 0 5px;
 }
 /* Sepet Dropdown */
 
 .shop-cart-dropdown {
     position: absolute;
     top: calc(100% + 8px);
     right: 0;
     width: 360px;
     background: var(--whitebg);
     border-radius: 4px;
     border: 1px solid var(--line);
     z-index: 100;
     opacity: 0;
     visibility: hidden;
     transform: translateY(10px);
     transition: all 0.3s;
 }
 
 .shop-cart-wrapper:hover .shop-cart-dropdown,
 .shop-cart-dropdown.active {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }
 
 .shop-cart-header {
     padding: 1rem;
     border-bottom: 1px solid var(--line);
     display: flex;
     align-items: center;
     justify-content: space-between;
 }
 
 .shop-cart-header h3 {
     font-size: 1rem;
     font-weight: 600;
     color: var(--main_text);
     margin: 0;
 }
 
 .shop-cart-header .shop-items-count {
     font-size: 0.875rem;
     color: var(--subtext);
     background-color: var(--custom6);
     padding: 0.25rem 0.5rem;
     border-radius: 1rem;
 }
 
 .shop-cart-items {
     max-height: 300px;
     overflow-y: auto;
     padding: 0 15px;
 }
 
 .shop-empty-cart {
     padding: 2rem;
     text-align: center;
     color: var(--subtext);
 }
 
 .shop-empty-cart i {
     font-size: 2.5rem;
     margin-bottom: 1rem;
     color: var(--line);
 }
 
 .shop-cart-item {
     display: flex;
     padding: 12px 0;
     border-bottom: 1px solid var(--line);
     gap: 12px;
     transition: opacity 0.3s;
     position: relative;
 }
 
 .shop-cart-item:last-child {
     border-bottom: none;
 }
 
 .shop-item-image {
     width: 40px;
     height: 40px;
     border-radius: 4px;
     overflow: hidden;
     background-color: var(--custom6);
     flex-shrink: 0;
     display: flex;
     align-items: center;
     justify-content: center;
 }
 
 .shop-item-image i {
     font-size: 20px;
 }
 
 .shop-item-details {
     flex-grow: 1;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }
 
 .shop-item-name {
     font-size: 0.875rem;
     font-weight: 500;
     margin-bottom: 0.25rem;
     color: var(--main_text);
 }
 
 .shop-item-price {
     font-size: 14px;
     font-weight: 600;
     color: var(--mainbg);
     margin: 5px 0;
 }
 
 .shop-item-quantity {
     display: flex;
     align-items: center;
     font-size: 12px;
     color: var(--subtext);
 }
 
 .shop-item-quantity a {
     font-weight: 400 !important;
     font-size: 12px !important;
     color: var(--subtext) !important;
     line-height: 16px !important;
 }
 
 .shop-remove-item:hover {
     color: #ef4444;
 }
 
 .shop-cart-footer {
     background-color: var(--custom6);
     border-top: 1px solid var(--line);
     padding: 1rem;
     border-radius: 0 0 4px 4px;
 }
 
 .shop-cart-total {
     display: flex;
     justify-content: space-between;
     margin-bottom: 1rem;
     font-weight: 500;
     color: var(--main_text);
 }
 
 .shop-cart-actions {
     display: flex;
     gap: 0.5rem;
 }
 
 .shop-remove-item {
     border: none;
     position: absolute !important;
     color: var(--main_text);
     font-size: 20px;
     padding: 5px !important;
     border-radius: 4px;
     background: transparent;
     border: 1px solid var(--line);
     right: 15px !important;
     top: 50% !important;
     transform: translate(0, -50%) !important;
 }
 
 .shop-btn {
     display: block;
     width: 100%;
     text-align: center;
     font-weight: 500;
     text-decoration: none;
     transition: all 0.2s;
     cursor: pointer;
     border: none;
     font-size: 15px !important;
     font-weight: 500 !important;
     line-height: 24px !important;
     justify-content: center;
     padding: 10px !important;
     border-radius: 2px !important;
     background: var(--mainbg);
     margin: 0 !important;
 }
 
 .shop-btn-outline {
     background-color: var(--whitebg);
     color: var(--main_text);
     border: 1px solid var(--line);
 }
 
 .shop-btn-primary {
     background: var(--mainbg) !important;
     color: var(--textwhite) !important;
 }
 
 .shop-btn-primary:hover {
     background-color: #3a51e3;
 }
 /* Responsive */
 
 .basket {
     border: 1px solid var(--line);
     height: 45px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-left: 8px;
     position: relative;
 }
 
 .basket span {
     position: absolute;
     top: 0;
     right: 0;
     font-size: 13px;
     font-weight: 400;
     line-height: 18px;
     color: var(--main_text);
 }
 
 .basket a {
     line-height: 45px !important;
 }
 
 .basket a i {
     margin-right: 0;
 }
 
 .basket #sepeticon {
     padding: 15px;
     margin-left: 0;
 }
 
 #sepeticon {
     font-weight: 500;
     font-size: 15px;
     margin-right: unset;
     margin-top: unset;
     padding: 4.5px 15px;
     border-radius: 10px;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     max-width: 72px;
     color: var(--text_1);
     -webkit-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
 }
 
 section#basket {
     padding: 50px 0;
 }
 
 section#basket .basket__container.clear .basket__detail .detail__content .table__content .table tbody td {
     padding: 40px 0 !important;
     padding-bottom: 15px !important;
 }
 
 section#basket .basket__container.clear .order-info-inner .inner-bottom {
     opacity: 0.25;
 }
 
 section#basket .basket__container .detail__content.clear .product-cart-all-acrd-items .cart-product {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: center;
     -ms-flex-pack: center;
     justify-content: center;
     border: none;
     text-align: center;
 }
 
 section#basket .basket__container .detail__content.clear .product-cart-all-acrd-items .cart-product i {
     font-size: 50px;
     color: var(--text_4);
 }
 
 section#basket .basket__container .detail__content.clear .product-cart-all-acrd-items .cart-product p {
     font-weight: 500;
     font-size: 17px;
     line-height: 22px;
     color: var(--text_1);
     margin: 25px 0 17px 0;
 }
 
 section#basket .basket__container .detail__content.clear .product-cart-all-acrd-items .cart-product p.second {
     margin: 0;
     font-weight: 400;
     font-size: 15px;
     line-height: 19px;
     color: var(--text_4);
 }
 
 section#basket .basket__container .basket__detail {
     padding: 25px;
     background: #FFFFFF;
     border-radius: 16px;
 }
 
 section#basket .basket__container .basket__detail .detail__top {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
     border-bottom: 1px solid var(--line);
     padding-bottom: 25px;
     margin-bottom: 25px;
 }
 
 section#basket .basket__container .basket__detail .detail__top span {
     font-weight: 500;
     font-size: 17px;
     line-height: 22px;
     color: var(--text_1);
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
 }
 
 section#basket .basket__container .basket__detail .detail__top span i {
     font-size: 20px;
     margin-right: 15px;
 }
 
 section#basket .basket__container .basket__detail .detail__top h6 {
     font-weight: 400;
     font-size: 15px;
     line-height: 19px;
     color: var(--text_4);
 }
 
 section#basket .basket__container .basket__detail .detail__top h6 strong {
     font-weight: 500;
 }
 
 section#basket .basket__container .basket__detail .detail__content .quantity-block button {
     border: none;
     height: 37px;
     width: 30px;
     background: #ECF9FF;
     border: 1px solid var(--line);
     font-size: 20px;
     color: var(--text_4);
 }
 
 section#basket .basket__container .basket__detail .detail__content .quantity-block button.amount-dec-btn {
     border-radius: 5px 0 0 5px;
 }
 
 section#basket .basket__container .basket__detail .detail__content .quantity-block button.amount-inc-btn {
     border-radius: 0 5px 5px 0;
 }
 
 section#basket .basket__container .basket__detail .detail__content .quantity-block .form-control {
     width: 50px;
     height: 37px;
     border-radius: 0;
     border: 1px solid var(--line);
 }
 
 section#basket .basket__container .basket__detail .detail__content .quantity-block .form-control:focus {
     outline: none;
     -webkit-box-shadow: none;
     box-shadow: none;
 }
 
 section#basket .basket__container .basket__detail .detail__content .cart-product-title {
     padding: 15px 20px;
     background: #ECF9FF;
     border-radius: 10px;
 }
 
 section#basket .basket__container .order-info-inner {
     background: #fff;
     border-radius: 16px;
     padding: 30px;
 }
 
 section#basket .basket__container .order-info-inner .inner-top {
     margin-bottom: 30px;
 }
 
 section#basket .basket__container .order-info-inner .inner-top span {
     font-weight: 500;
     font-size: 20px;
     line-height: 25px;
     color: var(--text_1);
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     margin-bottom: 10px;
 }
 
 section#basket .basket__container .order-info-inner .inner-top span i {
     margin-right: 8px;
 }
 
 section#basket .basket__container .order-info-inner .inner-top p {
     font-weight: 400;
     font-size: 15px;
     line-height: 19px;
     color: var(--text_4);
 }
 
 section#basket .basket__container .order-info-inner .inner-middle {
     padding: 30px 0;
     border-top: 1px solid #ECF9FF;
     border-bottom: 1px solid #ECF9FF;
 }
 
 section#basket .basket__container .order-info-inner .inner-middle li {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
     font-weight: 500;
     font-size: 15px;
     line-height: 19px;
     color: var(--text_1);
 }
 
 section#basket .basket__container .order-info-inner .inner-middle li i {
     color: var(--mainbg);
     margin-right: 7px;
     font-size: 18px;
 }
 
 section#basket .basket__container .order-info-inner .inner-middle li:last-child span {
     color: var(--mainbg);
 }
 
 section#basket .basket__container .order-info-inner .inner-middle li:last-child span svg path {
     fill: var(--mainbg);
 }
 
 section#basket .basket__container .order-info-inner .inner-middle li span.txt {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     font-weight: 500;
     font-size: 15px;
     line-height: 19px;
     color: var(--text_1);
 }
 
 section#basket .basket__container .order-info-inner .inner-middle li svg,
 section#basket .basket__container .order-info-inner .inner-middle li img {
     margin-right: 10px;
 }
 
 section#basket .basket__container .order-info-inner .inner-middle li:not(:last-child) {
     margin-bottom: 25px;
 }
 
 section#basket .basket__container .order-info-inner .inner-middle li:last-child {
     color: var(--text_2);
 }
 
 section#basket .basket__container .order-info-inner .inner-middle li.order-price .order-old-price del {
     font-weight: 600;
     font-size: 15px;
     line-height: 22px;
     color: var(--theme_color_3);
 }
 
 section#basket .basket__container .order-info-inner .inner-middle li.order-price .order-old-price del strong {
     font-family: sans-serif !important;
 }
 
 section#basket .basket__container .order-info-inner .inner-middle li.order-price .order-new-price {
     font-size: 15px;
     line-height: 22px;
     font-weight: 700;
 }
 
 section#basket .basket__container .order-info-inner .inner-middle li.order-price .order-new-price strong {
     font-family: sans-serif !important;
 }
 
 section#basket .basket__container .order-info-inner .inner-bottom {
     margin-top: 30px;
 }
 
 section#basket .basket__container .order-info-inner .inner-bottom button {
     display: block;
     width: 100%;
     border: none;
     border-radius: 10px;
     color: #fff;
     background: var(--mainbg);
     font-weight: 500;
     font-size: 15px;
     line-height: 22px;
     padding: 14px 0;
 }
 
 section#basket .basket__container .cart-product-body {
     margin-top: 25px;
     border: 1px solid var(--line);
     border-radius: 10px;
     padding: 15.5px 20px;
 }
 
 section#basket .basket__container .cart-details-main-block h3 {
     font-weight: 400;
     font-size: 15px;
     line-height: 19px;
     color: var(--text_4);
     text-align: left;
 }
 
 section#basket .basket__container .cart-details-main-block h4 {
     font-weight: 500;
     font-size: 15px;
     line-height: 19px;
     color: var(--text_1);
 }
 
 section#basket .basket__container .cart-details-main-block .product-image {
     margin-right: 20px;
 }
 
 section#basket .basket__container .quantity-block button {
     border: none;
     height: 30px;
     width: 30px;
     border-radius: 50%;
 }
 
 section#basket .basket__container .quantity-block .form-control {
     width: 50px;
     height: 30px;
     border-radius: 3px;
     border: 1px solid #EAECED;
     background-color: #fff;
 }
 
 section#basket .basket__container .input--amount-control ::-webkit-inner-spin-button {
     display: none;
 }
 
 section#basket .basket__container .cart-details-main-block .cart-product .product-block {
     -ms-flex-preferred-size: 55%;
     flex-basis: 55%;
 }
 
 section#basket .basket__container .cart-details-main-block .cart-product .product-block .product__image {
     min-width: 50px;
     height: 35px;
     overflow: hidden;
     border-radius: 5px;
     margin-right: 20px;
 }
 
 section#basket .basket__container .cart-details-main-block .cart-product .product-block .product__image img {
     max-width: 100%;
     -o-object-fit: cover;
     object-fit: cover;
 }
 
 section#basket .basket__container .cart-details-main-block .cart-product .product-block a {
     font-weight: 500;
     font-size: 15px;
     line-height: 19px;
     color: var(--text_1);
 }
 
 section#basket .basket__container .cart-details-main-block .cart-product .price-block {
     -ms-flex-preferred-size: 20%;
     flex-basis: 20%;
     margin: 0 10px;
 }
 
 section#basket .basket__container .cart-details-main-block .cart-product .price-block h3 {
     padding-left: 35px;
 }
 
 section#basket .basket__container .cart-details-main-block .cart-product .quantity-block {
     -ms-flex-preferred-size: 10%;
     flex-basis: 10%;
     white-space: nowrap;
 }
 
 section#basket .basket__container .cart-details-main-block .cart-product .cross-btn-positioning {
     position: absolute;
     top: 55%;
     right: 16px;
     -webkit-transform: translateY(-50%);
     transform: translateY(-50%);
 }
 
 section#basket .basket__container .cart-details-main-block .cart-product .cross-btn-positioning i {
     font-size: 18px;
     color: var(--mainbg);
 }
 
 section#basket .basket__container .cart-details-main-block .cart-product .cross-btn-positioning i.sepet {
     color: var(--text_4) !important;
 }
 
 .continue-shop-btn {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: center;
     -ms-flex-pack: center;
     justify-content: center;
     margin-top: 50px;
 }
 
 .continue-shop-btn a {
     border: 1px solid var(--line);
     border-radius: 100px;
     background: transparent;
     padding: 9px 57px;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: center;
     -ms-flex-pack: center;
     justify-content: center;
 }
 
 .continue-shop-btn a:focus {
     box-shadow: none;
     outline: none;
 }
 
 .continue-shop-btn a i {
     margin-right: 10px;
     font-size: 20px;
 }
 
 section#order-form.sepet-step {
     padding: 50px 0;
 }
 
 section#order-form.sepet-step .form-left .order-steps .order-top {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
 }
 
 section#order-form.sepet-step .form-left .order-steps .order-top span {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     font-weight: 500;
     font-size: 17px;
     line-height: 22px;
     color: var(--text_1);
 }
 
 section#order-form.sepet-step .form-left .order-steps .order-top span i {
     margin-right: 10px;
 }
 
 section#order-form.sepet-step .form-left .order-steps .order-top p {
     font-weight: 400;
     font-size: 15px;
     line-height: 19px;
     color: var(--text_4);
     margin: 0;
 }
 
 section#order-form.sepet-step .form-left .order-steps .steps .form-group .select_box {
     font-weight: 500;
     font-size: 15px;
     line-height: 19px;
     color: var(--text_1);
     margin-bottom: 10px;
     position: relative;
 }
 
 section#order-form.sepet-step .form-left .order-steps .steps .form-group .select_box i {
     position: absolute;
     font-size: 20px;
     right: 10px;
     top: 50%;
     -webkit-transform: translate(-50%, -50%);
     transform: translate(-50%, -50%);
 }
 
 section#order-form.sepet-step .form-left .order-steps .steps .form-group .select_box .dropdown-toggle {
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
     padding: 16.5px 20px;
     background: #fff;
     border-radius: 16px;
     border: 1px solid #dfecf5;
 }
 
 section#order-form.sepet-step .form-left .order-steps .steps .form-group .select_box .dropdown-toggle:focus {
     outline: none;
     border: 1px solid #dfecf5;
     outline: none !important;
     outline-offset: none !important;
     -webkit-box-shadow: none;
     box-shadow: none;
 }
 
 section#order-form.sepet-step .form-left .order-steps .steps .form-group .select_box .dropdown-toggle:after {
     content: none;
 }
 
 section#order-form.sepet-step .order-info .order-info-inner .inner-bottom button {
     line-height: 12px;
     border-radius: 10px;
 }
 
 section#order-form {
     padding: 60px 0;
 }
 
 section#order-form .form-left .order-steps {
     background: #fff;
     border-radius: 16px;
     padding: 30px;
 }
 
 section#order-form .form-left .order-steps .order-top {
     border-bottom: 1px solid var(--line);
     padding-bottom: 30px;
 }
 
 section#order-form .form-left .order-steps .order-top span {
     font-weight: 500;
     font-size: 20px;
     line-height: 25px;
     color: var(--text_1);
 }
 
 section#order-form .form-left .order-steps .order-top p {
     font-weight: 400;
     font-size: 15px;
     line-height: 19px;
     color: var(--text_4);
     margin-top: 10px;
 }
 
 section#order-form .form-left .order-steps .steps {
     padding-top: 30px;
 }
 
 section#order-form .form-left .order-steps .steps .form-group {
     margin-bottom: 25px;
 }
 
 section#order-form .form-left .order-steps .steps .form-group .form-control {
     border: 1px solid #dfecf5;
     border-radius: 16px;
     padding: 15px 20px;
     font-weight: 400;
     font-size: 16px;
     line-height: 20px;
     color: var(--text_1);
 }
 
 section#order-form .form-left .order-steps .steps .form-group .form-control:focus {
     outline: none;
     box-shadow: none;
 }
 
 section#order-form .form-left .order-steps .steps .form-group .c-label {
     font-weight: 500;
     font-size: 15px;
     line-height: 19px;
     color: var(--text_1);
     margin-bottom: 10px;
 }
 
 section#order-form .form-left .order-steps .steps .form-group .select_box {
     border-top: 1px solid var(--line);
     border-bottom: 1px solid var(--line);
     border: none;
     position: relative;
 }
 
 section#order-form .form-left .order-steps .steps .form-group .select_box .form-control {
     border-radius: 16px;
     background: transparent;
 }
 
 section#order-form .form-left .order-steps .steps .form-group .select_box .form-control:hover {
     outline: none;
     border: none;
     box-shadow: none;
 }
 
 section#order-form .form-left .order-steps .steps .form-group .select_box .dropdown-toggle {
     padding: 19px 20px;
     background: #fff;
     border-radius: 16px;
     border: 1px solid #dfecf5;
 }
 
 section#order-form .form-left .order-steps .steps .form-group .select_box .dropdown-toggle:hover {
     background: #fff;
     outline: none;
     border: 1px solid #dfecf5;
     box-shadow: none;
 }
 
 section#order-form .form-left .order-steps .steps .form-group .select_box .dropdown-toggle:focus {
     outline: none;
     border: 1px solid #dfecf5;
     outline: none !important;
     outline-offset: none !important;
     box-shadow: none;
 }
 
 section#order-form .form-left .order-steps .steps .form-group .select_box .dropdown-toggle:after {
     display: none;
 }
 
 section#order-form .form-left .order-steps .steps .form-group .select_box .dropdown-toggle .filter-option-inner-inner {
     font-weight: 400;
     font-size: 16px;
     line-height: 20px;
     color: var(--text_1);
 }
 
 section#order-form .form-left .order-steps .steps .form-group .select_box .dropdown-menu {
     border: none;
     box-shadow: 0px 5px 50px 5px rgba(55, 81, 126, 0.05);
     border-radius: 16px;
 }
 
 section#order-form .form-left .order-steps .steps .form-group .select_box .dropdown-menu .dropdown-item.active {
     background: var(--mainbg);
 }
 
 section#order-form .form-left .order-steps .steps .form-group .select_box i {
     position: absolute;
     right: 10px;
     top: 50%;
     transform: translate(-50%, -50%);
 }
 
 section#order-form .form-left .order-steps .steps .form-group textarea {
     width: 100%;
     border: 1px solid #ecf9ff;
     font-size: 13px;
     line-height: 19px;
     color: var(--theme_color_1);
     padding: 20px;
     min-height: 115px;
 }
 
 section#order-form .form-left .order-steps .steps .form-group textarea::placeholder {
     color: var(--theme_color_3_placeholder);
 }
 
 section#order-form .order-info .order-info-inner {
     background: #fff;
     border-radius: 16px;
     padding: 30px;
 }
 
 section#order-form .order-info .order-info-inner .inner-top {
     margin-bottom: 30px;
 }
 
 section#order-form .order-info .order-info-inner .inner-top span {
     font-weight: 500;
     font-size: 20px;
     line-height: 25px;
     color: var(--text_1);
     display: flex;
     align-items: center;
     margin-bottom: 10px;
 }
 
 section#order-form .order-info .order-info-inner .inner-top span i {
     margin-right: 8px;
 }
 
 section#order-form .order-info .order-info-inner .inner-top p {
     font-weight: 400;
     font-size: 15px;
     line-height: 19px;
     color: var(--text_4);
 }
 
 section#order-form .order-info .order-info-inner .inner-middle {
     padding: 30px 0;
     border-top: 1px solid var(--line);
     border-bottom: 1px solid var(--line);
 }
 
 section#order-form .order-info .order-info-inner .inner-middle li {
     display: flex;
     align-items: center;
     justify-content: space-between;
     font-weight: 500;
     font-size: 15px;
     line-height: 19px;
     color: var(--text_1);
 }
 
 section#order-form .order-info .order-info-inner .inner-middle li i {
     color: var(--mainbg);
     margin-right: 7px;
     font-size: 18px;
 }
 
 section#order-form .order-info .order-info-inner .inner-middle li:last-child {
     color: var(--mainbg);
 }
 
 section#order-form .order-info .order-info-inner .inner-middle li:last-child svg path {
     fill: var(--mainbg);
 }
 
 section#order-form .order-info .order-info-inner .inner-middle li span.txt {
     display: flex;
     align-items: center;
     font-weight: 500;
     font-size: 15px;
     line-height: 19px;
     color: var(--text_1);
 }
 
 section#order-form .order-info .order-info-inner .inner-middle li svg,
 section#order-form .order-info .order-info-inner .inner-middle li img {
     margin-right: 10px;
 }
 
 section#order-form .order-info .order-info-inner .inner-middle li:not(:last-child) {
     margin-bottom: 25px;
 }
 
 section#order-form .order-info .order-info-inner .inner-middle li:last-child {
     color: var(--mainbg);
 }
 
 section#order-form .order-info .order-info-inner .inner-middle li.order-price .order-old-price del {
     font-weight: 600;
     font-size: 15px;
     line-height: 22px;
     color: var(--theme_color_3);
 }
 
 section#order-form .order-info .order-info-inner .inner-middle li.order-price .order-old-price del strong {
     font-family: sans-serif !important;
 }
 
 section#order-form .order-info .order-info-inner .inner-middle li.order-price .order-new-price {
     font-size: 15px;
     line-height: 22px;
     font-weight: 700;
 }
 
 section#order-form .order-info .order-info-inner .inner-middle li.order-price .order-new-price strong {
     font-family: sans-serif !important;
 }
 
 section#order-form .order-info .order-info-inner .inner-bottom {
     margin-top: 30px;
 }
 
 section#order-form .order-info .order-info-inner .inner-bottom button {
     display: block;
     width: 100%;
     border: none;
     border-radius: 16px;
     color: var(--bg_3);
     background: var(--mainbg);
     font-weight: 500;
     font-size: 15px;
     line-height: 22px;
     padding: 19px 0;
 }
 
 .sepet-sayfa .content {
     margin: 40px 0;
 }
 
 .sepet-baslik {
     font-size: 25px;
     font-weight: 700;
     color: var(--main_text);
     line-height: 32px;
 }
 
 .sepet-aciklama {
     font-size: 14px;
     color: var(--subtext);
     margin-bottom: 40px;
 }
 
 .sepet-icerik {
     display: grid;
     grid-template-columns: 1fr 380px;
     gap: 20px;
     align-items: flex-start;
 }
 
 .sepet-bolum {
     background: var(--whitebg);
     border: 1px solid var(--line);
     border-radius: 6px;
     height: auto;
 }
 
 .sepet-panel-baslik {
     padding: 16px 20px;
     border-bottom: 1px solid var(--line);
     display: flex;
     align-items: center;
     justify-content: space-between;
 }
 
 .sepet-panel-baslik-sol {
     display: flex;
     align-items: center;
 }
 
 .sepet-panel-icon {
     color: var(--main_text);
     margin-right: 5px;
     font-size: 18px;
 }
 
 .sepet-panel-text {
     font-weight: 600;
     font-size: 15px;
     line-height: 19px;
     color: var(--main_text);
 }
 
 .sepet-bosalt {
     font-size: 14px;
     color: var(--main_text);
     background: none;
     border: none;
     cursor: pointer;
     padding: 0;
     display: flex;
     align-items: center;
 }
 
 .sepet-bosalt i {
     margin-right: 6px;
     line-height: 20px;
     font-size: 18px;
 }
 
 .sepet-urun-liste {
     padding: 0;
 }
 
 .sepet-urun {
     display: flex;
     align-items: center;
     padding: 16px 20px;
     border: 1px solid var(--line);
 }
 
 .sepet-urun-ikon {
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 4px;
     margin-right: 15px;
     position: relative;
 }
 
 .sepet-urun-ikon::before {
     content: "";
     position: absolute;
     width: 100%;
     height: 100%;
     border-radius: 4px;
     background: var(--mainbg) !important;
     opacity: .1;
 }
 
 .sepet-urun-detay {
     flex: 1;
 }
 
 .sepet-urun-ad {
     font-weight: 600;
     font-size: 14px;
     margin-bottom: 5px;
     color: var(--main_text);
 }
 
 .sepet-urun-link {
     color: var(--subtext);
     font-size: 13px;
     display: block;
     margin-top: 3px;
 }
 
 .sepet-urun-link a {
     color: var(--subtext);
     text-decoration: none;
 }
 
 .sepet-urun-fiyat {
     font-weight: 600;
     font-size: 15px;
     line-height: 19px;
     color: var(--main_text);
     margin-left: 15px;
     white-space: nowrap;
 }
 
 .sepet-urun-sil {
     margin-left: 10px;
     color: var(--subtext);
     background: none;
     border: none;
     cursor: pointer;
     font-size: 16px;
     line-height: 19px;
     display: flex;
     align-items: center;
 }
 
 .sepet-bos {
     padding: 40px 20px;
     text-align: center;
 }
 
 .sepet-bos-ikon {
     font-size: 48px;
     color: var(--subtext);
     margin-bottom: 15px;
 }
 
 .sepet-bos-mesaj {
     font-size: 16px;
     font-weight: 600;
     margin-bottom: 6px;
     color: var(--main_text);
 }
 
 .sepet-bos-alt-mesaj {
     font-size: 14px;
     color: var(--subtext);
     margin-bottom: 20px;
 }
 
 .sepet-buton {
     display: inline-flex;
     align-items: center;
     padding: 10px 16px;
     background-color: var(--mainbg);
     color: var(--textwhite) !important;
     border: none;
     border-radius: 4px;
     font-size: 14px;
     font-weight: 500;
     text-decoration: none;
     cursor: pointer;
     transition: all 0.3s ease-in-out;
 }
 
 .sepet-buton.back {
     color: var(--main_text) !important;
 }
 
 .sepet-buton:hover {
     background-color: var(--mainbg);
     color: var(--textwhite) !important;
 }
 
 .sepet-buton i {
     margin-right: 6px;
     font-size: 20px;
 }
 
 .sepet-buton-outline {
     background-color: transparent;
     color: var(--main_text);
     border: 1px solid var(--line);
 }
 
 .sepet-buton-outline:hover {
     color: var(--main_text);
 }
 
 .sepet-butonlar {
     padding: 16px 20px;
     border-top: 1px solid var(--line);
 }
 
 .sepet-ozet-liste {
     padding: 16px 20px;
 }
 
 .sepet-ozet-item {
     display: flex;
     justify-content: space-between;
     margin-bottom: 12px;
 }
 
 .sepet-ozet-label {
     color: var(--subtext);
     font-size: 14px;
     display: flex;
     align-items: center;
 }
 
 .sepet-ozet-label i {
     margin-right: 6px;
     font-size: 18px;
     text-align: center;
 }
 
 .sepet-ozet-value {
     font-weight: 500;
     font-size: 14px;
     color: var(--subtext);
 }
 
 .sepet-ozet-indirim {
     color: var(--subtext);
 }
 
 .sepet-ozet-toplam {
     margin-top: 15px;
     padding-top: 15px;
     border-top: 1px solid var(--line);
     display: flex;
     justify-content: space-between;
     align-items: center;
 }
 
 .sepet-ozet-toplam-label {
     font-weight: 600;
     font-size: 15px;
     display: flex;
     align-items: center;
     color: var(--main_text);
 }
 
 .sepet-ozet-toplam-label i {
     margin-right: 6px;
     font-size: 18px;
     line-height: 20px;
 }
 
 .sepet-ozet-toplam-value {
     font-weight: 700;
     font-size: 18px;
     color: var(--mainbg);
 }
 
 .sepet-indirim {
     padding: 16px 20px;
     border-top: 1px solid var(--line);
 }
 
 .sepet-indirim-baslik {
     display: flex;
     align-items: center;
     font-weight: 600;
     font-size: 14px;
     color: var(--main_text);
     margin-bottom: 10px;
 }
 
 .sepet-indirim-baslik i {
     margin-right: 6px;
     font-size: 18px;
     line-height: 19px;
 }
 
 .sepet-indirim-form {
     display: flex;
 }
 
 .sepet-indirim-input {
     flex: 1;
     padding: 12px 12px;
     border: 1px solid var(--line);
     border-radius: 4px 0 0 4px;
     background: var(--whitebg);
     font-size: 14px;
 }
 
 .sepet-indirim-input:focus {
     outline: none;
     border-color: var(--mainbg);
 }
 
 .sepet-indirim-input::placeholder {
     color: var(--subtext);
     font-size: 14px;
 }
 
 .sepet-indirim-btn {
     padding: 8px 15px;
     background-color: var(--mainbg);
     color: var(--textwhite) !important;
     border: none;
     border-radius: 0 4px 4px 0;
     font-size: 14px;
     cursor: pointer;
 }
 
 .sepet-indirim-mesaj {
     margin-top: 8px;
     font-size: 14px;
     display: flex;
     align-items: center;
 }
 
 .sepet-indirim-mesaj i {
     margin-right: 4px;
     font-size: 18px;
 }
 
 .sepet-indirim-mesaj.error {
     color: var(--main_text);
 }
 
 .sepet-indirim-mesaj.success {
     color: var(--subtext);
 }
 
 .sepet-odeme {
     padding: 16px 20px;
     border-top: 1px solid var(--line);
 }
 
 .sepet-odeme-btn {
     width: 100%;
     justify-content: center;
     font-size: 15px;
     padding: 12px;
 }
 
 .sepet-odeme-btn:disabled {
     background-color: var(--mainbg);
     cursor: not-allowed;
 }
 
 .sepet-guvenli {
     display: flex;
     align-items: center;
     justify-content: center;
     margin-top: 15px;
     color: #27ae60;
     font-size: 15px;
     background: rgb(39 174 96 / 10%);
     padding: 10px;
     border-radius: 4px;
     border: 1px solid #27ae60;
 }
 
 .sepet-guvenli i {
     margin-right: 6px;
     font-size: 18px;
     color: var(--success);
 }
 
 .uyari {
     background-color: #fff3cd;
     border: 1px solid #ffeeba;
     border-radius: 4px;
     padding: 12px 16px;
     margin-bottom: 20px;
     color: #856404;
     font-size: 14px;
     display: flex;
     align-items: center;
 }
 
 .uyari i {
     margin-right: 10px;
     font-size: 16px;
 }
 
 .uyari a {
     color: var(--primary-dark);
     font-weight: 600;
     text-decoration: none;
 }
 
 .sepet-indirim-mesaj {
     margin-top: 30px;
 }
 
 #indirimdurum {
     margin-top: 0 !important;
 }
 
 @media (max-width:1200px) {
     .sidebar {
         left: -150px !important;
     }
     .sidebar.active {
         left: 0 !important;
     }
 }
 
 @media (max-width: 768px) {
     .sepet-icerik {
         grid-template-columns: 1fr;
     }
     .sepet-butonlar {
         display: flex;
         flex-direction: column;
         gap: 10px;
     }
     .sepet-buton {
         width: 100%;
         justify-content: center;
     }
     .mobilenone {
         display: none !important;
     }
     .shop-cart-wrapper {
         display: flex;
         justify-content: center;
         align-items: center;
     }
     .shop-cart-btn {
         border: none;
     }
     .shop-cart-btn::before,
     .shop-cart-btn::after {
         content: none !important;
         border: none;
     }
     .shop-cart-dropdown {
         top: unset;
         bottom: calc(100% + 8px);
         text-align: left;
         width: 350px;
         right: -65px;
     }
     .shop-remove-item {
         right: 0 !important;
     }
     .shop-remove-item i {
         font-size: 18px !important;
     }
 }
 
 @media (max-width:576px) {
     .sepet-sayfa .content {
         margin-top: -20px;
     }
     .odeme-secenekleri {
         grid-template-columns: repeat(1, 1fr) !important;
     }
     .shop-cart-actions {
         flex-direction: column;
     }
     .shop-item-image {
         width: 30px;
         height: 30px;
         min-width: 30px;
     }
     .shop-item-image i {
         font-size: 18px !important;
     }
 }
 
 @media (max-width:360px) {
     .sepet-indirim-input {
         width: 100%;
     }
     .shop-cart-dropdown {
         width: 320px;
     }
     .sepet-urun {
         padding: 13px 16px;
     }
 }
 
 .odeme-secenekleri {
     margin-top: 10px;
     grid-template-columns: repeat(2, 1fr);
     display: grid;
     gap: 10px;
 }
 
 .odeme-secim {
     display: none;
 }
 
 .odeme-option {
     display: flex;
     align-items: center;
     border: 1px solid var(--line);
     border-radius: 4px;
     padding: 12px 15px;
     cursor: pointer;
     transition: all 0.2s ease;
     position: relative;
     z-index: 0;
 }
 
 .odeme-option::after {
     content: "";
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     border-radius: 4px;
     z-index: -1;
     background: var(--mainbg);
     opacity: 0;
     transition: all 0.3s ease-in-out;
 }
 
 .odeme-option:hover {
     border-color: var(--mainbg);
 }
 
 .odeme-option:hover::after {
     opacity: .1;
 }
 
 .odeme-secim:checked+.odeme-option::after {
     border-color: var(--mainbg);
     opacity: .1;
 }
 
 .odeme-secim:checked+.odeme-option {
     border-color: var(--mainbg);
 }
 
 .odeme-ikon {
     color: var(--mainbg);
     font-size: 18px;
     margin-right: 12px;
 }
 
 .odeme-detay {
     flex: 1;
 }
 
 .odeme-ad {
     font-size: 14px;
     font-weight: 500;
     color: var(--main_text);
 }
 
 .odeme-komisyon {
     font-size: 12px;
     line-height: 16ox;
     color: var(--subtext);
     margin-top: 5px;
 }
 
 .sepet-form {
     padding: 20px;
 }
 
 .sepet-form hr {
     margin-right: -20px;
     margin-left: -20px;
     background: var(--line);
     opacity: 1;
 }
 
 .sepet-form .form-label {
     display: block;
     font-size: 14px;
     font-weight: 500;
     margin-bottom: 8px;
     color: var(--main_text);
 }
 
 .sepet-form .form-label.tit {
     font-weight: 600;
     font-size: 15px;
     line-height: 19px;
     color: var(--main_text);
 }
 
 .sepet-form small {
     color: var(--subtext);
     font-size: 14px;
     display: flex;
     align-items: center;
     margin-bottom: 15px;
     display: block;
 }
 
 .sepet-form .form-control {
     width: 100%;
     padding: 12.5px 12px;
     font-size: 14px;
     color: var(--main_text);
     border: 1px solid var(--line);
     border-radius: 4px;
     transition: border-color 0.2s ease;
     background: var(--whitebg);
 }
 
 .sepet-form .form-control::placeholder {
     color: var(--subtext);
 }
 
 .sepet-form .form-control:focus {
     outline: none;
     border-color: var(--mainbg);
 }
 
 .sepet-form .form-group {
     margin-bottom: 20px;
 }
 
 .sepet-form .form-group:last-child {
     margin-bottom: 0;
 }
 
 #indirimdurum .alert {
     padding: 12px 18px;
     margin-top: 15px;
     border-radius: 4px;
     font-size: 14px;
     font-weight: 500;
     display: flex;
     align-items: center;
     line-height: 1.5;
     border-width: 1px;
     border-style: solid;
     margin-bottom: 0;
 }
 
 #indirimdurum .alert.alert-danger {
     background-color: rgba(239, 68, 68, 0.08);
     border-color: rgba(239, 68, 68, 0.3);
     color: #cb3727;
 }
 
 #indirimdurum .alert.alert-success {
     background-color: rgba(39, 174, 96, 0.08);
     border-color: rgba(39, 174, 96, 0.3);
     color: var(--success, #27ae60);
 }