        .img-center {
            min-height: 300px;
            display: flex;
            align-items: center;
            /* dikey ortalama */
            justify-content: center;
            /* yatay ortalama */
        }

        .img-center img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }



        .urun-listesi {
            margin-top: 10px;
        }

        .urun-card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid #ececec;
        }

        .urun-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
        }

        .urun-card__image {
            height: 260px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fb;
            padding: 20px;
            overflow: hidden;
        }

        .urun-card__image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.35s ease;
        }

        .urun-card:hover .urun-card__image img {
            transform: scale(1.05);
        }

        .urun-card__body {
            padding: 18px 16px 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            text-align: center;
        }

        .urun-card__title {
            margin: 0 0 16px;
            min-height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .urun-card__title a {
            font-size: 18px;
            line-height: 1.4;
            font-weight: 600;
            color: #1d1d1d;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .urun-card__title a:hover {
            color: #ff7617;
        }

        .urun-card__footer {
            margin-top: auto;
        }

        .urun-card__button {
            display: inline-block;
            padding: 10px 22px;
            border-radius: 10px;
            background: #ff7617;
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .urun-card__button:hover {
            background: #ff7617;
            color: #fff;
        }

        @media (max-width: 991px) {
            .urun-card__image {
                height: 220px;
            }
        }

        @media (max-width: 576px) {
            .urun-card__title a {
                font-size: 16px;
            }

            .urun-card__image {
                height: 200px;
            }
        }

        .pagination-wrapper {
            margin-top: 40px;
            display: flex;
            justify-content: center;
        }

        .custom-pagination {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0;
            margin: 0;
            list-style: none;
            flex-wrap: wrap;
        }

        .custom-pagination li a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 42px;
            height: 42px;
            padding: 0 14px;
            border-radius: 10px;
            text-decoration: none;
            background: #fff;
            color: #222;
            border: 1px solid #ddd;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .custom-pagination li a:hover {
            background: #ff7617;
            color: #fff;
            border-color: #ff7617;
        }

        .custom-pagination li a.active {
            background: #ff7617;
            color: #fff;
            border-color: #ff7617;
        }

        .urun-card__meta {
            margin-bottom: 16px;
            text-align: center;
        }

        .urun-card__meta span {
            display: inline-block;
            font-size: 14px;
            color: #666;
            background: #fff4ec;
            padding: 6px 12px;
            border-radius: 999px;
            line-height: 1.4;
        }

        .urun-card__image {
            position: relative;
            height: 260px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fb;
            padding: 20px;
            overflow: hidden;
        }

        .urun-card__image {
            position: relative;
            height: 260px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fb;
            padding: 20px;
            overflow: hidden;
        }

        .urun-card__badge {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #ff7617;
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            line-height: 1;
            padding: 8px 12px;
            border-radius: 999px;
            box-shadow: 0 6px 18px rgba(255, 118, 23, 0.25);
        }

        .urun-card__price {
            margin: 0 0 16px;
            text-align: center;
        }

        .urun-card__price span {
            display: inline-block;
            font-size: 22px;
            font-weight: 700;
            color: #ff7617;
            line-height: 1.2;
        }

        .pq-header-cart {
            display: flex;
            align-items: center;
            margin-left: 15px;
        }

        .pq-cart-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            border: 1px solid #e5e5e5;
            border-radius: 6px;
            text-decoration: none;
            color: #ff6b00;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.2s ease;
            background: #fff;
        }

        .pq-cart-btn:hover {
            background: #ff6b00;
            color: #fff;
            border-color: #ff6b00;
        }

        .pq-cart-btn i {
            font-size: 16px;
            line-height: 1;
        }


        .pq-header-cart {
            display: flex;
            align-items: center;
            margin-left: 15px;
        }

        .pq-cart-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            border: 1px solid #e5e5e5;
            border-radius: 6px;
            text-decoration: none;
            color: #ff6b00;
            font-weight: 600;
            font-size: 14px;
            background: #fff;
            transition: all 0.2s ease;
        }

        .pq-cart-btn:hover {
            background: #ff6b00;
            color: #fff;
            border-color: #ff6b00;
        }

        .pq-cart-btn i {
            font-size: 16px;
            line-height: 1;
        }

        .pq-cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            min-width: 20px;
            height: 20px;
            padding: 0 6px;
            border-radius: 50px;
            background: #ff6b00;
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .sidebar-info-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .info-card {
            background: #fff;
            border: 1px solid #e9e9e9;
            border-radius: 8px;
            padding: 30px 20px;
            text-align: center;
            transition: 0.3s ease;
        }

        .info-card:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
            transform: translateY(-3px);
        }

        .info-card-icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 18px;
            border-radius: 50%;
            background: #fff4f2;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ff6b57;
            font-size: 28px;
        }

        .info-card h4 {
            font-size: 24px;
            font-weight: 700;
            color: #444;
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        .info-card p {
            font-size: 16px;
            line-height: 1.7;
            color: #666;
            margin: 0;
        }

        @media (max-width: 991px) {
            .sidebar-info-cards {
                margin-top: 30px;
            }

            .info-card {
                padding: 25px 18px;
            }

            .info-card h4 {
                font-size: 20px;
            }

            .info-card p {
                font-size: 15px;
            }
        }


        .avantaj-icon {
            width: 64px;
            height: 64px;
            object-fit: contain;
        }

        .pq-process-step.pq-style-2 .pq-process-icon {
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            line-height: normal !important;
            margin: 0 auto !important;
        }

        .pq-process-step.pq-style-2 .pq-process-icon img {
            display: block;
            margin: 0 auto;
        }

        .checkout-approval-box {
            font-size: 13px;
            line-height: 1.5;
            color: #666;
        }

        .checkout-approval-box .check-item {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 12px;
            cursor: pointer;
        }

        .checkout-approval-box .check-item input[type="checkbox"] {
            margin-top: 3px;
            width: 16px;
            height: 16px;
            min-width: 16px;
        }

        .checkout-approval-box .check-item span {
            display: block;
        }

        .modal-link {
            color: #ff6b00;
            font-weight: 600;
            text-decoration: none;
        }

        .modal-link:hover {
            text-decoration: underline;
        }

        /* MODAL */
        .custom-modal {
            display: none;
            position: fixed;
            z-index: 99999;
            inset: 0;
            background: rgba(0, 0, 0, .55);
            padding: 20px;
        }

        .custom-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .custom-modal-box {
            background: #fff;
            width: 100%;
            max-width: 700px;
            border-radius: 12px;
            padding: 25px;
            position: relative;
            max-height: 85vh;
            overflow-y: auto;
        }

        .custom-modal-box h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .custom-modal-content p {
            font-size: 14px;
            line-height: 1.7;
            color: #444;
            margin-bottom: 12px;
        }

        .custom-modal-close {
            position: absolute;
            top: 10px;
            right: 12px;
            border: none;
            background: transparent;
            font-size: 28px;
            line-height: 1;
            cursor: pointer;
        }

        .yorum-yildiz {
            margin: 15px 0 10px;
            text-align: center;
        }

        .yorum-yildiz i {
            color: #ff7a00;
            font-size: 18px;
            margin: 0 2px;
        }


        .pq-header-info-box {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .pq-header-auth {
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .pq-auth-link {
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
        }

        .pq-auth-sep {
            opacity: .6;
        }

        .pq-auth-primary {
            padding: 8px 12px;
            border: 1px solid rgba(0, 0, 0, .15);
            border-radius: 6px;
        }



        .pq-header-auth {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pq-auth-dropdown {
            position: relative;
            display: inline-block;
        }

        .pq-auth-link {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            cursor: pointer;
        }

        .pq-auth-icon {
            width: 40px;
            height: 40px;
            border: 1px solid #eee;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            transition: all 0.2s ease;
        }

        .pq-auth-icon:hover {
            background: #f8f8f8;
        }

        .pq-auth-icon i {
            font-size: 16px;
            color: #333;
        }

        .pq-auth-dropdown-menu {
            display: none;
            position: absolute;
            top: calc(100% - 1px);
            right: 0;
            background: #fff;
            border: 1px solid #eee;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            min-width: 160px;
            z-index: 999;
            overflow: hidden;
        }

        .pq-auth-dropdown-menu a {
            display: block;
            padding: 10px 16px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            transition: background 0.2s;
        }

        .pq-auth-dropdown-menu a:hover {
            background: #f5f5f5;
        }

        .pq-auth-dropdown:hover .pq-auth-dropdown-menu {
            display: block;
        }

        .pq-auth-dropdown::after {
            content: "";
            position: absolute;
            top: 100%;
            right: 0;
            width: 100%;
            height: 12px;
            background: transparent;
        }

        .pq-auth-sep {
            color: #999;
        }


        .urun-card__price {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .old-price {
            text-decoration: line-through;
            color: #999;
            font-size: 14px;
        }

        .new-price {
            color: #ff6a00;
            font-weight: 700;
            font-size: 18px;
        }


        .urun-fiyat-wrapper {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 15px;
        }

        .urun-fiyat-eski {
            font-size: 22px;
            color: #999;
            text-decoration: line-through;
            font-weight: 500;
            line-height: 1.2;
        }

        .urun-fiyat-yeni {
            font-size: 34px;
            font-weight: 700;
            color: #ff6a00;
            line-height: 1.2;
        }

        .urun-fiyat {
            font-size: 34px;
            font-weight: 700;
            color: #ff6a00;
            line-height: 1.2;
            margin-bottom: 15px;
        }

        .cart-price-wrap {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .cart-old-price {
            font-size: 13px;
            color: #999;
            text-decoration: line-through;
            line-height: 1.2;
        }

        .cart-new-price {
            font-size: 15px;
            font-weight: 700;
            color: #ff6a00;
            line-height: 1.2;
        }

        .urun-card {
            position: relative;
        }

        .urun-card__fav {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 42px;
            height: 42px;
            border: none !important;
            outline: none !important;
            background: transparent !important;
            box-shadow: none !important;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
            cursor: pointer;
        }

        .urun-card__fav i {
            font-size: 24px;
            line-height: 1;
            color: #ff7a1a;
            /* favoride değilken koyu */
            transition: .2s ease;
        }

        .urun-card__fav.active i {
            color: #ff7a1a;
            /* favoriye eklenince turuncu */
        }

        .urun-card__fav:hover,
        .urun-card__fav:focus,
        .urun-card__fav:active {
            background: transparent !important;
            box-shadow: none !important;
        }

        .urun-card__fav:hover i,
        .urun-card__fav:focus i,
        .urun-card__fav:active i {
            color: #ff7a1a !important;
        }

        .urun-card__fav.active:hover i,
        .urun-card__fav.active:focus i,
        .urun-card__fav.active:active i {
            color: #ff7a1a;
        }

        .product-main-image {
            position: relative;
        }


.pq-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pq-auth-dropdown {
    position: relative;
}

.pq-auth-icon,
.pq-cart-btn {
    height: 46px;
    min-width: 46px;
    padding: 0 16px;
    background: #fff;
    color: #ff6600;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    position: relative;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.pq-auth-icon i,
.pq-cart-btn i {
    font-size: 16px;
}

.pq-auth-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 170px;
    background: #fff;
    z-index: 99999;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.pq-auth-dropdown:hover .pq-auth-dropdown-menu {
    display: block;
}

.pq-auth-dropdown-menu a,
.pq-auth-user-name {
    display: block;
    padding: 12px 15px;
    color: #111018;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    text-decoration: none;
}

.pq-auth-dropdown-menu a:hover {
    background: #ff6600;
    color: #fff;
}

.pq-auth-dropdown-menu a:last-child {
    border-bottom: none;
}

.pq-auth-user-name {
    color: #ff6600;
    font-weight: 700;
}

.pq-cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    width: 19px;
    height: 19px;
    background: #ff6600;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 991px) {

    .pq-header-actions {
        gap: 5px;
        margin-left: auto;
    }

    .pq-auth-icon,
    .pq-cart-btn {
        width: 36px;
        min-width: 36px;
        height: 36px;
        padding: 0;
        border-radius: 6px;
    }

    .pq-cart-btn .pq-btn-text {
        display: none;
    }

    .pq-auth-dropdown-menu {
        top: calc(100% + 10px);
        right: -88px;
        width: 175px;
    }

    .pq-auth-dropdown-menu::before {
        content: "";
        position: absolute;
        top: -8px;
        right: 100px;
        width: 14px;
        height: 14px;
        background: #fff;
        transform: rotate(45deg);
    }

    .pq-auth-dropdown:hover .pq-auth-dropdown-menu {
        display: none;
    }

    .pq-auth-dropdown.active .pq-auth-dropdown-menu {
        display: block;
    }
}


@media (max-width: 991px) {
  .pq-menu-search-block {
    display: none !important;
  }
}



.service {
    min-height: 420px;
}

@media (max-width: 991px) {
    .service {
        min-height: 620px;
    }
}


.banner {
    height: 900px;
    min-height: 900px;
    overflow: hidden;
}

#rev_slider_4_1_wrapper,
#rev_slider_4_1 {
    height: 900px !important;
    min-height: 900px !important;
}

@media (max-width: 991px) {
    .banner {
        height: 433px;
        min-height: 433px;
    }

    #rev_slider_4_1_wrapper,
    #rev_slider_4_1 {
        height: 433px !important;
        min-height: 433px !important;
    }
}
        


.hero-slider {
    position: relative;
    width: 100%;
    height: 900px;
    overflow: hidden;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item,
.hero-slide {
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 900px;
    overflow: hidden;
}

.hero-slide__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.hero-slide__container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-slide__content {
    max-width: 700px;
    color: #fff;
}

.hero-slide__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: #ff7617;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-slide__title {
    margin: 0;
    max-width: 700px;
    color: #fff;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 62px;
    line-height: 70px;
    font-weight: 600;
    text-transform: capitalize;
}

.hero-slide__desc {
    margin-top: 28px;
    max-width: 566px;
    color: #f1f1f1;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 30px;
}

.hero-slide__button {
    display: inline-flex;
    margin-top: 34px;
    background-color: #ff7617;
    text-transform: uppercase;
}

.hero-slide__button:hover {
    background-color: #15141c;
    color: #fff;
}

@media (max-width: 1199px) {
    .hero-slide__title {
        font-size: 48px;
        line-height: 56px;
        max-width: 530px;
    }

    .hero-slide__desc {
        font-size: 16px;
        line-height: 26px;
        max-width: 488px;
    }
}

@media (max-width: 991px) {
    .hero-slide__title {
        font-size: 42px;
        line-height: 50px;
        max-width: 462px;
    }

    .hero-slide__desc {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-slider,
    .hero-slide {
        height: 433px;
    }

    .hero-slide__container {
        justify-content: center;
        text-align: center;
    }

    .hero-slide__content {
        max-width: 437px;
        padding: 0 15px;
    }

    .hero-slide__tag {
        justify-content: center;
        font-size: 14px;
        line-height: 22px;
        font-weight: 700;
        margin-bottom: 14px;
    }

    .hero-slide__title {
        font-size: 36px;
        line-height: 44px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .hero-slide__button {
        margin-top: 24px;
    }
}


.hero-slide__container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 80px;
    padding-right: 80px;
}

@media (max-width: 1199px) {
    .hero-slide__container {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 991px) {
    .hero-slide__container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 767px) {
    .hero-slide__container {
        padding-left: 24px;
        padding-right: 24px;
        justify-content: center;
        text-align: center;
    }
}


