html {
  height: 100%
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Top bar */
.top-bar {
    background-color: #f8f8f8;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

.top-bar .contact-info a,
.top-bar .user-actions a {
    text-decoration: none;
    color: #333;
    margin-right: 15px;
}

.top-bar .contact-info a:hover,
.top-bar .user-actions a:hover {
    color: #e61d35;
}

#top {
    background-color: transparent;
    border-bottom: none;
}

.main-header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.main-header #logo img {
    max-height: 60px;
}

.search-bar {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
}

.search-bar input {
    width: 100%;
    padding: 8px;
    border: none;
    outline: none;
}

.search-bar button {
    background: #e61d35;
    border: none;
    padding: 8px 12px;
    color: white;
    cursor: pointer;
}

.search-bar button:hover {
    background: #c81a2e;
}

.main-navigation {
    background: #e61d35;
    padding: 10px 0;
}

.main-navigation .nav {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.main-navigation .nav li {
    margin: 0 15px;
}

.main-navigation .nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 5px 10px;
}

.main-navigation .nav a:hover {
    text-decoration: underline;
}

.shopping-cart a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.shopping-cart a:hover {
    color: #e61d35;
}

.nav-link {
    color: #e61d35;
}

.nav-link:hover {
    color: #e61d35;
    opacity: 0.7;
}

.breadcrumb {
    border: none;
    border-radius: 0;
    background-color: transparent;
}

.breadcrumb > li.breadcrumb-item:after {
    top: 25%;
    width: 10px;
    height: 10px;
}

.breadcrumb > li.breadcrumb-item > a {
    color: #5f5f5f;
}

.btn {
    display: inline-block;
    padding: 10px 35px;
    font-family: var(--bs-btn-font-family, Arial, sans-serif);
    font-size: var(--bs-btn-font-size, 1rem);
    font-weight: var(--bs-btn-font-weight, 600);
    text-transform: uppercase;
    line-height: var(--bs-btn-line-height, 1.5);
    color: var(--bs-btn-color, #ffffff);
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 2px solid transparent;
    border-radius: 0px;
    background-color: #e61d35;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hover effect */
.btn:hover {
    background-color: #e61d35;
    border-color: #e61d35;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Active effect */
.btn:active {
    transform: translateY(1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* Focus (for accessibility) */
.btn:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Button-style links */
.btn.button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 10px;
}

/* Secondary button */
.btn.button-link.secondary {
    background-color: #e61d35;
    color: #fff;
}

.btn.button-link.secondary:hover {
    background-color: #e61d35;
}

/* Icon inside button */
.btn.button-link i {
    margin-right: 8px;
}

.banner-image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 70vh;
}

.banner-text {
    display: none;
}

.carousel {
    border: none;
    border-radius: 0;
}

/* Category Box Styling */
.category-box {
    display: block;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.category-box:hover {
    background: #e61d35;
    color: white;
    transform: translateY(-2px);
}

.category-box.active {
    background: #0056b3;
    color: white;
}

/* Subcategories */
.subcategories {
    margin-top: 8px;
    padding-left: 15px;
}

.subcategory {
    display: block;
    text-decoration: none;
    color: #666;
    padding: 3px 0;
    transition: color 0.3s ease-in-out;
}

.subcategory:hover {
    color: #e61d35;
}

.subcategory.active {
    font-weight: bold;
    color: #0056b3;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    text-align: center;
    padding: 15px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Product Image */
.product-card .image img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.product-card:hover .image img {
    transform: scale(1.05);
}

/* Product Title */
.product-card h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 10px;
}

.product-card h4 a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease-in-out;
}

.product-card h4 a:hover {
    color: #e61d35;
}

/* Price Styling */
.price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #28a745;
    margin-top: 8px;
}

.price-old {
    text-decoration: line-through;
    color: #dc3545;
    margin-left: 5px;
    font-size: 0.9rem;
}

/* Rating Stars */
.rating {
    margin-top: 5px;
}

.rating i {
    color: #ffcc00;
    font-size: 1rem;
}

/* Button Group */
.button-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.button-group button {
    background: #e61d35;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.button-group button:hover {
    background: #0056b3;
}

.button-group button i {
    font-size: 1rem;
}

#form-product .form-control:focus {
    box-shadow: none;
    border-color: gray;
}


/* ====================== */
/* MODERN PRODUCT STYLING */
/* ====================== */

/* Base Product Container (keep existing structure) */
#product-info {
    background: transparent;
    padding: 0;
}

