/* Leva Jewelry — özel stiller */

/* İkon fontları düzgün yüklensin */
[class^="pe-7s-"],
[class*=" pe-7s-"] {
    font-family: "Pe-icon-7-stroke", sans-serif;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa {
    font-family: FontAwesome, sans-serif;
}

.newsletter-content > i,
.footer-links .fa-map-marker,
.footer-links .fa-phone {
    font-size: 1.5rem;
    line-height: 1;
    vertical-align: middle;
}

/* Footer — pasif iletişim CTA */
.leva-newsletter-cta {
    display: flex;
    align-items: stretch;
    border-radius: 5px;
    overflow: hidden;
}

.leva-newsletter-message {
    flex: 1;
    min-height: 52px;
    padding: 14px 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #c8c8c8;
    background-color: #454545;
    pointer-events: none;
    user-select: none;
    display: flex;
    align-items: center;
}

.leva-newsletter-cta .leva-contact-cta-btn {
    flex: 0 0 126px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    text-transform: none;
    text-decoration: none;
    background-color: #eaaa85;
    z-index: 1;
    overflow: hidden;
    letter-spacing: 0;
    position: relative;
}

.leva-newsletter-cta .leva-contact-cta-btn::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    z-index: -1;
    transition: 0.3s linear;
    transform: scale(0);
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.leva-newsletter-cta .leva-contact-cta-btn:hover {
    color: #fff;
}

.leva-newsletter-cta .leva-contact-cta-btn:hover::before {
    transform: scale(1.5);
}

@media only screen and (max-width: 479px) {
    .leva-newsletter-message {
        font-size: 13px;
        padding: 12px 14px;
    }

    .leva-newsletter-cta .leva-contact-cta-btn {
        flex: 0 0 100px;
        font-size: 12px;
    }
}

/* İletişim sayfası — icon kutuları (Font Awesome) */
.contact-wrapper .contact-info .single-contact .icon-box i.fa {
    font-family: FontAwesome !important;
    font-size: 32px !important;
    line-height: 1 !important;
    color: #fff !important;
    display: inline-block;
    width: auto;
    height: auto;
    vertical-align: middle;
}

@media only screen and (max-width: 479px) {
    .contact-wrapper .contact-info .single-contact .icon-box i.fa {
        font-size: 26px !important;
    }
}

/* Kategori ikonları — yerel SVG */
.leva-category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: rgba(234, 170, 133, 0.18);
    color: #eaaa85;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 8px rgba(234, 170, 133, 0.2);
}

.leva-category-icon img {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* SVG currentColor = tema rengi */
.leva-category-icon img[src$=".svg"] {
    filter: none;
}

.leva-category-item a:hover .leva-category-icon {
    background: #eaaa85;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(234, 170, 133, 0.35);
}

.leva-category-item a:hover .leva-category-icon img {
    filter: brightness(0) invert(1);
}

.leva-category-name {
    display: block;
    font-weight: 500;
    font-size: 14px;
}

.leva-feature-icon i,
#scrollUp .fa {
    font-size: 48px;
    color: #eaaa85;
    line-height: 1;
}

#scrollUp .fa {
    font-size: 28px;
    color: #fff;
}

.leva-feature-icon img {
    display: none;
}

/* WhatsApp sabit buton — sol alt */
.leva-whatsapp-float {
    position: fixed;
    left: 20px;
    bottom: 24px;
    z-index: 9999;
    width: 58px;
    height: 58px;
}

.leva-whatsapp-float__btn {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: #25d366;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.leva-whatsapp-float__btn:hover {
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

.leva-whatsapp-float__icon {
    width: 30px;
    height: 30px;
}

.leva-whatsapp-float__ring {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    margin-left: -29px;
    margin-top: -29px;
    border-radius: 50%;
    border: 2px solid #25d366;
    pointer-events: none;
    z-index: 1;
    animation: leva-wa-pulse 2s ease-out infinite;
}

.leva-whatsapp-float__ring--2 {
    animation-delay: 1s;
}

@keyframes leva-wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }
    70% {
        transform: scale(1.45);
        opacity: 0.15;
    }
    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}

@media (max-width: 575px) {
    .leva-whatsapp-float {
        left: 14px;
        bottom: 18px;
        width: 52px;
        height: 52px;
    }

    .leva-whatsapp-float__btn,
    .leva-whatsapp-float__ring {
        width: 52px;
        height: 52px;
    }

    .leva-whatsapp-float__ring {
        margin-left: -26px;
        margin-top: -26px;
    }

    .leva-whatsapp-float__icon {
        width: 26px;
        height: 26px;
    }
}

.leva-product-card .actions-single .action {
    margin: 0 auto;
}

.leva-product-card .content-minimal .ratings,
.leva-product-card .content-minimal .price {
    display: none !important;
}

.leva-quick-modal-body {
    padding: 30px;
}

.leva-quick-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.leva-modal-category {
    color: #474747;
    font-size: 1rem;
    margin-bottom: 0;
}

.leva-modal-category .leva-modal-label {
    font-weight: 600;
    color: #000;
    margin-right: 4px;
}

.leva-modal-category #levaModalCategory {
    font-weight: 400;
    color: #474747;
}

#productQuickModal .modal-dialog {
    max-width: 720px;
}

.leva-product-card .thumb .image {
    cursor: pointer;
    aspect-ratio: 2 / 3;
    background: #f5f5f5;
}

.leva-product-card .thumb .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.leva-product-card .thumb .image img.hover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-wrapper .contact-info .social li:first-child {
    margin-left: 0;
}

.contact-wrapper .contact-info .social li a i {
    line-height: 1;
}

.pagination-mt-30px {
    margin-top: 30px;
}

/* Kategoriler grid */
.leva-categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.leva-category-item {
    text-align: center;
    flex: 0 0 calc(33.333% - 20px);
    max-width: 140px;
}

.leva-category-item a {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.leva-category-item a:hover {
    transform: translateY(-4px);
    color: inherit;
}


@media (min-width: 768px) {
    .leva-category-item {
        flex: 0 0 calc(16.666% - 20px);
    }
}

@media (max-width: 575px) {
    .leva-category-item {
        flex: 0 0 calc(50% - 10px);
    }

    .leva-quick-modal-body {
        padding: 20px 15px;
    }
}
