
/* =========================
  NAVBAR STYLING
========================== */
.custom-navbar {
    background: linear-gradient(
        135deg,
        rgb(0, 0, 0) 27%,
        rgb(255, 254, 254) 0%,
        rgb(255, 252, 252) 0%
    );
}

/* Logo text */
.navbar-brand span {
    font-weight: bold;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
}

/* Navbar links */
.navbar-nav .nav-link {
    font-weight: bold;
    margin-left: 90px;
    color: #000000;
}

/* Hover effects */
.navbar-nav .nav-link:hover {
    color: #0c08eb;
}

.navbar-brand span:hover {
    color: #0c08eb;
}

/* Dropdown spacing */
.dropdown {
    padding-right: 20px;
}

/* Login & Cart buttons */
.login-btn,
.cart-btn {
    border-radius: 8px;
}
/*========================
        main
========================*/

.cart-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap
}

.cart-items,
.order-summary {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-sizing: border-box;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.cart-items {
    flex: 1 1 65%;
    min-width: 300px
}

.order-summary {
    flex: 1 1 30%;
    min-width: 250px;
    height: fit-content
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap
}

.cart-item img {
    width: 80px;
    border-radius: 5px
}

.cart-item-details {
    flex: 1;
    margin-left: 20px;
    min-width: 150px
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 10px
}

.btn-checkout {
    background: #5c5cff;
    color: #fff;
    width: 100%;
    margin-top: 10px
}

.btn-checkout:disabled {
    background: #888 !important;
    cursor: not-allowed
}

.remove-btn {
    background: transparent;
    border: none;
    color: #ff4d4f;
    cursor: pointer
}

/* =========================
  FOOTER STYLING
========================== */
footer {
    background-color: #000000;
    color: #ffffff;
    margin-top: 50px;
}

footer h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

footer a {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.footer-logo {
    max-width: 150px;
    height: auto;
}

.social-icons-wrapper {
    display: inline-block;
    text-align: right;
    margin-top: 0.5rem;
}

.social-icon {
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: #ffffff;
    transition: color 0.3s, transform 0.3s;
}

.social-icon:hover {
    color: #ffd700;
    transform: scale(1.2);
}