/* === kaynak: layout.css 1516-1577, 2940-3432 - Z-2 sprint === */

   SECTION 35 — C7-6: MOBILE UX UPGRADE
   ═══════════════════════════════════════════════════════════════════ */

/* --- Bottom nav: theme color for center cart button --- */
.tilbehomeMobilMenu456-menu-center-wrapper {
  background: var(--th-color-primary);
  box-shadow: 0 -2px 16px rgba(255,96,0,.25);
}

/* --- Bottom nav: premium styling --- */
.tilbehomeMobilMenu456-container {
  box-shadow: 0 -2px 16px rgba(0,0,0,.08);
  border-top: 1px solid var(--th-color-border-light);
  border-left: none; border-right: none;
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px));
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.tilbehomeMobilMenu456-container.th-nav-hidden {
  transform: translateY(100%);
}

/* --- Active state on current page --- */
.tilbehomeMobilMenu456-menu-item.active i,
.tilbehomeMobilMenu456-menu-item.active span {
  color: var(--th-color-primary);
}

/* --- Mobile hamburger menu: smoother open --- */
.th-header__mobile-menu {
  /* structural */
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 100vh;
  background: var(--th-color-bg);
  z-index: var(--th-z-modal, 1200);
  transform: translateX(-100%);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  /* animation */
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}

/* --- Mobile product card: touch-friendly spacing --- */
@media (max-width: 768px) {
  .th-card .th-card__overlay { display: none; }
  .th-card .buttons-wrapper { display: block; }
  .th-card .buttons { margin-top: 8px; }
  .th-card .btn-cart {
    min-height: 44px; border-radius: var(--th-radius-lg); font-size: 13px; font-weight: 600;
  }
}

/* --- Mobile: drawer full width --- */
@media (max-width: 768px) {
  .th-cd { width: 100%; max-width: 100%; border-radius: 0; }
  .th-cart-drawer__product-img { width: 64px; height: 64px; }
}


/* === legacy.css'ten tasindi: 1G — th-mobile-menu__ === */
.th-mobile-menu__container {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: flex-start;
    background: rgba(0,0,0,.25);
    font-family: "Poppins",sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    user-select: none;
    overflow-y: auto;
    padding-top: 35px
}

.th-mobile-menu__container.active {
    display: flex
}

.th-mobile-menu__backdrop {
    position: fixed;
    inset: 0;
    background: 0 0;
    cursor: pointer;
    z-index: 10001
}

.th-mobile-menu__menu {
    position: relative;
    background: var(--th-color-bg);
    margin: 0 1px 15px;
    border-radius: var(--th-radius-xl);
    width: 100%;
    box-shadow: 0 15px 30px rgba(0,0,0,.12);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10002;
    outline: 0
}

.th-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 15px 5px 25px;
    user-select: none
}

.th-mobile-menu__close {
    font-size: 45px;
    background: 0 0;
    border: 0;
    cursor: pointer;
    color: var(--th-color-text-muted);
    transition: color .25s ease;
    font-weight: 700;
    padding: 0;
    width: 36px;
    height: 36px;
    text-align: center;
    border-radius: var(--th-radius-full);
    line-height: 36px
}

.th-mobile-menu__search {
    display: flex;
    padding: 20px 0 10px 20px;
    user-select: text
}

.th-mobile-menu__search input[type=search] {
    flex-grow: 1;
    font-size: 12px;
    padding: 20px;
    border: 1px solid var(--th-color-success);
    border-right: none;
    border-radius: 40px 0 0 40px;
    outline: 0;
    box-shadow: none;
    font-weight: 400;
    color: var(--th-color-text-secondary)
}

.th-mobile-menu__search input[type=search]::placeholder {
    color: var(--th-color-text-placeholder);
    font-style: italic
}

.th-mobile-menu__search input[type=search]:focus {
    border-color: var(--th-color-success);
    box-shadow: 0 0 6px rgba(54,178,87,.3)
}

