body { font-family: 'Inter', sans-serif; background-color: #f8fafc; }
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.logo-img{
    width: 5%;
    border-radius: 50px;
    margin-right:2%;
    margin-left: 1%;
}
nav.navbar.navbar-expand-lg {

    width: 100% !important;
    z-index: 9999 !important;
    background-color: #f8f9fa !important; /* Ова е bg-light бојата */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.padding{
    padding-top:5%;
}
.full-footer {
    width: 100%;
    background-color: #f8f9fa; 
    border-top: 1px solid #ddd;
    padding-top: 50px;
    margin-top: 50px;
    color: #333;
    
}


.footer-inner {
    max-width: 1200px; 
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px 40px 20px;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #68b7de;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #68b7de;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #555;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #68b7de;
}

.secure-badge {
    margin-top: 15px;
    background: #e7f3ff;
    padding: 10px;
    border-radius: 5px;
    font-size: 13px;
    color: #68b7de;
    display: inline-block;
}

.footer-copyright {
    width: 100%;
    background-color: #eee;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    color: #777;
}
.logo-img2{
    width: 30%;
    border-radius: 60px;
    margin-bottom: 10px;
    margin-top: -5%;
}

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .container-flex, .container-flex.reverse {
        flex-direction: column; 
        text-align: center;
    }
}
@media screen and (max-width: 768px) {
.logo-img{
    width: 20%;
}
}


.cart-container { max-width: 1000px; margin: 50px auto; padding: 20px; }

.cart-table { width: 100%; border-collapse: collapse; background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }

.cart-table th { background: #f1f5f9; padding: 15px; text-align: left; color: #64748b; font-size: 14px; text-transform: uppercase; }

.cart-table td { padding: 15px; border-bottom: 1px solid #e2e8f0; }

.remove-item { color: #ef4444; cursor: pointer; font-weight: bold; border: none; background: none; }

.cart-totals { width: 350px; margin-left: auto; margin-top: 30px; background: white; padding: 25px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }

.total-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #f1f5f9; }

.total-row.final { font-weight: bold; font-size: 1.2rem; color: #2d3748; border-bottom: none; }

.checkout-btn { width: 100%; background: #63b3ed; color: white; border: none; padding: 15px; border-radius: 6px; font-weight: 600; cursor: pointer; margin-top: 20px; transition: 0.3s; }

.checkout-btn:hover { background: #4299e1; }



/* ... Твојот постоечки код ... */

/* RESPONSIVE CART */

@media (max-width: 768px) {
    .cart-container {
        padding: 10px;
        margin: 20px auto;
    }
    .padding{
    padding-top:20%;
}

    /* Ја криеме насловот на табелата на мобилен */
    .cart-table thead {
        display: none;
    }

    /* Секој ред во табелата станува посебна картичка */
    .cart-table, .cart-table tbody, .cart-table tr, .cart-table td {
        display: block;
        width: 100%;
    }

    .cart-table tr {
        margin-bottom: 20px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 10px;
        position: relative;
        background: #fff;
    }

    .cart-table td {
        text-align: right;
        padding: 10px 5px;
        border-bottom: 1px solid #f1f5f9;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
    }

    .cart-table td:last-child {
        border-bottom: none;
    }

    /* Додаваме етикети (Labels) пред секој податок на мобилен */
    .cart-table td::before {
        content: attr(data-label); /* Ова влече текст од HTML-от */
        font-weight: bold;
        color: #64748b;
        text-transform: uppercase;
        font-size: 12px;
        float: left;
    }

    /* Копчето за бришење го ставаме во аголот */
    .remove-item {
        position: absolute;
        top: 5px;
        right: 10px;
        font-size: 18px;
    }

    /* Делот со тоталите на мобилен треба да е со цела ширина */
    .cart-totals {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }
}
.floating-cart {
    color: rgba(0, 0, 0, 0.55) !important; 
    transition: color 0.3s ease;
    text-decoration: none;
    margin-right: 13%;
}

.floating-cart:hover {
    color: #68b7de !important; 
}


@media (max-width: 991px) {
    .floating-cart {
        position: fixed !important;
        bottom: 25px !important;
        right: 20px !important;
        background-color: #68b7de !important; 
        color: white !important;
        padding: 12px 20px !important;
        border-radius: 50px !important;
        z-index: 10000 !important;
        display: flex !important; 
        align-items: center;
        box-shadow: 0px 6px 20px rgba(0,0,0,0.25) !important;
        margin-right: 0;
    }

   
    .floating-cart svg {
        fill: white !important;
    }
}