html, body {
    overflow-x: hidden;
}

body {
    background: #fff;
    font-family: 'Poppins', 'Nunito', Arial, sans-serif;
}
.package-detail-mainv2 {
    padding: 40px 0 32px 0;
}
.package-detail-flex {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08);
    padding: 36px 32px;
}
.package-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.package-main-img {
    width: 340px;
    height: 340px;
    background: #f6f7fb;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.package-main-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
}
.fav-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    color: #ff9800;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fav-btn:active {
    background: #ff9800;
    color: #fff;
}
.package-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
    max-width: 340px;
}
.thumb {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border 0.2s;
    background: #f6f7fb;
}
.thumb.active, .thumb:hover {
    border: 2px solid #ff9800;
}
.package-info-block {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 320px;
}
.package-title {
    font-size: 1.5rem;
    font-weight: unset;
    color: #ff9800;
    margin-bottom: 6px;
}
.package-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 8px;
}
.old-price {
    color: #d32f2f;
    text-decoration: line-through;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0;
}
.current-price {
    color: #111;
    font-weight: unset;
    font-size: 2.2rem;
    margin-top: 0;
}
.package-quantity-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
    width: 100%;
}
.quantity-selector-row {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
}
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    padding: 4px 12px;
}
.qty-btn {
    background: #fff;
    border: 1.5px solid #bbb;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    color: #222;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.qty-btn:active {
    background: #ff9800;
    color: #fff;
    border-color: #ff9800;
}
#qty-value {
    min-width: 24px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}
