/* Standardized Typography */
:root {
    --primary-bg: #FFFFFF;
    --secondary-bg: #F9F9F9;
    --heading-color: #D87058;
    --subheading-color: #7C3626;
    --body-color: #2B3840;
    --cta-bg: #2B3840;
    --footer-bg: #4C5B61;
    --highlight-color: #F47D3A;
}

/* Headings */
h1, h2, h3 {
    color: var(--heading-color) !important;
    font-family: "Helvetica", sans-serif !important;
    font-weight: bold !important;
}

h1 {
    font-size: 40px !important;
    line-height: 1.4 !important;
}

h2 {
    font-size: 36px !important;
    line-height: 1.3 !important;
}

h3 {
    font-size: 24px !important;
    line-height: 1.2;
}

/* Body Text */
body, p {
    font-size: 18px;
    line-height: 1.6;
}

/* CTA Button */
.cta-button {
    font-size: 16px;
    color: #fff;
    background-color: var(--cta-bg);
    padding: 12px 24px;
    border-radius: 30px;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--highlight-color);
}



/* Container for Centering Content */
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navbar Styling */
.banner {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* Scrolling Banner Styling */
.scrolling-banner {
    overflow: hidden;
    background-color: #000;
    color: #fff;
    white-space: nowrap;
    width: 100%;
    padding: 10px 0;
    position: relative;
}

.scrolling-banner p {
    display: inline-block;
    padding-left: 100%;
    /* Starts the text off-screen to the right */
    animation: scrollText 15s linear infinite;
    /* Adjust speed by changing '15s' */
    font-size: 16px;
    color: #fff;
    margin: 0;
}

/* Keyframes for scrolling effect */
@keyframes scrollText {
    from {
        transform: translateX(0);
        /* Start position */
    }

    to {
        transform: translateX(-100%);
        /* End position, scrolling off-screen to the left */
    }
}

.navbar {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    transition: all 0.3s ease;
    margin-bottom: 0 !important;
}

.navbar a {
    color: #D87058;
}

.navbar a:hover {
    color: black;
}

.navbar-header {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    margin-right: 10px;
}

.brand-name {
    font-size: 16px;
    font-weight: bold;
    color: black;
    margin-left: -15px;
}

.navbar-links {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-grow: 1;
}

.navbar-links li {
    margin: 0 15px;
}

.navbar-links a {
    color: black;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

.navbar-links a:hover {
    color: #d87058;
}

.navbar-icons {
    display: flex;
    gap: 15px;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    /* Ensures visibility */
    padding: 15px 0;
}

/* Dropdown menu styling */
/* .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    transition: opacity 0.3s ease;
    opacity: 0;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
}

.dropdown-menu > li > a:hover {
    background-color: #D87058;
    color: #fff;
}

 */


 .nav>li>a:hover{
    background-color: transparent;
}

.navbar-brand {
    padding: 0;
    margin-top: 15px;
}

.navbar-brand img {
    border-radius: 8px;
    width: 150px;
    height: auto;
}



.confirmation-page {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    /* margin-top: 20px; */
    margin-bottom: 20px;
}

.confirmation-page h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.confirmation-page p {
    font-size: 16px;
    color: #555;
    margin: 5px 0;
}

.order-details-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin: 20px auto;
    max-width: 900px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.order-details {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    margin-right: 20px;
}

.details-section {
    flex: 1;
    margin-right: 20px;
}

.details-section h3 {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.details-section h3 i {
    margin-right: 10px;
    color: #D87058; /* Highlight the icon color */
    font-size: 18px;
}

.details-section p {
    margin: 5px 0;
    font-size: 14px;
    color: #333;
}

.product-summary {
    margin-top: 20px;
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.product-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
}

.product-info {
    text-align: left;
}

.product-info p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.product-price {
    font-size: 14px;
    color: #333;
    font-weight: bold;
}

.order-summary-container {
    display: flex;
    justify-content: space-between;
    margin: 20px auto;
    max-width: 1200px;
    gap: 20px;
    margin-left: 245px;
}

/* Container for order information */
.order-info-container {
    display: flex;
    justify-content: space-between;
    margin: 20px auto;
    max-width: 1200px;
    gap: 20px;
    margin-left: 245px;
}

/* Order List Styling */
.order-list {
    flex: 2;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.order-list h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.order-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.item-details {
    flex: 1;
    margin-left: 15px;
    text-align: left;
}

.item-details p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

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

/* Order Summary Styling */
.order-summary {
    flex: 1;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-right: 40px;
    text-align: left;
}

.order-summary h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.summary-item.total {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}



/* Styling for individual summary boxes */
.summary-box {
    flex: 1;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Box title styling */
.summary-box h3 {
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

/* Icon styling for the box titles */
.summary-box h3 i {
    margin-right: 10px;
    color: #007bff; /* Icon color */
    font-size: 20px;
}

/* Text inside the box */
.summary-box p {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
}































/* Footer Styling */
.footer {
    background-color: #4C5B61; /* Dark background color */
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    color: #ffffff; /* White text color */
}

.footer-content {
    display: flex; /* Flexbox layout */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: space-between; /* Equal space between columns */
    align-items: flex-start; /* Align items to the top */
    max-width: 1200px; /* Centered container width */
    margin: 0 auto;
    gap: 10px; /* Reduced gap between columns */
}

.footer-logo-section {
    flex: 1 1 300px;
    text-align: left;
    margin-bottom: 20px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 14px;
    margin-bottom: 20px;
    color: #ffffff;
    width: 90%;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-social-icons a {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 30px;
}

.footer-social-icons a:hover {
    color: #d1d5d8; /* Lighter hover effect */
}

.footer-links {
    display: flex;
    flex-wrap: wrap; /* Ensure wrapping for smaller screens */
    gap: 20px; /* Reduced space between columns */
    text-align: left;
    flex: 3 1 auto; /* Adjust size based on available space */
}

.footer-column {
    flex: 1 1 150px; /* Equal size columns */
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #d1d5d8;
}

/* Move Legal Section Up */
.footer .footer-column:last-child {
    align-self: flex-start; /* Align "Legal" with other columns */
}

/* Bottom Section */
.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Stack items vertically on small screens */
        text-align: center;
        gap: 20px; /* Adjust gap for smaller screens */
    }

    .footer-column {
        text-align: center; /* Center-align columns */
    }

    .footer-social-icons {
        justify-content: center; /* Center social icons */
    }
}





/* Cart section */
/* Overall Cart Styling */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Adjust opacity as needed */
    opacity: 0;
    /* Initially hidden */
    visibility: hidden;
    /* Initially hidden */
    transition: opacity 0.3s ease;
    z-index: 999;
    /* Make sure it's above other content */
}

.cart-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: white;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    padding: 20px;
    z-index: 1000;
    transition: right 0.3s ease;
    font-family: Arial, sans-serif;
}

.cart-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.cart-content {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    max-height: 60vh;
    overflow-y: auto;
}

/* Cart Item Styling */
.cart-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    background-color: #fafafa;
}

.cart-item-img {
    width: 80px;
    height: auto;
    margin-right: 15px;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.cart-item-color {
    color: #666;
    margin-bottom: 8px;
}

/* Quantity Styling */
.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-btn {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background-color: #f5f5f5;
    color: #333;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.quantity-btn:hover {
    background-color: #e0e0e0;
}

.quantity-input {
    width: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
}
.checkout-btn {
    background-color: #d87058;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
}

/* Price Styling */
.cart-item-price {
    color: #333;
    font-weight: bold;
    margin-top: 10px;
}

/* Footer Styling */
.cart-footer {
    text-align: center;
    padding-top: 20px;
}

.cart-subtotal {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.cart-shipping-info {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 20px;
}

.view-cart-btn {
    background-color: #d87058;
    color: white;
    padding: 12px 25px;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.view-cart-btn:hover {
    background-color: #b2573e;
}

/* Close Button Styling */
.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #d87058;
}

/* Close Button Styling */
.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #d87058;
}

/* Default settings for the hamburger menu (hidden for larger screens) */
.hamburger-menu {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
}

/* Navbar links styling for desktop */
#navbarMenu {
    display: flex;
    gap: 20px;
}

.excel-download {
    display: none;  /* Hide by default (only shown in mobile view) */
}

/* Mobile-specific styles */
@media (max-width: 767px) {

    /* Show hamburger menu button on mobile */
    .hamburger-menu {
        display: block;
        position: absolute;
        left: 10px;
        top: 15px;
        z-index: 1001;
    }

    /* Hide navbar links by default */
    #navbarMenu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        padding-top: 60px;
        /* Adjust for the menu icon */
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        margin: 0;
    }

    /* Menu open state */
    #navbarMenu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    /* Style for links in the sliding menu */
    #navbarMenu li {
        margin: 15px 0;
        text-align: center;
    }

    #navbarMenu li a {
        font-size: 1.2rem;
        color: #333;
    }

    /* Optional: style for icons inside the mobile menu */
    #navbarMenu li a i {
        margin-right: 8px;
    }

    .cart-container {
        width: 90%;
        right: -90%;
    }

    .cart-footer {
        text-align: start;
    }
}


















