html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
}

@media (max-width: 576px) {
    html, body {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    .container, .header-banner, .footer, .header-features {
        max-width: 100vw !important;
        overflow-x: hidden !important;
        box-sizing: border-box;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .footer .row.g-4 {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        margin: 0 !important;
        padding: 0 8px !important;
    }
    .footer .row.g-4 > .col-12,
    .footer .row.g-4 > .col-12.col-md-6 {
        flex: 0 0 calc(50% - 4px) !important;
        max-width: calc(50% - 4px) !important;
        min-width: calc(50% - 4px) !important;
        width: calc(50% - 4px) !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    .footer .feature-card {
        width: 100% !important;
        margin: 0 !important;
        padding: 8px !important;
        height: auto !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 4px !important;
    }
    .footer .feature-icon {
        flex-shrink: 0 !important;
        margin-bottom: 4px !important;
        width: 32px !important;
        height: 32px !important;
        line-height: 32px !important;
    }
    .footer .feature-icon i {
        font-size: 16px !important;
    }
    .footer .feature-card h3 {
        margin: 0 !important;
        font-size: 12px !important;
        line-height: 1.2 !important;
    }
    .footer .feature-card p {
        font-size: 11px !important;
        margin: 0 !important;
        line-height: 1.2 !important;
    }
}

body {
    font-family: 'Oswald', sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #18181a 0%, #23232b 100%);
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
}
.clear-fix {
    clear: both;
}

.border {
    border: 1px solid #cccccc;
}

.border-bottom {
    border-bottom: 1px solid #cccccc;
}

.border-left {
    border-left: 1px solid #cccccc;
}

.border-right {
    border-right: 1px solid #cccccc;
}

.border-right {
    border-right: 1px solid #cccccc;
}

.radius {
    border-radius: 10px
}

.bg-info {
    background-color: #17a2b8 !important;
}

.bg-primary {
    background-color: #007bff !important;
}

.bg-secondary {
    background-color: #6c757d !important;
}

.bg-success {
    background-color: #28a745 !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

.bg-light { /* background-color: #f8f9fa !important; */
}
.d-inline-block {
    display: inline-block;
}
.m-0 {
    margin: 0;
}

.mb-2, .my-2 {
    margin-bottom: .5rem !important;
}

.mt-2, .my-2 {
    margin-top: .5rem !important;
}
.mb-4, .my-4 {
    margin-bottom: 2.5rem !important;
}

.mt-4, .my-4 {
    margin-top: 2.5rem !important;
}
.p-0{
    padding: 0;
}
.pb-2, .py-2 {
    padding-bottom: .5rem !important;
}

.pt-2, .py-2 {
    padding-top: .5rem !important;
}

.p-2 {
    padding: .25rem !important;
}
.pb-1, .py-1 {
    padding-bottom: .25rem !important;
}

.pt-1, .py-1 {
    padding-top: .25rem !important;
}

.p-1 {
    padding: .25rem !important;
}

.w-100 {
    width: 100%;
}

.font-bold {
    font-weight: bold;
}

.w-75 {
    width: 75%;
}

.w-50 {
    width: 50%;
}

.text-decoration-line {
    text-decoration: line-through;
}

.w-25 {
    width: 25%;
}

.text-center {
    text-align: center;
}
.font-light{
    font-weight:300
}
.text-muted {color: #8a8a8a;}
.img-fluid {
    max-width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.product-header {
    width: 100%;
    padding: 20px 0;
    border-radius: 14px;
    box-shadow: 0px 4px 10px -4px #ccc;
    font-size: 1.6rem;
    text-transform: uppercase;
    /* font-weight: bold; */
    background: ghostwhite;
    text-align: center;
    line-height: 1.7;
}

.product-container {
    width: 100%;
}

.product-item {
    background: #23232b;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    padding: 24px 16px;
    margin-bottom: 24px;
    transition: box-shadow 0.3s, border 0.3s;
    width: 100%;
    display: block;
}
.product-item:hover {
    box-shadow: 0 8px 32px rgba(255,64,129,0.15);
    border: 1px solid #ff4081;
}
.product-image {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    box-sizing: border-box;
}
.product-content {
    box-sizing: border-box;
    padding: 2rem 1rem;
    background-color: #23232b;
    background-image: none;
    color: #fff;
    width: 100%;
}
.product-content h1, .product-content h1 font {
    color: #fff !important;
    font-size: 20px;
    font-weight: 600;
    margin: 0.2rem 0 1rem 0;
    text-transform: capitalize;
}
.product-content p, .product-size span, .product-price span {
    color: #b3b3b3 !important;
}
.order-button {
    background: #ff4081;
    color: #fff;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 0;
    margin-top: 12px;
    transition: background 0.2s;
    display: block;
    text-transform: uppercase;
    box-shadow: 0px 0px 10px -4px #333;
    text-align: center;
}
.order-button:hover {
    background: #e6006e;
    color: #fff;
}

.footer {
    background: #1a1a1a;
    padding: 30px 0 0;
    margin-top: 30px;
    color: #dcdcdc;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.footer .row {
    margin-bottom: 20px;
}

.footer-list-top {
    background: linear-gradient(to right, #1a1a1a, #2d2d2d);
    padding: 20px 0;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 12px;
    background: #2d2d2d;
    border: 1px solid #404040;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    height: auto;
    min-height: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 2px;
}

.footer-btn i {
    font-size: 14px;
    margin-right: 8px;
    color: #ff4081;
    flex-shrink: 0;
}

.footer-btn span {
    text-align: left;
    line-height: 1.2;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    border-color: #ff4081;
    color: #ff4081;
    text-decoration: none;
    background: #333;
}

.footer-list-top a:hover {
    color: #ff4081 !important;
}

.footer-bottom-section {
    background: linear-gradient(to right, #000, #1a1a1a);
    color: #fff;
    padding: 15px 0;
    margin: 0;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.footer-bottom-section .footer-list-header {
    color: #b3b3b3;
    font-size: 14px;
}

.footer-bottom-section .footer-bottom-wrapper {
    color: #fff;
    font-size: 15px;
    font-family: 'Oswald', sans-serif;
}

.footer-bottom-section .footer-list-header i {
    transition: all 0.3s ease;
    color: #666;
}

.footer-bottom-section .footer-list-header:hover i {
    color: #ff4081;
    transform: scale(1.1);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.footer-list-header a:hover {
    animation: pulse 0.5s ease-in-out;
}

.feature-card {
    background: #2d2d2d;
    border: 1px solid #404040;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-color: #ff4081;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff4081, #ff6e9f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon i {
    font-size: 24px;
    color: #fff;
}

.feature-card h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

.feature-card p {
    color: #b3b3b3;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

.ssl-image {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .footer-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    .footer-btn i {
        font-size: 13px;
        margin-right: 6px;
    }
    .footer-btn span {
        font-size: 12px;
    }
    .footer-list-header {
        font-size: 16px !important;
    }
    .footer-bottom-section {
        padding: 12px 0;
    }
    .feature-card {
        padding: 15px;
    }
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    .feature-icon i {
        font-size: 20px;
    }
    .feature-card h3 {
        font-size: 15px;
    }
    .feature-card p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .footer-btn {
        padding: 5px 8px;
        font-size: 11px;
    }
    .footer-btn i {
        font-size: 12px;
        margin-right: 5px;
    }
    .footer-btn span {
        font-size: 11px;
    }
    .footer-list-header {
        font-size: 14px !important;
    }
    .footer-bottom-wrapper {
        font-size: 13px !important;
    }
    .feature-card {
        padding: 12px;
    }
    .feature-icon {
        width: 35px;
        height: 35px;
    }
    .feature-icon i {
        font-size: 18px;
    }
    .feature-card h3 {
        font-size: 14px;
    }
    .feature-card p {
        font-size: 12px;
    }
}

.footer-container { /* border-bottom: 2px solid #444; */
}

.footer-col {
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.footer-col h1 {
    font-weight: 400;
    font-size: 2em;
    text-transform: uppercase;
}

.footer-row {
    font-size: 1.2em;
    color: #9e9e9e;
}

.w-100 {
    width: 100%;
}

.w-3 {
    width: 60px;
}

.ssl {
    width: 80%;
    background: white;
    margin: 10px auto 10px auto;
    display: grid;
    border-bottom: 1px solid;
}

.product-description {
    background: ghostwhite;
    padding: 1rem;
    border-radius: 10px;
    margin: 20px 0;
}

.product-description p {
    padding: 0 7rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.product-description-table {
    width: 70%;
    margin: 40px auto;
}

.input { /* height: 45px; *//* font-size: 22px; *//* box-shadow: none; *//* background: #fff; *//* width: calc(100% - 8px); */
}

.form-control {
    height: 38px;
    width: 100%;
    border: 1px solid #ccc;
    padding: 2px 10px;
    margin-bottom: 5px;
    border-radius: 6px;
}

.form-group {
}

.newSiparis { /* position: relative; *//* padding: 0 80px; *//* font-size: 18px; */
}

.newSiparis form { /* border: 1px solid #0b5ed8; *//* width: 100%; *//* padding: 5px; */
}

.newSiparis form .row {
    padding: 2px;
}

.newSiparis .form-title {
    position: relative;
    height: 58px;
    line-height: 58px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 0 15px;
    margin: 10px 0; /* background: linear-gradient(-45deg, #f51e55, #031b4e, #9800ff, #000000); */
    background-size: 400% 400%;
    -webkit-animation: Gradient 3s cubic-bezier(0.50, 0.50, 0.50, 0.50) infinite;
    -moz-animation: Gradient 3s cubic-bezier(0.50, 0.50, 0.50, 0.50) infinite;
    animation: Gradient 3s cubic-bezier(0.50, 0.50, 0.50, 0.50) infinite;
}

.newSiparis .form-title span {
    display: inline-block;
    margin-right: 10px;
    border: 2px solid #fff;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    width: 33px;
    height: 33px;
    line-height: 30px;
    text-align: center
}

.newSiparis select {
    width: calc(100% - 8px);
    height: 50px;
    font-size: 16px;
    box-shadow: none;
    background: #fff;
    padding: 0;
}

.newSiparis input[type=text] {
    height: 45px;
    font-size: 22px;
    box-shadow: none;
    background: #fff;
    width: calc(100% - 30px);
}

.newSiparis textarea {
    height: 100px;
    font-size: 22px;
    box-shadow: none;
    background: #fff;
    width: calc(100% - 30px);
}

.newSiparis input[type=checkbox] {
    position: relative !important;
    border-style: solid;
    border-width: 1px;
    background: #fff;
    color: #555;
    clear: none;
    cursor: pointer;
    display: inline-block;
    line-height: 0;
    height: 20px;
    margin: -4px 4px 0 0;
    outline: 0;
    padding: 2px;
    text-align: center;
    vertical-align: middle;
    width: 20px;
    min-width: 20px;
    -webkit-appearance: none;
    -webkit-transition: .05s border-color ease-in-out;
    transition: .05s border-color ease-in-out;
    box-shadow: none
}

.newSiparis input[type=checkbox] {
    color: #717a8f;
    border-color: #dadada;
    background-color: #fff
}

.newSiparis input[type=checkbox]:checked:before {
    display: inline-block;
    font-family: FontAwesome;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '\f00c';
    margin: 0;
    font-size: 11px;
    color: #f27a1a
}

.newSiparis input[type=radio] {
    position: relative !important;
    border-style: solid;
    border-width: 1px;
    background: #fff;
    color: #555;
    clear: none;
    cursor: pointer;
    display: inline-block;
    line-height: 16px;
    height: 26px;
    margin: 0 4px 0 0;
    outline: 0;
    margin-bottom: 15px;
    padding: 4px;
    text-align: center;
    vertical-align: middle;
    width: 26px;
    min-width: 26px;
    -webkit-appearance: none;
    -webkit-transition: .05s border-color ease-in-out;
    transition: .05s border-color ease-in-out;
    box-shadow: none;
    border-radius: 50%;
}

.newSiparis input[type=radio] {
    color: #717a8f;
    border-color: #dadada;
    background-color: #fff
}

.newSiparis input[type=radio]:checked:before {
    display: inline-block;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '\f00c';
    margin: 0;
    font-size: 14px;
    color: #f27a1a
}

#sepeteEkle {
    width: 100%;
    padding: 15px;
    display: block;
    border-radius: 10px;
    border: none;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}

.button {
    text-decoration-line: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 9px;
    display: inline-block;
}

.d-none {
    display: none;
}

.onaylandi img {
    width: 480px;
    margin: 0 auto;
    display: block;
}

.analiz {
    width: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: rgb(5,12,151);
    background: radial-gradient(circle, rgba(243,210,227) 0%, rgba(225,0,106) 100%);
}

/* offer */
.offer_section {
    padding: 0;
}

.offer_section .timer_block {
    margin: 0 0 10px;
    padding: 20px 0;
    text-transform: uppercase;
    text-align: center;
    color: #FFF;
    font-family: 'Dosis', sans-serif;
    font-size: 32px;
}

.offer_section.order .timer_block {
    margin: 0 0 25px;
}

.offer_section .timer_block p {
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 16px;
}

.offer_section .timer_block .timer {
    margin: 0 auto;
    width: 100%;
    display: inline-block;
    text-align: center;
}

.offer_section .timer_block .timer_item {width: 90px;display: inline-block;margin: 0 10px;}

.offer_section .timer_block .timer_item:last-child {
    margin: 0;
}

.offer_section .timer_block .count {
    margin: 0 0 10px;

}

.offer_section .timer_block .count span {
    display: inline-block;
    margin: 0 8px 0 0;
    padding: 10px;
    background: #fff;
    font-weight: 700;
    font-size: 36px;

    color: #000;
    font-family: 'Dosis', sans-serif;
}

.offer_section .timer_block .count span:last-child {
    margin: 0;
}

.offer_section .timer_block .text {
    font-size: 18px;
    line-height: 13px;
    margin-top: 10px;
    font-family: 'Dosis', sans-serif;
    color: #FFF;
}

.offer_section .products_count {
    padding: 0px;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    text-align: center;
}

.offer_section .products_count b {
    margin: 0 4px;
    padding: 3px 6px;
    font-size: 18px;
    color: #fff;
}

.fixed-tabs-Whats {position: fixed;left: 30px;bottom: 20px;z-index: 100;}
.aba-whatsphone {background: #25d366;height: 60px;width: 70px;transition: 0.7s ease;width: 280px;border-radius: 50px;}
.aba-whatsphone:hover {}
.aba-whatsphone-icone {background: url(../images/whatsapp.html) no-repeat; /* whatsapp icon */width: 280px;background-size: 70px;background-position-y: -7px;padding: 0px 7px 7px 7px;height: 100%;filter: brightness(0) invert(1);}
.aba-whatsphone-icone a {color: #ffffff;font-size: 14px;line-height: 1.1;margin-left: 46px;text-decoration: none;height: 60px;font-family: sans-serif;}
.aba-whatsphone-icone a strong {display: block;font-size: 15px;margin-left: 41px;margin-top: -8px !important;text-transform: uppercase;text-align: center;max-width: 188px;margin: 0 auto;margin-right: 20px;margin-left: auto;}

.fixed-tabs-Tephone {position: fixed;right: 30px;bottom: 20px;z-index: 100;}
.aba-phone {background: #ff1238;height: 60px;width: 70px;transition: 0.7s ease;width: 280px;border-radius: 50px;}
.aba-phone:hover {}
.aba-phone-icone  {background: url(../images/telephone.png) no-repeat; /* telephone icon */width: 280px;background-size: 70px;background-position-y: -7px;padding: 0px 7px 7px 7px;height: 100%;filter: brightness(0) invert(1);}
.aba-phone-icone  a {color: #ffffff;font-size: 14px;line-height: 1.1;margin-left: 46px;text-decoration: none;height: 60px;font-family: sans-serif;}
.aba-phone-icone  a strong {display: block;font-size: 15px;margin-left: 41px;margin-top: -8px !important;text-transform: uppercase;text-align: center;max-width: 188px;margin: 0 auto;margin-right: 20px;margin-left: auto;}

@keyframes ripple {
    0% {box-shadow: 0 0 0 0 #ff123836, 0 0 0 5px #ff123845, 0 0 0 10px #ff123859;}
    100% {box-shadow: 0 0 0 5px #ff123859, 0 0 0 10px #ff12387a, 0 0 0 15px rgb(82, 93, 143,0.1);}
}

@keyframes ripple-w {
    0% {box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.1), 0 0 0 5px rgba(37, 211, 102, 0.1), 0 0 0 10px rgba(37, 211, 102, 0.1);}
    100% {box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.1), 0 0 0 10px rgba(37, 211, 102, 0.1), 0 0 0 15px rgba(37, 211, 102, 0.1);}
}

/* ===================================== Responsive ==================================*/
@media screen and (max-width: 1100px) {
    .container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .banner img {
        /* width: 100%; */
    }
    .mb-md-4, .my-md-4 {
        margin-bottom: 2.5rem !important;
    }

    .mt-md-4, .my-md-4 {
        margin-top: 2.5rem !important;
    }
}

@media screen and (max-width: 1000px) {
    .container {
        width: 100%;
    }

    .banner img {
        width: 100%;
    }

}

@media screen and (max-width: 768px) {
    .footer-product .thumbs {

    }

}

@media screen and (max-width: 665px) {
    .aba-whatsphone-icone a strong{display:none;}
    .aba-whatsphone-icone{width: 100%;background-size: 44%;background-repeat: no-repeat;background-position: center center;padding: 0;}
    .aba-whatsphone{width: 50px;-webkit-animation: ripple-w 1s linear infinite;animation: ripple-w 1s linear infinite;height: 50px;}
    .aba-whatsphone-icone a{width: 100%;margin: 0;}

    .aba-phone-icone a strong{display:none;}
    .aba-phone-icone{width: 100%;background-size: 44%;background-repeat: no-repeat;background-position: center center;padding: 0;}
    .aba-phone{width: 50px;-webkit-animation: ripple 1s linear infinite;animation: ripple 1s linear infinite;height: 50px;}
    .aba-phone-icone a{width: 100%;margin: 0;}
    .newSiparis .thumbs {
        margin: 5px;
        float: left;
        overflow: hidden;
        width: calc((100% / 2) - 10px);
        position: relative;
        text-align: center;
        display: block;
    }

    .footer-product .thumbs {
        margin: 2px;
        width: calc((100% / 2) - 4px);
    }

    .footer-col {
        width: 100%;
        padding: 0 15px;
        margin: 0;
        box-sizing: border-box;
    }

    .footer-product.w-100.d-inline-block .thumbs:nth-child(3) {
        display: none;
    }

    .w-sm-98 {
        width: 98% !important;
    }
    .w-sm-100 {
        width: 100% !important;
    }

    .d-sm-none {
        display: none;
    }

    .d-sm-block {
        display: block;
    }

    .product-header {
        font-size: 1.5rem;
    }

    .product-item {
        padding: 16px 8px;
        margin-bottom: 16px;
    }

    .product-content h1, .product-content h1 font {
        font-size: 17px;
    }

    .order-button {
        font-size: 15px;
        padding: 9px 0;
    }

    .onaylandi img {
        width: 100%;
    }

    .product-description p {
        padding: 1rem;
        font-size: 1.2rem;
        line-height: 1;
    }
}

@media screen and (max-width: 425px) {
    .newSiparis .thumbs {
        margin: 5px;
        float: left;
        overflow: hidden;
        width: calc((100% / 2) - 10px);
        position: relative;
        text-align: center;
        display: block;
    }

    .footer-product .thumbs {
        margin: 2px;
        width: calc((100% / 2) - 4px);
    }

    .footer-col {
        width: 100%;
        padding: 0 10px;
        margin: 0;
        box-sizing: border-box;
    }

    .footer-product.w-100.d-inline-block .thumbs:nth-child(3) {
        display: none;
    }

    .w-sm-98 {
        width: 98% !important;
        margin: 0;
    }
    .mb-md-4, .my-md-4 {
        margin-bottom: 0.5rem !important;
    }

    .mt-md-4, .my-md-4 {
        margin-top: 0.5rem !important;
    }
}

@media screen and (max-width: 375px) {
    .footer-col h1 {
        font-size: 1.4em;
    }
}

@media screen and (max-width: 320px) {
    .footer-product .thumbs {
        height: 105px;
    }
}

.product-content.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.product-sizes {
    margin: 10px 0;
}
.size-badge {
    display: inline-block;
    background: #ff4081;
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-weight: 600;
    margin: 0 3px;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(255,64,129,0.08);
}
.product-details div {
    color: #b3b3b3;
    font-size: 14px;
    margin-bottom: 2px;
    text-align: center;
}
.product-price-box {
    margin: 20px 0;
    background: linear-gradient(145deg, #18181a, #23232b);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,64,129,0.15);
}

.product-price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,64,129,0.08), rgba(255,110,159,0.08));
    z-index: 1;
}

.product-price-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-price {
    background: linear-gradient(45deg, #ff4081, #ff6e9f);
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    border-radius: 16px;
    padding: 18px 35px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 20px rgba(255,64,129,0.25);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    position: relative;
}

.product-price::after {
    content: '3 ADET';
    position: absolute;
    top: -12px;
    right: -12px;
    background: #fff;
    color: #ff4081;
    font-size: 18px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 14px;
    border: 2px solid #ff4081;
    transform: rotate(15deg);
    box-shadow: 0 3px 10px rgba(255,64,129,0.2);
    letter-spacing: 0.5px;
}

.product-price i {
    font-size: 28px;
}

.product-quantity-badge {
    background: rgba(255,64,129,0.1);
    color: #ff4081;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255,64,129,0.2);
}

.product-quantity-badge i {
    color: #ff4081;
    font-size: 18px;
}

.product-save-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff4081;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    transform: rotate(15deg);
    box-shadow: 0 2px 8px rgba(255,64,129,0.3);
    z-index: 3;
}

@media (max-width: 768px) {
    .product-price-box {
        padding: 15px;
        margin: 15px 0;
        border-radius: 16px;
    }
    
    .product-price {
        font-size: 26px;
        padding: 15px 30px;
    }
    
    .product-price::after {
        font-size: 16px;
        padding: 5px 10px;
        top: -10px;
        right: -10px;
    }
    
    .product-price i {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .product-price-box {
        padding: 12px;
        margin: 12px 0;
        border-radius: 14px;
    }
    
    .product-price {
        font-size: 22px;
        padding: 12px 25px;
    }
    
    .product-price::after {
        font-size: 14px;
        padding: 4px 8px;
        top: -8px;
        right: -8px;
    }
    
    .product-price i {
        font-size: 20px;
    }
}

.product-features {
    margin: 10px 0;
}
.feature-badge {
    display: inline-block;
    background: #23232b;
    color: #fff;
    border-radius: 20px;
    padding: 6px 16px;
    margin: 0 4px 4px 0;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #ff4081;
}
.feature-badge i {
    color: #ff4081;
    margin-right: 5px;
}

.header-banner {
    background: #1a1a1a;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    padding: 32px 0 24px 0;
    margin-bottom: 32px;
}
.header-title h1 {
    color: #fff;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.header-title .header-subtitle {
    color: #ff4081;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 4px;
}
.header-title .header-desc {
    color: #b3b3b3;
    font-size: 1rem;
    font-weight: 400;
}
.header-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin: 24px 0 18px 0;
}
.header-feature-box {
    background: #23232b;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(255,64,129,0.08);
    padding: 18px 20px 12px 20px;
    min-width: 170px;
    max-width: 210px;
    text-align: center;
    margin: 0 6px 8px 6px;
}
.header-feature-icon {
    display: inline-block;
    background: linear-gradient(45deg, #ff4081, #ff6e9f);
    color: #fff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-size: 20px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(255,64,129,0.10);
}
.header-feature-icon i {
    color: #fff;
    font-size: 20px;
    vertical-align: middle;
}
.header-feature-title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.header-feature-desc {
    color: #b3b3b3;
    font-size: 0.95rem;
    font-weight: 400;
}
.header-timer-block {
    margin-top: 18px;
    text-align: center;
}
.header-timer-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.header-timer-block .timer {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 18px;
    margin-top: 10px;
}
.header-timer-block .timer_item {
    background: #23232b;
    border-radius: 10px;
    padding: 12px 18px 8px 18px;
    min-width: 70px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(255,64,129,0.08);
}
.header-timer-block .count span {
    display: inline-block;
    background: #fff;
    color: #18181a;
    font-weight: 700;
    font-size: 28px;
    border-radius: 6px;
    width: 28px;
    height: 36px;
    line-height: 36px;
    margin: 0 2px;
}
.header-timer-block .text {
    color: #b3b3b3;
    font-size: 13px;
    margin-top: 4px;
}
@media (max-width: 768px) {
    .header-banner {
        padding: 18px 0 12px 0;
        margin-bottom: 18px;
    }
    .header-title h1 {
        font-size: 1.3rem;
    }
    .header-feature-box {
        min-width: 120px;
        max-width: 160px;
        padding: 10px 8px 8px 8px;
    }
    .header-feature-title {
        font-size: 0.95rem;
    }
    .header-feature-desc {
        font-size: 0.85rem;
    }
}
@media (max-width: 576px) {
    .header-banner {
        padding: 10px 0 6px 0;
        margin-bottom: 10px;
        border-radius: 0 0 14px 14px;
    }
    .header-title h1 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    .header-title .header-subtitle {
        font-size: 1rem;
    }
    .header-title .header-desc {
        font-size: 0.9rem;
    }
    .header-features {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 4px !important;
        margin: 8px 0 4px 0 !important;
        padding: 0 1px !important;
    }
    .header-feature-box {
        flex: 0 0 49% !important;
        max-width: 49% !important;
        min-width: 49% !important;
        width: 49% !important;
        margin: 0 0 6px 0 !important;
        box-sizing: border-box !important;
        padding: 8px 4px 6px 4px !important;
    }
    .header-feature-box:nth-child(5) {
        flex-basis: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .header-feature-title {
        font-size: 0.85rem;
    }
    .header-feature-desc {
        font-size: 0.75rem;
    }
    .header-feature-icon {
        width: 28px;
        height: 28px;
        font-size: 15px;
        line-height: 28px;
        margin-bottom: 4px;
    }
    .header-timer-block .timer {
        gap: 4px;
    }
    .header-timer-block .timer_item {
        min-width: 36px;
        padding: 4px 2px 2px 2px;
    }
    .header-timer-block .count span {
        font-size: 13px;
        width: 13px;
        height: 18px;
        line-height: 18px;
    }
    .product-item {
        padding: 6px 2px !important;
        margin-bottom: 8px !important;
    }
    .product-content {
        padding: 1rem 0.5rem !important;
    }
}

body, .container, .footer, .footer-list-top, .footer-bottom-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

@media (max-width: 576px) {
    .footer .row.g-4 {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .footer .row.g-4 > .col-12 {
        flex: 0 0 48%;
        max-width: 48%;
        min-width: 48%;
        width: 48%;
        margin: 0 1% 8px 1%;
        box-sizing: border-box;
    }
}

.product-video {
    width: 100%;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: #18181a;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.product-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

@media (max-width: 576px) {
    .product-video {
        margin: -6px -2px 8px -2px;
        border-radius: 12px;
    }
    .video-container {
        padding-top: 56.25%; /* 16:9 Aspect Ratio */
    }
    .product-video-player {
        border-radius: 12px;
    }
}

.product-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0;
    padding: 0 10px;
}

.size-info-card {
    background: linear-gradient(145deg, #23232b, #2a2a33);
    border: 1px solid rgba(255,64,129,0.1);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.size-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff4081, #ff6e9f);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.size-info-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,64,129,0.3);
    box-shadow: 0 8px 25px rgba(255,64,129,0.15);
}

.size-info-card:hover::before {
    opacity: 1;
}

.size-info-card .beden-range {
    color: #ff4081;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.size-info-card .beden-size {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.size-info-card .beden-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: rgba(255,64,129,0.1);
    font-size: 24px;
}

@media (max-width: 992px) {
    .product-details {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .product-details {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 5px;
    }
    
    .size-info-card {
        padding: 12px;
        border-radius: 12px;
    }
    
    .size-info-card .beden-range {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .size-info-card .beden-size {
        font-size: 16px;
    }
    
    .size-info-card .beden-icon {
        font-size: 20px;
        top: 8px;
        right: 8px;
    }
}

.product-video .order-button {
    margin: 12px 0;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,64,129,0.2);
    position: relative;
    overflow: hidden;
}

.product-video .order-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,64,129,0.3);
    background: linear-gradient(45deg, #ff6e9f, #ff4081) !important;
}

.product-video .order-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(255,64,129,0.2);
}

.product-video .order-button i {
    transition: transform 0.3s ease;
}

.product-video .order-button:hover i {
    transform: scale(1.1);
}

@media (max-width: 576px) {
    .product-video .order-button {
        padding: 12px 0;
        font-size: 14px;
        margin: 8px 0;
    }
}

/* order1.php footer alt menü - tam genişlik ve ortalama için kesin çözüm */
.footer-list-top .row.justify-content-center {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: stretch !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}
.footer-list-top .col-6,
.footer-list-top .col-md-4,
.footer-list-top .col-lg-2 {
    flex: 1 1 0 !important;
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
    margin: 0 0 8px 0 !important;
    box-sizing: border-box;
}
.footer-btn.w-100 {
    width: 100% !important;
    min-width: 0 !important;
    text-align: center !important;
    margin: 0 auto 8px auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) {
    .footer-list-top .col-6,
    .footer-list-top .col-md-4,
    .footer-list-top .col-lg-2 {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 0 6px 0 !important;
    }
}
@media (max-width: 576px) {
    .footer-list-top .col-6,
    .footer-list-top .col-md-4,
    .footer-list-top .col-lg-2 {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 0 4px 0 !important;
        padding: 0 !important;
    }
}
