/* General Styles */
/*body {*/
/*    font-family: Arial, sans-serif;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*}*/

/*.cart-items {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 20px;*/
/*}*/

/*.cart-item {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    padding: 10px;*/
/*    border: 1px solid #dee2e6;*/
/*    border-radius: 8px;*/
/*    background-color: #f8f9fa;*/
/*}*/

/*.cart-item__thumb {*/
/*    flex-shrink: 0;*/
/*    margin-right: 15px;*/
/*}*/

/*.cart-item__thumb img {*/
/*    width: 100px;*/
/*    height: auto;*/
/*    border-radius: 8px;*/
/*}*/

/*.cart-item__details {*/
/*    flex: 1;*/
/*}*/

/*.cart-item__name {*/
/*    display: block;*/
/*    font-size: 16px;*/
/*    color: #333;*/
/*    text-decoration: none;*/
/*    margin-bottom: 5px;*/
/*}*/

/*.cart-item__price {*/
/*    font-size: 14px;*/
/*    font-weight: bold;*/
/*    color: #333;*/
/*}*/

/*.cart-item__remove {*/
/*    flex-shrink: 0;*/
/*}*/

/*.remove-button {*/
/*    background-color: #dc3545;*/
/*    color: white;*/
/*    border: none;*/
/*    padding: 8px 12px;*/
/*    border-radius: 4px;*/
/*    cursor: pointer;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 5px;*/
/*}*/

/*.remove-button:hover {*/
/*    background-color: #c82333;*/
/*}*/

/*.order-summary {*/
/*    border: 1px solid #dee2e6;*/
/*    border-radius: 8px;*/
/*    padding: 20px;*/
/*    background-color: #f8f9fa;*/
/*}*/

/*.order-summary__total {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    margin-bottom: 15px;*/
/*}*/

/*.order-summary__price {*/
/*    font-weight: bold;*/
/*    color: #333;*/
/*}*/

/*.order-summary__coupon {*/
/*    display: flex;*/
/*    gap: 10px;*/
/*    align-items: center;*/
/*}*/

/*.coupon-input {*/
/*    flex: 1;*/
/*    padding: 10px;*/
/*    border: 1px solid #ced4da;*/
/*    border-radius: 4px;*/
/*}*/

/*.apply-coupon-button {*/
/*    background-color: #007bff;*/
/*    color: white;*/
/*    border: none;*/
/*    padding: 10px 20px;*/
/*    border-radius: 4px;*/
/*    cursor: pointer;*/
/*}*/

/*.apply-coupon-button:hover {*/
/*    background-color: #0056b3;*/
/*}*/







/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

.breadcrumb-container {
    background-color: #f8f9fa;
    padding: 10px 20px;
}

.breadcrumb-nav {
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.breadcrumb-nav a {
    color: #007bff;
    text-decoration: none;
}

.section-title {
    font-size: 24px;
    margin-bottom: 15px ;
     margin-top: 15px ;
    color: #333;
    font-weight: bold;
}

.login1 {
    color: black; /* Default color */
     cursor: default; /* Default cursor */
   
}

.login1:hover {
    color: blue; /* Change text color on hover */
  
     cursor: pointer; /* Show pointer cursor on hover */

}

/* Checkout Form */
.checkout-form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.checkout-form .form-group {
  
    margin-bottom: 15px;
}

.checkout-form input {
     
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.checkout-form .col-half {
    
    width: 48%;
    float: left;
}

.checkout-form .col-half:nth-child(2) {
    margin-left: 4%;
    
}

/* Buttons */
.checkout-button {
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.checkout-button:hover {
    background-color: #218838;
}

.apply-coupon-button {
    background-color: #007bff;
    color: #fff;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
}

.apply-coupon-button:hover {
    background-color: #0056b3;
}

.coupon-input {
    padding: 8px;
    width: calc(100% - 120px);
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Order Details */
.order-details-container {
    
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.order-items .order-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.order-item-image {
    width: 10em;
    height: 10em;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.order-item-details {
    flex-grow: 1;
}

.order-item-details h3 {
    font-size: 18px;
    margin: 0;
    font-weight: normal;
}

.order-item-price {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.order-summary {
    margin-top: 20px;
    border-top: 1px solid #eaeaea;
    padding-top: 15px;
}

.order-summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}

.order-summary-item h5 {
    margin: 0;
    font-weight: normal;
}

@media (max-width: 768px) {
    .checkout-form .col-half {
        width: 100%;
        margin-left: 0;
    }

    .order-items .order-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-item-image {
        margin-bottom: 10px;
    }
}







/*accordian*/

/* Accordion Styling */
/*.accordion {*/
/*    margin-bottom: 20px;*/
/*}*/

/*.section-title {*/
/*    font-size: 24px;*/
/*    color: #333;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    cursor: pointer;*/
/*}*/

/*.accordion-toggle {*/
/*    margin-right: 10px;*/
/*    font-size: 30px;*/
/*    transition: transform 0.3s;*/
/*}*/

/* When hovered over the title, the '+' symbol should rotate */
/*.section-title:hover .accordion-toggle {*/
    transform: rotate(45deg); /* Change + to x */
/*}*/

/* Address List Accordion Content */
/*.address-list {*/
/*    overflow: hidden;*/
/*    max-height: 0;*/
/*    transition: max-height 0.5s ease;*/
/*    background-color: #fafafa;*/
/*    border-radius: 8px;*/
/*    padding: 0 15px;*/
/*    margin-top: 10px;*/
/*    border: 1px solid #ddd;*/
/*}*/

/* Show the content smoothly */
/*.address-list.visible {*/
    max-height: 1000px; /* Arbitrary high value to allow expansion */
/*    padding: 15px;*/
/*}*/

/* Add Delivery Address Button */
/*.btn-primary {*/
/*    padding: 10px 20px;*/
/*    margin-top: 10px;*/
/*    border: none;*/
/*    border-radius: 4px;*/
/*    background-color: #28a745;*/
/*    color: #fff;*/
/*    cursor: pointer;*/
/*    font-size: 16px;*/
/*}*/

/* Hover and active states */
/*.btn-primary:hover {*/
/*    background-color: #218838;*/
/*}*/

/* Responsive Design */
/*@media (max-width: 600px) {*/
/*    .section-title {*/
/*        font-size: 20px;*/
/*    }*/
/*    .btn-primary {*/
/*        font-size: 14px;*/
/*    }*/
/*}*/