.th-mobile-menu__logo img {
    height: 30px;
    width: auto;
    display: block;
    object-fit: contain
}

.th-mobile-menu__logo,.th-mobile-menu__search button {
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.th-mobile-menu__search button {
    width: 50px;
    background: var(--th-color-success);
    border: 0;
    border-radius: 0 40px 40px 0;
    color: var(--th-color-text-inverse);
    cursor: pointer;
    font-size: 18px;
    justify-content: center;
    transition: background .3s ease
}

.th-mobile-menu__search button:focus,.th-mobile-menu__search button:hover {
    background: var(--th-color-success-dark);
    outline: 0
}

.th-mobile-menu__list {
    list-style: none;
    margin: 15px 0 0;
    padding: 10px 1px 1px 20px;
    border-top: 1px solid var(--th-color-border-light)
}

.th-mobile-menu__list li+li {
    margin-top: 14px;
    border-top: 1px solid var(--th-color-border-light);
    padding-top: 14px
}

.th-mobile-menu__helpgrid a,.th-mobile-menu__list li a {
    display: flex;
    align-items: center;
    color: var(--th-color-text-secondary);
    font-weight: 400;
    font-size: 13px;
    text-decoration: none;
    user-select: none
}

.th-mobile-menu__list li a {
    transition: color .3s ease;
    border-radius: var(--th-radius-lg);
    position: relative;
    padding: 1px 24px 1px 1px
}

.th-mobile-menu__list li a::after {
    content: ">";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--th-color-text-secondary);
    font-weight: 400;
    font-size: 25px;
    pointer-events: none
}

.th-mobile-menu__list li a i {
    color: var(--th-color-success);
    font-size: 25px;
    margin-right: 14px;
    min-width: 24px;
    text-align: center;
    line-height: 1
}

.th-mobile-menu__list li a span {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.th-mobile-menu__divider {
    border: 0;
    height: 1px;
    background: var(--th-color-bg-subtle);
    margin: 25px 0
}

.th-mobile-menu__list-title {
    font-weight: 500;
    font-size: 16px;
    margin: 25px 10px 25px 20px;
    color: var(--th-neutral-500);
    user-select: none;
    font-family: "Poppins",sans-serif
}

.th-mobile-menu__helpgrid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px 12px;
    padding: 0 20px 25px;
    user-select: none
}

.th-mobile-menu__helpgrid a {
    border-radius: var(--th-radius-xl);
    padding: 8px 14px;
    transition: color .3s ease,background .3s ease
}

.th-mobile-menu__helpgrid a i {
    color: var(--th-color-success);
    margin-right: 12px;
    font-size: 22px;
    min-width: 20px;
    text-align: center
}

.th-mobile-menu__helpgrid a:focus,.th-mobile-menu__helpgrid a:hover {
    color: var(--th-color-success);
    background: rgba(54,178,87,.13);
    outline: 0
}

.th-mobile-menu__menu::-webkit-scrollbar {
    width: 8px
}

.th-mobile-menu__menu::-webkit-scrollbar-track {
    background: var(--th-color-bg-secondary);
    border-radius: var(--th-radius-xl)
}

.th-mobile-menu__menu::-webkit-scrollbar-thumb {
    background: var(--th-color-success);
    border-radius: var(--th-radius-xl)
}

@media (max-width: 400px) {
    .th-mobile-menu__menu {
        max-width: 95vw;
        margin: 30px 1px 10px
    }
}

@media (max-width: 768px) {
    

    

    
}

#product-comment-location {
    border: 0;
    background: transparent;
    color: var(--th-color-text);
    line-height: normal;
    display: flex;
    flex-direction: row;
    align-items: center
}

#product-comment-location span {
    border-right: 0 solid var(--th-neutral-400);
    padding-right: 0
}

#product-comment-location span:last-child {
    border: 0
}