/* Modern Breadcrumbs */
.breadcrumb {
    background: transparent;
    padding: 15px 0;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: #5f5f5f;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: #e61d35;
    text-decoration: none;
}

/* Product Header Section */
.product-header {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

/* Image Gallery */
.image.magnific-popup {
    flex: 1;
    min-width: 300px;
}

.main-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #f9f9f9;
    padding: 15px;
}

.thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnails a {
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.thumbnails a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(230, 29, 53, 0.2);
}

/* Product Info Section */
.product-info-section {
    flex: 1;
    min-width: 300px;
}

/* Title */
h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

/* Price Box */
.price-box {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    display: inline-block;
}

.price-new {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e61d35;
}

.price-old {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

/* Action Buttons */
.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 25px 0;
}

.btn-cart {
    background: #e61d35;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 8px rgba(230, 29, 53, 0.3);
}

.btn-cart:hover {
    background: #c81a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(230, 29, 53, 0.4);
}

.btn-wishlist, .btn-compare {
    background: #fff;
    border: 1px solid #e61d35;
    color: #e61d35;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-wishlist:hover, .btn-compare:hover {
    background: #e61d35;
    color: #fff;
}

/* Product Tabs */
.product-tabs {
    margin-top: 40px;
}

.nav-tabs {
    border-bottom: 2px solid #f0f0f0;
}

.nav-link {
    color: #666;
    font-weight: 600;
    padding: 12px 25px;
    border: none;
    position: relative;
}

.nav-link.active {
    color: #e61d35;
    background: transparent;
}

.nav-link.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e61d35;
}

.tab-content {
    padding: 25px 0;
    line-height: 1.7;
    color: #555;
}

/* Attributes Table */
.attribute-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.attribute-table tr:nth-child(even) {
    background: #f9f9f9;
}

.attribute-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

/* Quantity Input */
.quantity-group {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.quantity-input {
    width: 70px;
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin: 0 10px;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    
    .product-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-cart {
        width: 100%;
    }
}

/* ====================== */
/* CATEGORY PAGE STYLING  */
/* ====================== */

/* Base Container */
#product-category {
    padding: 20px 0;
}

/* Category Header */
#content > h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* Category Image & Description */
.category-image-desc {
    margin-bottom: 30px;
}

