/* Ürün Detay Sayfası - Fotoğraf Eşit Boyutlandırma */
.product-slick {
    position: relative;
}

.product-slick .slick-slide {
    height: auto;
}

.product-slick .slick-slide > div {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    max-height: 600px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-slick .slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-width: 100%;
    max-height: 600px;
}

/* Thumbnail slider için de eşit boyut */
.slider-nav .slick-slide {
    padding: 5px;
}

.slider-nav .slick-slide > div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    overflow: hidden;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav .slick-slide.slick-current > div {
    border-color: var(--theme-color, #77b8b7);
}

.slider-nav .slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Zoom lens stili */
.zoomContainer {
    z-index: 10;
}

.zoomWindow {
    z-index: 11;
}

/* Next/Prev butonlarını gizle */
.product-slick .slick-prev,
.product-slick .slick-next {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .product-slick .slick-slide > div {
        min-height: 300px;
        max-height: 400px;
    }
    
    .product-slick .slick-slide img {
        max-height: 400px;
    }
}

/* Cart Offcanvas Font Styles - Sadece text elementleri */
.cart-offcanvas .offcanvas-title,
.cart-offcanvas p,
.cart-offcanvas a:not(.btn-close),
.cart-offcanvas h4,
.cart-offcanvas h5,
.cart-offcanvas .quantity,
.cart-offcanvas .quantity span,
.cart-offcanvas .total,
.cart-offcanvas .total h5,
.cart-offcanvas .total h5 span,
.cart-offcanvas .media-body,
.cart-offcanvas .media-body h4,
.cart-offcanvas .pre-text-box,
.cart-offcanvas .pre-text-box p,
.cart-offcanvas .sidebar-title,
.cart-offcanvas .sidebar-title a,
.cart-offcanvas .text-muted,
.cart-offcanvas .btn,
.cart-offcanvas .btn.view-cart,
.cart-offcanvas .btn.checkout,
.cart-offcanvas .btn.btn-solid {
    font-family: "Montserrat", sans-serif !important;
}

.cart-offcanvas .offcanvas-title {
    font-weight: 600;
}

.cart-offcanvas .media-body h4 {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cart-offcanvas .quantity {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.cart-offcanvas .total h5 {
    font-weight: 600;
}

.cart-offcanvas .btn {
    font-weight: 500;
}

/* Cart Page Styles */
.empty-cart-wrapper {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart-content {
    max-width: 500px;
    margin: 0 auto;
}

.empty-cart-icon {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 20px;
    display: block;
}

.empty-cart-title {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.empty-cart-text {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

/* Product Attributes - Beyaz Badge Tasarımı */
.product-attributes-cart-page,
.product-attributes-cart-offcanvas,
.product-attributes-checkout {
    margin-top: 6px;
    margin-bottom: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

/* Attribute Badge - Beyaz Badge Tasarımı */
.attribute-badge {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 11px;
    font-family: "Montserrat", sans-serif;
    line-height: 1.4;
}

.attribute-badge-label {
    font-weight: 400;
    color: #888;
    margin-right: 4px;
    font-size: 11px;
}

.attribute-badge-value {
    font-weight: 500;
    color: #555;
    font-size: 11px;
}

/* Sepet Sayfası için Özel Stil */
.product-attributes-cart-page {
    margin-top: 8px;
    gap: 6px;
}

.product-attributes-cart-page .attribute-badge {
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 14px;
}

.product-attributes-cart-page .attribute-badge-label {
    font-size: 12px;
    color: #888;
}

.product-attributes-cart-page .attribute-badge-value {
    font-size: 12px;
    color: #555;
}

/* Cart Offcanvas için Özel Stil - Küçük */
.product-attributes-cart-offcanvas {
    margin-top: 5px;
    margin-bottom: 5px;
    gap: 4px;
}

.product-attributes-cart-offcanvas .attribute-badge {
    padding: 2px 7px;
    font-size: 10px;
    border-radius: 10px;
}

.product-attributes-cart-offcanvas .attribute-badge-label {
    font-size: 10px;
    color: #999;
    margin-right: 3px;
}

.product-attributes-cart-offcanvas .attribute-badge-value {
    font-size: 10px;
    color: #666;
}

/* Checkout Sayfası için Özel Stil - Çok Küçük ve Kompakt */
.checkout-section-2 .product-attributes-checkout,
.order-box .product-attributes-checkout,
.checkout-details .product-attributes-checkout {
    margin-top: 2px !important;
    margin-bottom: 1px !important;
    gap: 2px !important;
    display: flex !important;
    flex-wrap: wrap !important;
}

.checkout-section-2 .product-attributes-checkout .attribute-badge,
.order-box .product-attributes-checkout .attribute-badge,
.checkout-details .product-attributes-checkout .attribute-badge {
    padding: 0px 4px !important;
    font-size: 8px !important;
    border-radius: 6px !important;
    line-height: 1.1 !important;
    border: 1px solid #e0e0e0 !important;
    background: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    height: 14px !important;
}

.checkout-section-2 .product-attributes-checkout .attribute-badge-label,
.order-box .product-attributes-checkout .attribute-badge-label,
.checkout-details .product-attributes-checkout .attribute-badge-label {
    font-size: 8px !important;
    color: #999 !important;
    margin-right: 2px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
}

.checkout-section-2 .product-attributes-checkout .attribute-badge-value,
.order-box .product-attributes-checkout .attribute-badge-value,
.checkout-details .product-attributes-checkout .attribute-badge-value {
    font-size: 8px !important;
    color: #666 !important;
    font-weight: 400 !important;
    line-height: 1 !important;
}

/* Sipariş Sayfası için Özel Stil */
.product-attributes-order {
    margin-top: 4px;
    margin-bottom: 2px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.product-attributes-order .attribute-badge {
    padding: 1px 5px;
    font-size: 10px;
    border-radius: 8px;
    line-height: 1.2;
    border: 1px solid #e0e0e0;
    background: #ffffff;
}

.product-attributes-order .attribute-badge-label {
    font-size: 10px;
    color: #999;
    margin-right: 2px;
    font-weight: 400;
}

.product-attributes-order .attribute-badge-value {
    font-size: 10px;
    color: #666;
    font-weight: 400;
}

/* Accordion Stil İyileştirmeleri */
.accordion-item {
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    overflow: hidden;
    margin-bottom: 12px;
}

.accordion-button {
    background-color: #f8f9fa !important;
    font-size: 14px;
    padding: 12px 15px;
}

.accordion-button:not(.collapsed) {
    background-color: #ffffff !important;
    color: #333;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #e0e0e0;
}

.accordion-body {
    padding: 20px;
    background-color: #ffffff;
}

.order-details h6 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.order-details .table-sm {
    font-size: 13px;
}

.order-details .table-sm th {
    font-weight: 600;
    color: #555;
    font-size: 12px;
    padding: 8px;
    background-color: #f8f9fa;
}

.order-details .table-sm td {
    padding: 10px 8px;
    vertical-align: middle;
}

/* Sipariş İptal Butonu Stili */
.order-details .btn-outline-danger {
    border-width: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.order-details .btn-outline-danger:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.2);
}

/* Checkout Sayfası İyileştirmeleri */
.checkout-title {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.checkout-title.d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-title h4 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.checkout-title:not(.d-flex) h4 {
    margin-bottom: 0;
}

.checkout-detail {
    padding-top: 15px;
}

.checkout-detail .form-box {
    margin-bottom: 15px;
}

.checkout-detail .form-label {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.checkout-detail .form-control,
.checkout-detail .form-select {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.checkout-detail .form-control:focus,
.checkout-detail .form-select:focus {
    border-color: #333;
    box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.1);
    outline: none;
}

.checkout-detail .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 12px;
    padding-right: 40px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.delivery-address-box {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f8f9fa;
    padding: 15px;
    margin-bottom: 15px;
}

.delivery-address-box .name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.delivery-address-box .address {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.checkout-detail .form-check {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f8f9fa;
    margin-bottom: 0;
}

.checkout-detail .form-check-label {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.checkout-detail .form-check-input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
}

.checkout-detail .alert-info {
    background-color: #e7f3ff;
    border-color: #b8daff;
    color: #004085;
    border-radius: 6px;
    font-size: 13px;
}

.checkout-detail .btn-outline {
    border: 1px solid #ddd;
    color: #555;
    background-color: #fff;
    padding: 8px 15px;
    font-size: 13px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.checkout-detail .btn-outline:hover {
    background-color: #f8f9fa;
    border-color: #333;
    color: #333;
}

.checkout-detail .text-danger {
    font-size: 12px;
}

.checkout-detail .small {
    font-size: 12px;
}

.checkout-detail .text-muted {
    font-size: 12px;
    color: #999;
}

/* Fix Slick slider ajax-loader path */
.slick-loading .slick-list {
    background: #fff url("../images/ajax-loader.gif") center center no-repeat !important;
}

.product-name-link {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.product-name-link:hover {
    color: #000;
    text-decoration: underline;
}

/* Cart Table Responsive */
@media (max-width: 767px) {
    .cart-table thead {
        display: none;
    }
    
    .cart-table tbody tr {
        display: block;
        border: 1px solid #e5e5e5;
        margin-bottom: 15px;
        padding: 15px;
        border-radius: 5px;
    }
    
    .cart-table tbody td {
        display: block;
        border: none;
        padding: 8px 0;
    }
    
    .cart-table tbody td:first-child {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .mobile-cart-content {
        display: flex !important;
        align-items: center;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #e5e5e5;
    }
    
    .cart-table tbody td.table-price {
        display: none;
    }
}

/* Checkout Page Styles */
.checkout-section-2 .checkout-box {
    margin-bottom: 0;
}

.checkout-section-2 .checkout-title {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.checkout-section-2 .checkout-title h4 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 18px;
}

.checkout-section-2 .checkout-detail {
    padding-top: 5px;
}

.checkout-section-2 .form-box {
    margin-bottom: 0;
}

.checkout-section-2 .form-label {
    font-weight: 500;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.checkout-section-2 .form-control {
    padding: 12px 15px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkout-section-2 .form-control:focus {
    border-color: #333;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.checkout-section-2 .form-control.border-danger {
    border-color: #dc3545 !important;
    border-width: 2px !important;
}

.checkout-section-2 .alert-danger {
    padding: 15px;
    border: 2px solid #dc3545;
    border-radius: 6px;
    background-color: #f8d7da;
    color: #721c24;
    font-weight: 500;
}

.checkout-section-2 .text-danger.fw-bold {
    font-weight: 600;
    color: #dc3545;
}

.checkout-section-2 .password-toggle {
    cursor: pointer;
    transition: color 0.3s ease;
}

.checkout-section-2 .password-toggle:hover {
    color: #333 !important;
}

.checkout-section-2 .form-box .position-relative .form-control {
    padding-right: 45px;
}

.dashboard-section .password-toggle {
    cursor: pointer;
    transition: color 0.3s ease;
}

.dashboard-section .password-toggle:hover {
    color: #333 !important;
}

.dashboard-section .position-relative .form-control {
    padding-right: 45px;
}

.checkout-section-2 .delivery-address-box {
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background-color: #fafafa;
    transition: all 0.3s ease;
}

.checkout-section-2 .delivery-address-box:hover {
    border-color: #333;
    background-color: #fff;
}

.checkout-section-2 .delivery-address-box .name {
    font-weight: 600;
    font-size: 15px;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.checkout-section-2 .delivery-address-box .address {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.checkout-section-2 .checkout-detail-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checkout-section-2 .checkout-detail-box ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
}

.checkout-section-2 .checkout-detail-box ul li:last-child {
    border-bottom: none;
}

/* Contact Page Styles */
.contact-page {
    padding: 60px 0;
    overflow-x: hidden;
}


.contact-left {
    padding-right: 30px;
}

.contact-title {
    margin-bottom: 2rem;
}

.contact-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.contact-title p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.contact-info-list {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1rem;
}

.contact-item:hover {
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color, #77b8b7);
    border-radius: 10px;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
    position: relative;
}

.contact-info-box h5 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-info-box p {
    font-size: 15px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-info-box a {
    color: var(--theme-color, #77b8b7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-box a:hover {
    color: var(--theme-color, #77b8b7);
    opacity: 0.8;
    text-decoration: underline;
}

/* Social Media Links */
.social-media-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #666;
    font-size: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
    border-color: transparent;
}

.social-link.social-facebook:hover {
    background-color: #1877f2 !important;
}

.social-link.social-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
}

.social-link.social-twitter:hover {
    background-color: #1da1f2 !important;
}

.social-link.social-youtube:hover {
    background-color: #ff0000 !important;
}

.social-link.social-linkedin:hover {
    background-color: #0077b5 !important;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.contact-form .form-box {
    margin-bottom: 20px;
}

.contact-form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.contact-form .form-control {
    padding: 12px 15px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form .form-control:focus {
    border-color: var(--theme-color, #77b8b7);
    box-shadow: 0 0 0 0.2rem rgba(212, 177, 150, 0.15);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-solid {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: box-shadow 0.3s ease, opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-form .btn-solid:hover {
    box-shadow: 0 4px 15px rgba(212, 177, 150, 0.3);
    opacity: 0.9;
}

.contact-form .btn-solid i {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-left {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contact-title h2 {
        font-size: 28px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-item {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .contact-page {
        padding: 40px 0;
    }
    
    .contact-title h2 {
        font-size: 24px;
    }
    
    .contact-title p {
        font-size: 14px;
    }
    
    .contact-info-list {
        margin-top: 30px;
    }
    
    .contact-item {
        padding: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon-box {
        margin-bottom: 15px;
    }
    
    .contact-form-wrapper {
        padding: 25px 15px;
    }
    
    .social-media-links {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .contact-title h2 {
        font-size: 22px;
    }
    
    .contact-icon-box {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 20px;
    }
    
    .contact-info-box h5 {
        font-size: 16px;
    }
    
    .contact-info-box p {
        font-size: 14px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

.checkout-section-2 .order-box {
    margin-bottom: 25px;
}

.checkout-section-2 .order-box:last-child {
    margin-bottom: 0;
}

.checkout-section-2 .title-box {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.checkout-section-2 .title-box h4 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 18px;
}

.checkout-section-2 .title-box p {
    margin-bottom: 0;
    font-size: 13px;
    color: #666;
}

.checkout-section-2 .qty li {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.checkout-section-2 .qty li:last-child {
    border-bottom: none;
}

.checkout-section-2 .cart-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.checkout-section-2 .cart-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-section-2 .cart-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.checkout-section-2 .cart-content h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
}

.checkout-section-2 .cart-content h5 {
    font-size: 13px;
    color: #666;
    margin-bottom: 0;
}

.checkout-section-2 .cart-content .text-theme {
    font-weight: 600;
    font-size: 15px;
    color: #333;
    white-space: nowrap;
}

.checkout-section-2 .sub-total {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.checkout-section-2 .sub-total li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.checkout-section-2 .sub-total li:last-child {
    border-bottom: none;
}

.checkout-section-2 .sub-total .count {
    font-weight: 500;
    color: #333;
}

.checkout-section-2 .total {
    list-style: none;
    padding: 15px 0 0 0;
    margin: 0;
    border-top: 2px solid #333;
}

.checkout-section-2 .total li {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.checkout-section-2 .total .count {
    font-size: 18px;
}

@media (max-width: 991px) {
    .checkout-section-2 .checkout-box {
        margin-bottom: 25px;
    }
    
    .checkout-section-2 .cart-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .checkout-section-2 .cart-content .text-theme {
        align-self: flex-end;
    }
}

/* Cart Offcanvas Quantity Container Fix */
.cart-offcanvas .qty-container {
    display: flex !important;
    align-items: center !important;
    flex-direction: row !important;
    gap: 0 !important;
}

.cart-offcanvas .qty-container .qty-btn-minus,
.cart-offcanvas .qty-container .qty-btn-plus {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.cart-offcanvas .qty-container .input-qty {
    display: inline-block !important;
    text-align: center !important;
}

/* Home Slider Styles */
.home-slider-section {
    position: relative;
    width: 100%;
}

.home-slider {
    position: relative;
    width: 100%;
}

.home-slider .home-slide {
    position: relative;
    width: 100%;
}

.home-slider .home-slide .home {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 600px;
}

.home-slider .home-slide .home img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Mobile Responsive Slider */
@media (max-width: 768px) {
    .home-slider .home-slide .home {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .home-slider .home-slide .home {
        height: 250px;
    }
}

.home-slider .home-slide a {
    display: block;
    width: 100%;
}

/* Slider Dots Styling */
.home-slider .slick-dots {
    bottom: 30px;
    z-index: 10;
}

.home-slider .slick-dots li button:before {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0.7;
}

.home-slider .slick-dots li.slick-active button:before {
    color: #ffffff;
    opacity: 1;
}

/* Slider Arrows - Hidden */
.home-slider .slick-prev,
.home-slider .slick-next {
    display: none !important;
}

/* Responsive Slider */
@media (max-width: 768px) {
    .home-slider .slick-dots {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .home-slider .slick-dots {
        bottom: 15px;
    }
}

/* Modern Categories Section */
.modern-categories-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.modern-category-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 50%;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    height: 100%;
    align-items: center;
    gap: 15px;
    padding: 0 10px;
}

.modern-category-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.category-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 180px;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--theme-color, #77b8b7) 0%, rgba(212, 177, 150, 0.9) 100%);
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.modern-category-card:hover .category-image-wrapper {
    box-shadow: 0 8px 30px rgba(212, 177, 150, 0.4);
    transform: scale(1.05);
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    border-radius: 50%;
}

.modern-category-card:hover .category-image {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 177, 150, 0.2) 0%, rgba(212, 177, 150, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
    pointer-events: none;
}

.modern-category-card:hover .category-overlay {
    opacity: 1;
}

.category-title {
    padding: 0;
    text-align: center;
    background: transparent;
    flex-grow: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    width: 100%;
}

.category-title h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
    line-height: 1.4;
    text-align: center;
}

.modern-category-card:hover .category-title h4 {
    color: var(--theme-color, #77b8b7);
}

/* Category Slider - Mobile */
.category-slider {
    position: relative;
    padding: 0;
}

.category-slider .slick-slide {
    padding: 0 10px;
}

/* Mobile Category Slider Padding */
@media (max-width: 767px) {
    .category-slider {
        padding: 0 16px;
    }
    
    .category-slider .slick-slide {
        padding: 0 8px;
    }
}

.category-slider .slick-prev,
.category-slider .slick-next {
    display: none !important;
}

.category-slider .slick-dots {
    bottom: -40px;
}

.category-slider .slick-dots li button:before {
    color: var(--theme-color, #77b8b7);
    opacity: 0.5;
    font-size: 10px;
}

.category-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--theme-color, #77b8b7);
}

/* Responsive Design */
@media (max-width: 991px) {
    .modern-categories-section {
        padding: 40px 0;
    }
    
    .category-image-wrapper {
        max-width: 150px;
    }
    
    .category-title h4 {
        font-size: 15px;
    }
    
    .modern-category-card {
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .modern-categories-section {
        padding: 30px 0 50px;
    }
    
    .category-image-wrapper {
        max-width: 140px;
    }
    
    .category-title h4 {
        font-size: 14px;
    }
    
    .modern-category-card {
        gap: 10px;
        padding: 0 5px;
    }
    
    .category-slider {
        padding: 0 50px;
    }
    
    .category-slider .slick-prev,
    .category-slider .slick-next {
        width: 30px;
        height: 30px;
    }
    
    .category-slider .slick-prev:before,
    .category-slider .slick-next:before {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .modern-categories-section {
        padding: 25px 0 50px;
    }
    
    .category-image-wrapper {
        max-width: 120px;
    }
    
    .category-title h4 {
        font-size: 13px;
    }
    
    .modern-category-card {
        gap: 8px;
        padding: 0 5px;
    }
    
    .category-slider {
        padding: 0 16px;
    }
    
    .category-slider .slick-prev,
    .category-slider .slick-next {
        width: 28px;
        height: 28px;
    }
    
    .category-slider .slick-prev:before,
    .category-slider .slick-next:before {
        font-size: 16px;
    }
    
}

/* Home Services Section - Above Footer */
.home-services-section {
    padding: 60px 0 50px;
    background-color: #f8f9fa;
    margin-bottom: 0;
}

.home-services-section .service-block {
    margin-bottom: 30px;
}

.home-services-section .media {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.home-services-section .media:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(212, 177, 150, 0.2);
}

.home-services-section .media svg {
    width: 50px;
    height: 50px;
    fill: var(--theme-color, #77b8b7);
    flex-shrink: 0;
    transition: fill 0.3s ease, transform 0.3s ease;
}

.home-services-section .media:hover svg {
    fill: var(--theme-color, #77b8b7);
    transform: scale(1.1);
}

.home-services-section .media-body {
    flex: 1;
}

.home-services-section .media-body h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.home-services-section .media:hover .media-body h4 {
    color: var(--theme-color, #77b8b7);
}

.home-services-section .media-body p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive Design for Services Section */
@media (max-width: 991px) {
    .home-services-section {
        padding: 50px 0 30px;
    }
    
    .home-services-section .media {
        padding: 18px;
        gap: 15px;
    }
    
    .home-services-section .media svg {
        width: 45px;
        height: 45px;
    }
    
    .home-services-section .media-body h4 {
        font-size: 16px;
    }
    
    .home-services-section .media-body p {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .home-services-section {
        padding: 30px 0 20px;
    }
    
    .home-services-section .service-block {
        margin-bottom: 15px;
    }
    
    .home-services-section .media {
        padding: 15px;
        gap: 15px;
        flex-direction: row;
        text-align: left;
        align-items: center;
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    }
    
    .home-services-section .media svg {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }
    
    .home-services-section .media-body {
        flex: 1;
    }
    
    .home-services-section .media-body h4 {
        font-size: 15px;
        margin-bottom: 5px;
        line-height: 1.3;
    }
    
    .home-services-section .media-body p {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .home-services-section {
        padding: 25px 0 15px;
    }
    
    .home-services-section .service-block {
        margin-bottom: 12px;
    }
    
    .home-services-section .media {
        padding: 12px 15px;
        gap: 12px;
        flex-direction: row;
        text-align: left;
        align-items: center;
    }
    
    .home-services-section .media svg {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .home-services-section .media-body h4 {
        font-size: 14px;
        margin-bottom: 4px;
        line-height: 1.3;
    }
    
    .home-services-section .media-body p {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 0;
    }
}

/* Search Modal Styles */
.search-modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.search-modal-header {
    background: linear-gradient(135deg, var(--theme-color) 0%, #d4a574 100%);
    padding: 20px 30px;
    border-radius: 12px 12px 0 0;
    border-bottom: none;
}

.search-modal-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.search-modal-header .modal-title {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.search-modal-header .modal-title i {
    font-size: 28px;
}

.btn-close-search {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    font-size: 20px;
}

.btn-close-search:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.search-modal-body {
    padding: 40px 30px;
    background: #f8f9fa;
    min-height: 400px;
}

.search-input-wrapper {
    display: flex;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.search-input {
    flex: 1;
    border: none;
    padding: 18px 30px;
    font-size: 16px;
    background: #fff;
    border-radius: 0;
}

.search-input:focus {
    outline: none;
    box-shadow: none;
    background: #fff;
}

.btn-search-submit {
    background: var(--theme-color);
    color: #fff;
    border: none;
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-search-submit:hover {
    background: #c09d7d;
    color: #fff;
    transform: scale(1.05);
}

.btn-search-submit i {
    font-size: 18px;
}

/* Search Results */
.search-results-container {
    margin-top: 30px;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 25px;
}

.search-results-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
}

.search-results-title i {
    color: var(--theme-color);
    font-size: 20px;
}

.btn-close-modal {
    background: #f0f0f0;
    border: none;
    color: #666;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-close-modal:hover {
    background: var(--theme-color);
    color: #fff;
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Search Product List Item */
.search-product-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-product-item:hover {
    border-color: var(--theme-color);
    box-shadow: 0 4px 15px rgba(212, 177, 150, 0.2);
    transform: translateY(-2px);
}

.search-product-image {
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.search-product-item:hover .search-product-image img {
    transform: scale(1.05);
}

.search-product-info {
    flex: 1;
    min-width: 0;
}

.search-product-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.search-product-title:hover {
    color: var(--theme-color);
}

.search-product-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--theme-color);
}

.product-price-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.product-old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.product-discount {
    font-size: 12px;
    background: #ff6b6b;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.search-product-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-search-view {
    background: var(--theme-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-search-view:hover {
    background: #c09d7d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 177, 150, 0.3);
}

.btn-search-view i {
    font-size: 16px;
}

/* Empty State */
.search-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.search-empty-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--theme-color) 0%, #d4a574 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    opacity: 0.1;
}

.search-empty-icon i {
    font-size: 50px;
    color: var(--theme-color);
    opacity: 1;
}

.search-empty-text {
    font-size: 18px;
    color: #999;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .search-modal-header {
        padding: 15px 20px;
    }
    
    .search-modal-header .modal-title {
        font-size: 20px;
    }
    
    .search-modal-body {
        padding: 25px 20px;
    }
    
    .search-input {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .btn-search-submit {
        padding: 15px 25px;
        font-size: 14px;
    }
    
    .btn-search-submit span {
        display: none;
    }
    
    .search-results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .btn-close-modal {
        width: 100%;
        justify-content: center;
    }
    
    /* Mobile List Items */
    .search-product-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
    }
    
    .search-product-image {
        width: 100%;
        height: 200px;
        min-width: 100%;
    }
    
    .search-product-info {
        width: 100%;
    }
    
    .search-product-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .btn-search-view {
        flex: 1;
        justify-content: center;
    }
}

/* Favori Butonu Stilleri */
.wishlist-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333 !important;
    border-radius: 4px;
    transition: all 0.3s ease;
    padding: 0;
}

.wishlist-btn i {
    font-size: 20px;
    color: #333 !important;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    border-color: var(--theme-color, #333);
    color: var(--theme-color, #333) !important;
    background-color: #f8f9fa;
}

.wishlist-btn:hover i {
    color: var(--theme-color, #333) !important;
}

.wishlist-btn.active {
    background-color: var(--theme-color, #333);
    border-color: var(--theme-color, #333);
    color: #fff !important;
}

.wishlist-btn.active i {
    color: #fff !important;
}

.wishlist-btn.active:hover {
    background-color: #d32f2f;
    border-color: #d32f2f;
    color: #fff !important;
}

.wishlist-btn.active:hover i {
    color: #fff !important;
}

.wishlist-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Cart-info içindeki favori butonu için özel stiller */
.cart-info .wishlist-btn {
    background-color: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #333 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.cart-info .wishlist-btn:hover {
    background-color: rgba(255, 255, 255, 1) !important;
    border-color: var(--theme-color, #333) !important;
    color: var(--theme-color, #333) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Product Card Wishlist Button - Next to İncele Button */
.product-detail .wishlist-btn {
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
    transition: all 0.3s ease;
}

.product-detail .wishlist-btn:hover {
    border-color: var(--theme-color, #77b8b7);
    color: var(--theme-color, #77b8b7);
    background: #fff;
}

.product-detail .wishlist-btn.active {
    border-color: var(--theme-color, #77b8b7);
    background: var(--theme-color, #77b8b7);
    color: #fff;
}

.product-detail .wishlist-btn.active:hover {
    background: rgba(212, 177, 150, 0.9);
    border-color: rgba(212, 177, 150, 0.9);
    color: #fff;
}

.product-detail .wishlist-btn i {
    font-size: 18px;
}

.cart-info .wishlist-btn:hover i {
    color: var(--theme-color, #333) !important;
}

.cart-info .wishlist-btn.active {
    background-color: var(--theme-color, #333) !important;
    border-color: var(--theme-color, #333) !important;
    color: #fff !important;
}

.cart-info .wishlist-btn.active i {
    color: #fff !important;
}

.cart-info .wishlist-btn.active:hover {
    background-color: #d32f2f !important;
    border-color: #d32f2f !important;
    color: #fff !important;
}

.cart-info .wishlist-btn.active:hover i {
    color: #fff !important;
}

/* Product-box hover durumunda cart-info içindeki favori butonu */
.product-box:hover .cart-info .wishlist-btn {
    background-color: rgba(255, 255, 255, 0.98) !important;
    border-color: rgba(0, 0, 0, 0.15) !important;
    color: #333 !important;
}

.product-box:hover .cart-info .wishlist-btn i {
    color: #333 !important;
}

.product-box:hover .cart-info .wishlist-btn:hover {
    background-color: #fff !important;
    border-color: var(--theme-color, #333) !important;
    color: var(--theme-color, #333) !important;
}

.product-box:hover .cart-info .wishlist-btn:hover i {
    color: var(--theme-color, #333) !important;
}

.product-box:hover .cart-info .wishlist-btn.active {
    background-color: var(--theme-color, #333) !important;
    border-color: var(--theme-color, #333) !important;
    color: #fff !important;
}

.product-box:hover .cart-info .wishlist-btn.active i {
    color: #fff !important;
}

/* Profil sayfası favori silme butonu */
.product-box .img-wrapper {
    position: relative;
}

.remove-wishlist-btn {
    width: 35px;
    height: 35px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    color: #333;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.remove-wishlist-btn:hover {
    background-color: #d32f2f;
    border-color: #d32f2f;
    color: #fff;
}

/* SweetAlert2 Tema Renkleri */
.swal2-popup {
    border-radius: 8px;
}

.swal2-title {
    color: #333;
    font-weight: 600;
}

.swal2-content {
    color: #666;
}

.swal2-confirm {
    background-color: var(--theme-color, #77b8b7) !important;
    border-color: var(--theme-color, #77b8b7) !important;
    color: #fff !important;
    border-radius: 4px;
    font-weight: 500;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.swal2-confirm:hover {
    background-color: var(--theme-color, #77b8b7) !important;
    border-color: var(--theme-color, #77b8b7) !important;
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.swal2-cancel {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #fff !important;
    border-radius: 4px;
    font-weight: 500;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.swal2-cancel:hover {
    background-color: #5a6268 !important;
    border-color: #5a6268 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.swal2-icon.swal2-info {
    border-color: var(--theme-color, #77b8b7);
    color: var(--theme-color, #77b8b7);
}

.swal2-icon.swal2-success {
    border-color: #28a745;
    color: #28a745;
}

.swal2-icon.swal2-error {
    border-color: #dc3545;
    color: #dc3545;
}

.swal2-icon.swal2-warning {
    border-color: #ffc107;
    color: #ffc107;
}

/* Form Hata Mesajları */
.login-page .alert-danger,
.register-page .alert-danger {
    border-left: 4px solid #dc3545;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
    padding: 16px 20px;
    border-radius: 6px;
    margin-bottom: 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
}

.login-page .alert-danger .d-flex,
.register-page .alert-danger .d-flex {
    gap: 12px;
}

.login-page .alert-danger i,
.register-page .alert-danger i {
    color: #dc3545;
    flex-shrink: 0;
    font-size: 22px;
    margin-top: 2px;
}

.login-page .alert-danger strong,
.register-page .alert-danger strong {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 15px;
}

.login-page .alert-danger ul,
.register-page .alert-danger ul {
    padding-left: 22px;
    margin-bottom: 0;
    list-style-type: disc;
}

.login-page .alert-danger ul li,
.register-page .alert-danger ul li {
    margin-bottom: 6px;
    line-height: 1.5;
}

.login-page .alert-danger ul li:last-child,
.register-page .alert-danger ul li:last-child {
    margin-bottom: 0;
}


/* Ana Sayfa - Öne Çıkan Koleksiyon ile Footer Arası Boşluk */
.bag-product.ratio_square {
    margin-bottom: 60px;
}

.home-services-section {
    margin-top: 60px;
    padding-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
    .bag-product.ratio_square {
        margin-bottom: 40px;
    }
    
    .home-services-section {
        margin-top: 40px;
        padding-top: 40px;
    }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
}

.mobile-nav-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 15px;
    min-width: 60px;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    color: var(--theme-color, #77b8b7);
    text-decoration: none;
}

.mobile-nav-link i {
    font-size: 24px;
    margin-bottom: 4px;
    display: block;
}

.mobile-nav-link span:not(.mobile-nav-badge) {
    font-size: 12px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    text-transform: capitalize;
}

.mobile-nav-badge {
    position: absolute;
    top: 0;
    right: 5px;
    background: var(--theme-color, #77b8b7);
    color: #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}

/* Body padding for mobile bottom nav */
@media (max-width: 767px) {
    body {
        padding-bottom: 70px;
    }
}

/* Header mobile buttons fix */
@media (max-width: 767px) {
    .icon-nav ul {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .icon-nav .onhover-div {
        position: relative;
    }
    
    .icon-nav .onhover-div i {
        font-size: 22px;
        color: #333;
    }
    
    .icon-nav .mobile-cart {
        position: relative;
    }
    
    .icon-nav .cart_qty_cls {
        position: absolute;
        top: -8px;
        right: -8px;
        background: var(--theme-color, #77b8b7);
        color: #ffffff;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        font-weight: 600;
        font-family: "Montserrat", sans-serif;
    }
}

/* Ürün Kartları - Eşit Yükseklik */
.basic-product.theme-product-8 .img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 aspect ratio (square) */
    overflow: hidden;
    background-color: #f8f9fa;
}

.basic-product.theme-product-8 .img-wrapper > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}

.basic-product.theme-product-8 .img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.basic-product.theme-product-8 .img-wrapper .cart-info {
    position: absolute;
    z-index: 2;
}


/* Pagination - HTML Tasarımına Uygun */
.product-pagination {
    margin-top: 50px;
    margin-bottom: 30px;
    width: 100%;
}

.product-pagination .theme-paggination-block {
    width: 100%;
}

.product-pagination .theme-paggination-block nav {
    width: 100%;
}

.product-pagination .theme-paggination-block nav ul.pagination {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 8px;
}

.product-pagination .theme-paggination-block nav ul.pagination li.page-item {
    margin: 0 !important;
    list-style: none !important;
}

.product-pagination .theme-paggination-block nav ul.pagination li.page-item a.page-link,
.product-pagination .theme-paggination-block nav ul.pagination li.page-item span.page-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid #e5e7eb !important;
    background-color: #ffffff !important;
    color: #777777 !important;
    text-decoration: none !important;
    border-radius: 0 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease;
    line-height: 1 !important;
    box-shadow: none !important;
}

.product-pagination .theme-paggination-block nav ul.pagination li.page-item a.page-link:hover:not(.disabled) {
    background-color: var(--theme-color, #77b8b7) !important;
    color: #ffffff !important;
    border-color: var(--theme-color, #77b8b7) !important;
}

.product-pagination .theme-paggination-block nav ul.pagination li.page-item.active a.page-link {
    background-color: var(--theme-color, #77b8b7) !important;
    color: #ffffff !important;
    border-color: var(--theme-color, #77b8b7) !important;
}

.product-pagination .theme-paggination-block nav ul.pagination li.page-item.disabled span.page-link {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    background-color: #f5f5f5 !important;
    color: #999999 !important;
}

.product-pagination .theme-paggination-block nav ul.pagination li.page-item a.page-link > span:first-child,
.product-pagination .theme-paggination-block nav ul.pagination li.page-item span.page-link > span:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-pagination .theme-paggination-block nav ul.pagination li.page-item a.page-link span i,
.product-pagination .theme-paggination-block nav ul.pagination li.page-item span.page-link span i {
    font-size: 18px;
    line-height: 1;
}

.product-pagination .theme-paggination-block nav ul.pagination li.page-item a.page-link .sr-only,
.product-pagination .theme-paggination-block nav ul.pagination li.page-item span.page-link .sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .product-pagination {
        margin-top: 40px;
        margin-bottom: 20px;
    }
    
    .product-pagination ul.pagination {
        gap: 6px;
    }
    
    .product-pagination ul.pagination li.page-item a.page-link,
    .product-pagination ul.pagination li.page-item span.page-link {
        min-width: 36px !important;
        height: 36px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 576px) {
    .product-pagination {
        margin-top: 30px;
    }
    
    .product-pagination ul.pagination {
        gap: 4px;
    }
    
    .product-pagination ul.pagination li.page-item a.page-link,
    .product-pagination ul.pagination li.page-item span.page-link {
        min-width: 32px !important;
        height: 32px !important;
        font-size: 12px !important;
    }
}