.buy-btn {
    background: linear-gradient(90deg, #00c853 0%, #43e97b 100%);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,200,83,0.07);
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 0;
    margin-top: 0;
}
.buy-btn:active {
    background: linear-gradient(90deg, #00b34f 0%, #43e97b 100%);
}
.package-desc {
    font-size: 1.05rem;
    color: #222;
    margin-bottom: 8px;
}
.package-desc ul {
    margin: 8px 0 0 18px;
    padding: 0;
    color: #444;
    font-size: 1rem;
}
.package-desc li {
    margin-bottom: 16px;
}
.package-info-box {
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 8px 0 0 0;
    font-size: 0.93rem;
    color: #333;
    margin-top: 10px;
}
.package-info-box ul {
    margin: 0;
    padding-left: 18px;
}
.package-info-box li {
    margin-bottom: 2px;
    font-size: 0.93rem;
    font-style: italic;
    color: #444;
}
@media (max-width: 900px) {
    .package-detail-flex {
        flex-direction: column;
        align-items: center;
        padding: 18px 6px;
        gap: 28px;
    }
    .package-main-img {
        width: 90vw;
        max-width: 340px;
        height: auto;
    }
    .package-thumbnails {
        max-width: 90vw;
    }
    .package-info-block {
        min-width: 0;
        width: 100%;
    }
}
@media (max-width: 600px) {
    .package-detail-mainv2 {
        padding: 12px 0 8px 0;
    }
    .package-detail-flex {
        padding: 24px 8px 10px;
        gap: 16px;
        flex-direction: column;
        box-shadow: 0 2px 12px 0 rgba(0,0,0,0.05);
    }
    .package-gallery {
        width: 100%;
    }
    .package-main-img {
        width: 100%;
        max-width: 94vw;
        height: auto;
        aspect-ratio: 1/1;
        margin: 0 auto;
    }
    .package-thumbnails {
        gap: 8px;
        max-width: 94vw;
        margin: 0 auto;
    }
    .thumb {
        width: 54px;
        height: 54px;
    }
    .quantity-selector-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .buy-btn {
        width: auto;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        margin-top: 6px;
        padding: 10px 16px;
        font-size: 0.95rem;
        max-width: 180px;
    }
    .package-title {
        font-size: 1.3rem;
        text-align: center;
    }
    .package-pricing {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        justify-content: center;
    }
    .current-price {
        font-size: 1.8rem;
    }
    .old-price {
        font-size: 1rem;
    }
    .package-info-block {
        gap: 12px;
        min-width: 0;
        width: 100%;
        padding-top: 10px;
    }
    .package-quantity-row {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}
.package-tabs-section {
    margin: 36px 0 0 0;
    padding: 0 0 32px 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.package-tabs, .tab-contents {
    max-width: 1100px;
    width: 100%;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}
.package-tabs {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid #f3f3f3;
    margin-bottom: 0;
    position: relative;
    background: #fff;
    z-index: 2;
}
.tab-btn {
    background: none;
    border: none;
    outline: none;
    font-size: 1.18rem;
    color: #222;
    font-weight: 500;
    padding: 18px 0 12px 0;
    cursor: pointer;
    flex: 1;
    position: relative;
    transition: color 0.2s;
}
.tab-btn.active {
    color: #f18518;
}
.tab-btn.active::after {
    content: '';
    display: block;
    margin: 0 auto;
    width: 32px;
    height: 6px;
    border-radius: 6px 6px 0 0;
    background: #f18518;
    position: absolute;
    left: 0; right: 0; bottom: -2px;
}
.tab-contents {
    background: #fafafa;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 18px 0 18px 0;
    margin-top: 0;
    min-height: 180px;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.menu-table {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.menu-col {
    flex: 1;
    min-width: 120px;
    border-right: 1px solid #e0e0e0;
    padding: 0 18px;
    font-size: 1rem;
    color: #222;
}
.menu-col:last-child {
    border-right: none;
}
.menu-col b {
    display: block;
    margin-bottom: 8px;
    color: #111;
    font-weight: 600;
}
.menu-info {
    font-size: 0.98rem;
    color: #666;
    margin-top: 12px;
    font-style: italic;
}
.tab-inner {
    font-size: 1.08rem;
    color: #333;
    padding: 12px 0;
}
@media (max-width: 900px) {
    .package-tabs-section,
    .package-tabs,
    .tab-contents {
        max-width: 98vw;
    }
    .menu-table {
        gap: 8px;
    }
    .menu-col {
        padding: 0 8px;
        font-size: 0.97rem;
    }
}
@media (max-width: 600px) {
    .package-tabs-section,
    .package-tabs,
    .tab-contents {
        max-width: 98vw;
    }
    .tab-btn {
        font-size: 0.9rem;
        padding: 10px 4px;
    }
    .tab-btn.active::after {
        width: 22px;
        height: 4px;
    }
    .menu-table {
        flex-direction: column;
        gap: 0;
    }
    .menu-col {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        min-width: 0;
        padding: 8px 0;
    }
    .menu-col:last-child {
        border-bottom: none;
    }
}
.macro-bars-section {
    max-width: 1100px;
    margin: 38px auto 0 auto;
    padding: 0 12px 24px 12px;
    position: relative;
    min-height: 220px;
}
.macro-portion {
    font-size: 1.08rem;
    margin-bottom: 18px;
    color: #222;
}
.macro-row {
    margin-bottom: 38px;
    position: relative;
}
.macro-label {
    font-size: 1.05rem;
    color: #222;
    margin-bottom: 4px;
}
.macro-bar-wrap {
    display: flex;
    align-items: center;
    position: relative;
    height: 24px;
}
.macro-bar-bg {
    width: 100%;
    height: 12px;
    background: #f1f1f1;
    border-radius: 6px;
    position: absolute;
    left: 0;
    top: 6px;
    z-index: 0;
}
.macro-bar {
    height: 12px;
    border-radius: 6px;
    position: absolute;
    left: 0;
    top: 6px;
    display: flex;
    align-items: center;
    transition: width 0.4s;
    z-index: 1;
}
.macro-bar-protein {
    background: #6fcf4b;
}
.macro-bar-carb {
    background: #ffb12b;
}
.macro-bar-fat {
    background: #2dc6f7;
}
.macro-bar .macro-value {
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    background: inherit;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 2px 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 2;
}
.macro-unit {
    font-size: 0.98rem;
    color: #888;
    margin-left: 12px;
    position: absolute;
    right: 0;
    top: -22px;
    z-index: 3;
}
.macro-limit-line {
    position: absolute;
    left: 70%;
    top: 0;
    width: 0;
    height: calc(100% - 80px);
    border-right: 4px solid #e60000;
    z-index: 10;
}
.macro-total {
    background: #f4f4f4;
    border-radius: 8px;
    padding: 14px 18px;
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.08rem;
    color: #222;
    font-weight: 500;
}
.macro-total-value {
    color: #888;
    font-size: 1.08rem;
    font-weight: 600;
}
@media (max-width: 900px) {
    .macro-bars-section {
        max-width: 98vw;
    }
    .macro-limit-line {
        height: 100%;
    }
}
@media (max-width: 600px) {
    .macro-bars-section {
        max-width: 100vw;
        padding: 0 2vw 18px 2vw;
    }
    .macro-bar .macro-value {
        right: -18px;
        font-size: 0.97rem;
        padding: 2px 8px;
    }
    .macro-limit-line {
        display: none;
    }
    .macro-total {
        font-size: 0.98rem;
        padding: 10px 8px;
    }
}
.product-cards-section {
    max-width: 1100px;
    margin: 38px auto 0 auto;
    padding: 0 12px 32px 12px;
}
.product-cards-title {
    color: #f18518;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 18px;
    margin-left: 8px;
}
.product-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.product-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 12px 8px 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    border: 1px solid #f1f1f1;
    min-height: 320px;
    height: 100%;
}
.product-card:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);
    transform: translateY(-3px) scale(1.02);
}
.product-image {
    width: 100%;
    max-width: 150px;
    margin-bottom: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-image img {
    width: 100%;
    border-radius: 12px;
    background: #fafafa;
    object-fit: contain;
}
.product-badge {
    position: absolute;
    bottom: 6px;
    left: 6px;
    background: #FFE3C7;
    color: orange;
    font-size: -0.08rem;
    font-weight: 600;
    padding: 3px 14px;
    border-radius: 10px;
    z-index: 2;
    max-width: 90px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 22px;
    display: flex;
    align-items: center;
}
.product-content {
    width: 100%;
    text-align: left;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}
.product-content h4 {
    font-size: 1.04rem;
    font-weight: unset;
    color: #222;
    margin-bottom: 2px;
    margin-top: 2px;
    line-height: 1.2;
}
.product-content p {
    font-size: 0.91rem;
    color: #444;
    margin-bottom: 4px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 1.3em;
}
.rating {
    color: #ff9800;
    font-size: 1.01rem;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 1px;
}
.rating-count {
    color: #bbb;
    font-size: 0.93rem;
    margin-left: 3px;
}
.price-actions {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 2px;
    gap: 0;
}
.price {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-bottom: 0;
}
.old-price {
    color: #d32f2f;
    text-decoration: line-through;
    font-size: 0.93rem;
    font-weight: 500;
}
.current-price {
    color: #222;
    font-size: 1.22rem;
    font-weight: unset;
    letter-spacing: -0.5px;
}
.actions {
    margin-top: 2px;
    display: flex;
    gap: 8px;
}
.add-to-cart {
    display: none;
}
.add-to-wishlist {
    color: #ff9800;
    font-size: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    transition: color 0.2s;
    position: static;
}
.add-to-wishlist:hover {
    color: #d32f2f;
}
@media (max-width: 1100px) {
    .product-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .product-cards-grid {
        grid-template-columns: 1fr;
    }
    .product-card {
        max-width: 98vw;
    }
}
@media (max-width: 600px) {
    .product-cards-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }
    .product-card {
        flex: 0 0 85vw;
        scroll-snap-align: start;
        margin-right: 0;
    }
}
.fitndetox-info-bottom {
    background: #fff;
    padding: 32px 0 32px 0;
}
.fitndetox-info-bottom .container {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 24px 18px;
}
@media (max-width: 900px) {
    .fitndetox-info-bottom .container {
        max-width: 98vw;
        padding: 14px 4vw;
    }
}

/* Add slider indicators for mobile */
@media (max-width: 600px) {
    .product-cards-section {
        position: relative;
        padding-bottom: 24px;
    }
    
    .slider-indicators {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin: 16px 0 4px 0;
    }
    
    .slider-indicator {
        width: 8px;
        height: 8px;
        background-color: #ddd;
        border-radius: 50%;
        transition: background-color 0.3s ease;
    }
    
    .slider-indicator.active {
        background-color: #00b050;
        transform: scale(1.2);
    }
    
    .product-cards-grid::-webkit-scrollbar {
        display: none;
    }
    
    .tab-btn {
        font-size: 0.9rem;
        padding: 10px 4px;
    }
} 

/* Taksit Seçenekleri Stili */
.payment-options {
    padding: 12px 0;
}

.payment-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 24px;
}

.payment-col {
    flex: 0 0 calc(25% - 16px);
    margin-bottom: 16px;
    padding: 12px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
}

.bank-logo {
    height: 40px;
    max-width: 120px;
    display: block;
    margin: 0 auto 16px;
    object-fit: contain;
}

.payment-info {
    font-size: 13px;
}

.payment-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: #f18518;
    font-size: 12px;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    color: #666;
}

@media (max-width: 992px) {
    .payment-col {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 600px) {
    .payment-col {
        flex: 0 0 100%;
    }
    
    .payment-header, .payment-item {
        font-size: 11px;
    }
} 