.category-image-desc .img-thumbnail {
    border-radius: 8px;
    padding: 5px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.category-image-desc .img-thumbnail:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.category-description {
    padding-left: 20px;
    line-height: 1.7;
    color: #555;
}

/* Refine Categories Section */
.refine-categories h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.refine-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.refine-categories li a {
    display: block;
    padding: 10px 15px;
    background: #f9f9f9;
    border-radius: 6px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.refine-categories li a:hover {
    background: #e61d35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(230,29,53,0.2);
}

/* Product Filter Controls */
.product-filter-controls {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.btn-group .btn-light {
    border: 1px solid #ddd;
    color: #555;
    transition: all 0.3s ease;
}

.btn-group .btn-light:hover,
.btn-group .btn-light.active {
    background: #e61d35;
    color: white;
    border-color: #e61d35;
}

.input-group-text {
    background: #fff;
    color: #555;
    font-weight: 500;
}

.form-select {
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-select:focus {
    border-color: #e61d35;
    box-shadow: 0 0 0 0.25rem rgba(230,29,53,0.1);
}

/* Compare Button */
#compare-total {
    background: #e61d35;
    border: none;
    padding: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#compare-total:hover {
    background: #c81a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(230,29,53,0.3);
}

/* Product Grid */
#product-list {
    margin-bottom: 30px;
}

/* Product Items (matches your product card style) */
.product-layout {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    padding: 15px;
}

.product-layout:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.product-layout .image {
    text-align: center;
    margin-bottom: 15px;
}

.product-layout .image img {
    max-width: 100%;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.product-layout:hover .image img {
    transform: scale(1.03);
}

.product-layout h4 a {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-layout h4 a:hover {
    color: #e61d35;
}

.product-layout .price {
    color: #e61d35;
    font-weight: 700;
    font-size: 1.1rem;
}

.product-layout .price-old {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-left: 5px;
}

/* Pagination */
.pagination {
    margin-top: 30px;
}

.page-item .page-link {
    color: #555;
    border: 1px solid #ddd;
    margin: 0 3px;
    border-radius: 4px!important;
}

.page-item.active .page-link {
    background: #e61d35;
    border-color: #e61d35;
}

.page-item .page-link:hover {
    color: #e61d35;
    background: #f9f9f9;
}

/* Results Text */
.results {
    color: #777;
    font-size: 0.9rem;
    margin-top: 30px;
}

/* No Results */
.text-no-results {
    color: #777;
    margin-bottom: 20px;
}

/* Continue Button */
.btn-continue {
    background: #e61d35;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-continue:hover {
    background: #c81a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(230,29,53,0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .category-image-desc .row {
        flex-direction: column;
    }
    
    .category-description {
        padding-left: 0;
        margin-top: 15px;
    }
    
    .product-filter-controls .row > div {
        margin-bottom: 15px;
    }
    
    #product-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    #product-list {
        grid-template-columns: 1fr;
    }
    
    .refine-categories ul {
        grid-template-columns: 1fr;
    }
}

/* ====================== */
/* SHOPPING CART STYLING  */
/* ====================== */

/* Alert Messages */
.alert {
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 25px;
    border: none;
}

.alert-danger {
    background-color: #fee;
    color: #d9534f;
}

.alert-success {
    background-color: #eff;
    color: #5cb85c;
}

.alert-info {
    background-color: #eef;
    color: #5bc0de;
}

.alert i {
    margin-right: 10px;
}

/* Page Header */
#shopping-cart h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* Cart Table */
#output-cart {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.table {
    margin-bottom: 0;
}

.table thead th {
    background: #f8f8f8;
    font-weight: 600;
    padding: 15px;
    border-bottom: 2px solid #eee;
}

.table tbody td {
    padding: 20px;
    vertical-align: middle;
    border-color: #f0f0f0;
}

/* Product Image */
.img-thumbnail {
    border-radius: 8px;
    padding: 5px;
    background: #fff;
    max-width: 80px;
    transition: all 0.3s ease;
}

.img-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Product Name */
.table a {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.table a:hover {
    color: #e61d35;
}

/* Product Details */
.list-unstyled {
    margin-top: 10px;
    color: #666;
    font-size: 0.9rem;
}

.list-unstyled small {
    display: block;
    margin-bottom: 3px;
}

.text-danger {
    color: #e61d35!important;
}

/* Quantity Input */
.input-group {
    max-width: 180px;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 6px 0 0 6px!important;
    text-align: center;
    font-weight: 600;
}

.input-group .btn {
    border-radius: 0 6px 6px 0;
    padding: 10px 15px;
}

.btn-primary {
    background-color: #e61d35;
    border-color: #e61d35;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c81a2e;
    border-color: #c81a2e;
    transform: translateY(-1px);
}

.btn-danger {
    background-color: #fff;
    border-color: #e61d35;
    color: #e61d35;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: #e61d35;
    color: #fff;
}

/* Price Columns */
.text-end {
    font-weight: 600;
}

/* Totals Section */
#checkout-total tr:last-child td {
    border-bottom: none;
}

#checkout-total td {
    padding: 15px;
    font-size: 1.1rem;
}

#checkout-total strong {
    color: #333;
}

/* Next Steps Section */
#accordion {
    margin-bottom: 30px;
}

#accordion .card {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

#accordion .card-header {
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
    padding: 0;
}

#accordion .card-header button {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#accordion .card-header button:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f078";
    font-size: 0.8rem;
}