@media (max-width: 768px) {
    

    .rating-average .mobil-combtn {
        display: flex
    }

    

    
}

.product-price-group {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box
}

.product-price-group .discount .rate {
        font-size: 16px;
    padding-bottom: 5px;
}

.product-price-group .prices .list-price {
    color: var(--th-color-text-placeholder);
    font-size: 17px;
    font-weight: 600;
    text-decoration: line-through;
    margin-top: -3px
}

.product-price-group .prices .sale-price {
    color: var(--th-neutral-600);
    font-size: 36px;
    font-weight: 700;
    margin-top: -9px;
    display: inline-block;
    transform: scaleX(0.95) scaleY(1.08);
    transform-origin: left center;
}

.product-price-group .discount {
    align-items: center;
    background: var(--th-red-400);
    color: var(--th-color-text-inverse);
    display: flex;
    flex-direction: column;
    font-size: 11px;
    font-weight: 700;
    height: 55px;
    justify-content: center;
    margin-right: 0;
    text-align: center;
    width: 60px;
    border-radius: var(--th-radius-md);
    line-height: 1;
    padding: 6px 6px;
}

.product-price-group .prices {
    padding: 0 10px 0 0
}

@media (max-width: 480px) {
    

    .product-price-group .discount {
        font-size: 11px;
        font-weight: 400;
        height: 55px;
        width: 50px
    }

    .product-price-group .prices .sale-price {
        font-size: 18px;
        font-weight: 500
    }

    .product-price-group {
        gap: 5px;
        padding: 10px 0 1px
    }

    

    

    
}

.product-price-group {
    color: var(--th-color-text-secondary);
    font-weight: 400;
    gap: 10px;
    padding: 15px 0 1px
}

@media (max-width: 768px) {
    .mobilsayac .pattern-group .p-g-mod {
        margin-bottom: 10px;
        margin-top: 1px
    }

    .product-price-group .discount .rate {
        font-size: 14px;
        font-weight: 500
    }

    .product-price-group .prices .list-price {
        color: var(--th-color-text-placeholder);
        font-size: 16px;
        font-weight: 500;
        margin-top: -1px
    }

    .product-price-group .prices .sale-price {
        font-size: 23px;
        font-weight: 700
    }

    

    

    

    

    .product-price-group .discount {
        font-size: 11px;
        font-weight: 400;
        height: 50px;
        width: 50px
    }

    .product-price-group .prices {
        padding: 1px 7px 1px 1px
    }

    .product-price-group {
        gap: 5px;
        padding: 10px 0 1px
    }
}

@media (max-width: 991px) {
    .categories .mms-12345 a-67890:last-child .items-11223 img-33445,.categories .mms-12345 a:last-child .items-11223 img {
        width: 30px
    }

    

    

    .categories .mms-12345 a .items-11223,.categories .mms-12345 a-67890 .items-11223 {
        display: flex;
        padding: 10px 0;
        align-items: center;
        justify-content: center;
        gap: 10px;
        line-height: 18px
    }

    .categories .mms a,.categories .mms-12345 a,.categories .mms-12345 a-67890 {
        width: 100%;
        flex: 0 0 50%
    }

    .categories .mms,.categories .mms-12345 {
        display: flex;
        width: 100%;
        flex-wrap: nowrap;
        border-bottom: 1px solid var(--th-color-border)
    }

    .categories .mms-12345 a-67890:last-child .items-11223,.categories .mms-12345 a:last-child .items-11223 {
        background: var(--dsdsdssd, linear-gradient(180deg, #7623DB 0%, #3F1375 100%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 14px;
        font-weight: 600
    }

    header.mobile {
        display: block;
        position: relative
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .modal-inside2-12345 {
        top: 33px
    }

    

    div#shareAge2-67890 {
        right: -20.6%
    }

    

    
}

.mobile .dinamik-slide-11234 a img {
    width: 100vh;
    border-radius: 0;
    height: 100%
}