/* Mobile responsive view */
@media (max-width: 768px) {
    /* Center and stack everything vertically for smaller screens */
    .confirmation-page {
        padding: 10px;
        text-align: left; /* Adjust to prevent overcrowding on smaller screens */
    }

    .confirmation-page h1 {
        font-size: 20px; /* Reduce font size for smaller screens */
        
    }

    .confirmation-page p {
        font-size: 14px;
    }

    .order-details-container {
        flex-direction: column; /* Stack sections vertically */
        gap: 10px; /* Reduce the gap between sections */
        padding: 15px; /* Adjust padding for smaller screens */
        margin: 0 auto;
    }

    .details-section {
        margin-right: 0; /* Remove margin for stacked view */
    }

    .details-section h3 {
        font-size: 14px; /* Adjust font size */
    }

    .details-section p {
        font-size: 12px; /* Adjust font size */
    }

    .product-item {
        flex-direction: column; /* Stack image and text */
        align-items: flex-start;
    }

    .product-item img {
        width: 70px; /* Adjust image size */
        height: 70px;
        margin-bottom: 10px; /* Add spacing between image and text */
    }

    .product-info p {
        font-size: 12px; /* Adjust font size */
    }

    .product-price {
        font-size: 14px; /* Adjust font size */
    }

    .order-summary-container,
    .order-info-container {
        flex-direction: column; /* Stack order summary and order info */
        gap: 10px; /* Reduce gap between sections */
        max-width: 100%; /* Adjust width for smaller screens */
        padding: 10px;
        margin: 0; /* Remove large margins */
    }

    .order-list,
    .order-summary {
        margin: 0 auto; /* Center align the sections */
        width: 100%; /* Take full width */
        box-shadow: none; /* Simplify the shadow for smaller screens */
        padding: 15px;
    }

    .order-list h3,
    .order-summary h3 {
        font-size: 16px; /* Adjust font size */
        margin-bottom: 10px;
    }

    .order-item {
        flex-direction: column; /* Stack content vertically */
        align-items: flex-start;
        padding: 10px 0;
    }

    .order-item img {
        width: 70px; /* Adjust image size */
        height: 70px;
        margin-bottom: 10px;
    }

    .item-details {
        margin-left: 0; /* Remove left margin for stacked view */
    }

    .item-details p {
        font-size: 12px; /* Adjust font size */
    }

    .item-price {
        font-size: 14px; /* Adjust font size */
    }

    .summary-item {
        font-size: 12px; /* Adjust font size */
    }

    .summary-item.total {
        font-size: 14px;
    }

    /* Summary box adjustments */
    .summary-box {
        width: 100%; /* Take full width */
        margin-bottom: 10px;
        box-shadow: none; /* Simplify for smaller screens */
        padding: 15px;
    }

    .summary-box h3 {
        font-size: 16px; /* Adjust font size */
        margin-bottom: 10px;
    }

    .summary-box p {
        font-size: 12px; /* Adjust font size */
    }
}




/* Search Modal Styling */
.search-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
}

.search-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.search-modal-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.search-modal-content input {
    width: 80%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.search-modal-content button {
    padding: 10px 20px;
    background-color: #c4422a;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.search-modal-content button:hover {
    background-color: #a83224;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: black;
}

/* Error message styling */
.error-message {
    color: #d9534f; /* Red color for error text */
    margin-top: 10px;
    font-size: 14px;
    display: none; /* Initially hidden */
}