#accordion .card-header button.collapsed:after {
    content: "\f054";
}

#accordion .card-body {
    padding: 20px;
}

/* Action Buttons */
.row > .col > .btn {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-light {
    background: #fff;
    border: 1px solid #ddd;
    color: #555;
}

.btn-light:hover {
    background: #f8f8f8;
    color: #e61d35;
    border-color: #e61d35;
}

.btn-primary {
    box-shadow: 0 4px 8px rgba(230,29,53,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(230,29,53,0.4);
}

/* Empty Cart */
.text-no-results {
    color: #777;
    margin-bottom: 25px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .table thead {
        display: none;
    }
    
    .table tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 15px;
    }
    
    .table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border: none;
    }
    
    .table tbody td:before {
        content: attr(data-label);
        font-weight: 600;
        margin-right: 15px;
        color: #555;
    }
    
    .table tbody td.text-center {
        justify-content: center;
    }
    
    .table tbody td.text-end {
        justify-content: flex-end;
    }
    
    .input-group {
        max-width: 100%;
    }
    
    .row > .col {
        margin-bottom: 15px;
        text-align: center!important;
    }
    
    .row > .col > .btn {
        width: 100%;
    }
}

/* ====================== */
/* CHECKOUT PAGE STYLING  */
/* ====================== */

/* Base Container */
#checkout-checkout {
    padding: 20px 0 40px;
}

/* Page Header */
#content > h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* Two-Column Layout */
.checkout-columns {
    display: flex;
    gap: 30px;
}

/* Form Sections */
.checkout-section {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.checkout-section h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Form Elements */
.form-control {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 15px;
    height: auto;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #e61d35;
    box-shadow: 0 0 0 0.25rem rgba(230,29,53,0.1);
}

.form-select {
    background-image: none;
    padding: 12px 15px;
    height: auto;
}

.form-label {
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

/* Radio & Checkbox Styles */
.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0.2em;
}

.form-check-label {
    margin-left: 8px;
    color: #555;
}

.form-check-input:checked {
    background-color: #e61d35;
    border-color: #e61d35;
}

/* Buttons */
.btn-primary {
    background-color: #e61d35;
    border-color: #e61d35;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(230,29,53,0.3);
}

.btn-primary:hover {
    background-color: #c81a2e;
    border-color: #c81a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(230,29,53,0.4);
}

.btn-light {
    background: #f8f8f8;
    border: 1px solid #ddd;
    color: #555;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: #eee;
    color: #e61d35;
    border-color: #e61d35;
}

/* Order Summary */
.order-summary {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.order-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.order-summary-total {
    font-weight: 700;
    font-size: 1.1rem;
    color: #222;
}

/* Payment Methods */
.payment-methods {
    margin-top: 20px;
}

.payment-method {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: #e61d35;
    box-shadow: 0 4px 10px rgba(230,29,53,0.1);
}

/* Shipping Methods */
.shipping-method {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.shipping-method:hover {
    border-color: #e61d35;
    box-shadow: 0 4px 10px rgba(230,29,53,0.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .checkout-columns {
        flex-direction: column;
    }
    
    .checkout-section {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .form-control, .form-select {
        padding: 10px 12px;
    }
    
    .checkout-section h2 {
        font-size: 1.3rem;
    }
}

/* Form Validation */
.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Loading States */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    border-radius: 10px;
}

/* Accordion Styles (for collapsed sections) */
.accordion-button:not(.collapsed) {
    background-color: rgba(230,29,53,0.05);
    color: #e61d35;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(230,29,53,0.1);
    border-color: #e61d35;
}

/*ABOUT US PAGE*/
.about-us-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .about-hero {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
  }
  .why-choose-us ul, .science-section ul {
    list-style-type: none;
    padding-left: 0;
  }
  .why-choose-us li, .science-section li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
  }
  .why-choose-us li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #A855F7;
  }
  .science-section li:before {
    content: "✔️";
    position: absolute;
    left: 0;
  }
  .cta-button {
    display: inline-block;
    background-color: #A855F7;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
  }
  /*END ABOUT US PAGE*/