/* ===== GENERAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 16px;
    background-color: #d4a762;
    color: white;
}

.btn:hover {
    background-color: #c29550;
}

/* ===== HEADER STYLES ===== */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
    background-color: #f8f8f8;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 15px;
}

.contact-info i {
    margin-right: 5px;
    color: #d4a762;
}

.social-icons a {
    color: #555;
    margin-left: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #d4a762;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    position: relative;
    margin: 0 10px;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.nav-menu li a i {
    margin-right: 5px;
}

.nav-menu li a:hover {
    color: #d4a762;
}

.nav-menu li.active a {
    color: #d4a762;
}

.cart-link .cart-count {
    background-color: #d4a762;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    margin-left: 5px;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* ===== CART SECTION ===== */
.cart-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #222;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #d4a762;
}

.cart-items {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    font-weight:bold ;
    color: #c82333;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(159, 79, 42, 0.1);
    border-radius: 8px;
    transition: transform 0.3s;
}

.cart-item:hover {
    transform: translateY(-3px);
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.item-info {
    flex: 1;
}

.item-info h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #333;
}

.item-price {
    color: #d4a762;
    font-weight:bold;
    margin-bottom: 10px;
    display: block;
    font-family:'Times New Roman', Times, serif;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.qty-btn:hover {
    background-color: #f5f5f5;
}

.qty-input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.remove-btn {
    background: none;
    border: none;
    color: #ff6b6b;
    font-size: 15px;
    cursor: pointer;
    transition: color 0.3s;
    padding: 10px ;
    margin-top: 20px;
}

.remove-btn:hover {
    color: #100e0e;
}

.cart-total {
    text-align: right;
    margin: 20px 0;
    font-size: 30px;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;

}

.cart-total span {
    color: #d4a762;
}

/* Customer Info Form */
#customerInfo {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-top: 30px;
}

#customerInfo h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

#customerInfo div {
    margin-bottom: 15px;
}

#customerInfo label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

#customerInfo input,
#customerInfo select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

#customerInfo input:focus,
#customerInfo select:focus {
    border-color: #d4a762;
    outline: none;
}

/* Footer Styles */
.footer {
    background-color: #222;
    color: #ddd;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col {
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #d4a762;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #d4a762;
}

.footer-col p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-col i {
    margin-right: 10px;
    color: #d4a762;
}

.newsletter-form input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: #d4a762;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #c29550;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding: 20px 0;
    text-align: center;
}



.cart-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.cart-item img {
    margin-right: 20px;
    border-radius: 8px;
}

.item-info h4 {
    margin: 0;
    font-size: 18px;
}

.item-info p {
    margin: 5px 0;
}

.remove-btn {
    padding: 5px 10px;
    background-color: #dc3545;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.remove-btn:hover {
    background-color: #c82333;
}



.quantity-control {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.quantity-control button {
    width: 32px;
    height: 32px;
    font-size: 20px;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.quantity-control button:hover {
    background-color: #0056b3;
}

.quantity-input {
    width: 50px;
    text-align: center;
    padding: 6px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
}




/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .navbar .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
        width: 100%;
    }

    .hamburger {
        display: block;
        align-self: flex-end;
        margin-top: 10px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item img {
        margin-bottom: 15px;
    }

    .item-info {
        width: 100%;
    }

    .cart-total {
        font-size: 24px;
        text-align: left;
    }

    #customerInfo {
        padding: 20px;
    }

    #customerInfo input {
        padding: 10px;
        font-size: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .quantity-control button {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    .quantity-input {
        width: 40px;
        padding: 4px;
        font-size: 14px;
    }

    .footer-logo {
        max-width: 120px;
    }

    .section-title {
        font-size: 26px;
    }

    .cart-total {
        font-size: 20px;
    }

    .top-bar .container,
    .navbar .container {
        padding: 0 10px;
    }
}





