.only-mobile {
    display: none;
}

/* Sadece mobilde göster */
@media (max-width: 768px) {
    .only-mobile {
        display: block !important;
    }
}

.footer-section {
    background: #000;
    color: #fff;
    padding: 56px 0 34px;
}

.footer-title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #fff;
    margin-bottom: 0;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #fff;
    margin-bottom: 18px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.25s ease;
    display: inline-block;
    line-height: 1.7;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.footer-social a {
    color: #fff;
    font-size: 21px;
    text-decoration: none;
    opacity: 0.88;
    transition: all 0.25s ease;
}

.footer-social a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-col {
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .footer-grid {
        align-items: flex-start;
    }

    .footer-col.contact-col {
        padding-left: 28px;
    }
}

@media (max-width: 991.98px) {
    .footer-section {
        padding: 42px 0 24px;
    }
}




.cart-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 65px;
    height: 65px;
    background-color: #ffffff; /* beyaz çember */
    color: #28a745; /* yeşil icon */
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
    border: 2px solid #28a745;
}

.cart-float:hover {
    background-color: #ffffff; /* hoverda da beyaz kalır */
    color: #28a745;
    transform: scale(1.1);
}

/* Badge (ürün sayısı) */
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #28a745;
    color: #fff;
    font-size: 12px;
    padding: 4px 7px;
    border-radius: 50%;
    font-weight: bold;
}

.content {
    padding: 40px;
}
