/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- Color & Font Variables --- */
:root {
    --light-cream: #FFF3E3; /* Adjusted for better visibility from image */
    
    --maroon: #5B0202;
    --dark-brown: #200E01;
    --text-color: #3A3A3A;
    --gray-text: #666;
    --light-gray-bg: #F4F5F7;
    --font-family-primary: 'Poppins', sans-serif;
}



/* --- Header & Navigation --- 
.top-banner {
    background-color: var(--maroon);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 0.9rem;
}

.navbar {
    background-color: var(--light-cream);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--dark-brown);
}

.nav-link {
    color: var(--dark-brown);
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--dark-red);
}

.navbar-nav .nav-link.active {
    color: var(--dark-red);
    font-weight: 600;
}

.header-icons .nav-link {
    font-size: 1.2rem;
} */






/* --- Hero Section (Breadcrumb) --- */
.hero-section {
    .hero-section {
    background-image: url('https://www.transparenttextures.com/patterns/dark-denim-3.png'), linear-gradient(to right, var(--dark-brown), #331a02);
    padding: 30px 0 30px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
}

.hero-section h1 {
    font-weight: 600;
}


.hero-sectionbc .breadcrumb {
    background-color: transparent;
    justify-content: center;
    padding: 0;
    margin: 15px 0 0 0;
}

.hero-sectionbc .breadcrumb-item {
    color: white;
}

.hero-sectionbc .breadcrumb-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-sectionbc .breadcrumb-item a:hover {
    color: var(--light-cream);
    text-decoration: underline;
}

.hero-sectionbc .breadcrumb-item.active {
    color: white;
    opacity: 0.8;
}

/* Breadcrumb separator styling */
.hero-sectionbc .breadcrumb-item + .breadcrumb-item::before {
    color: white;
    content: "/";
    opacity: 0.7;
}

/* --- Features Bar --- */
.features-bar {
    background-color: var(--light-cream);
    padding: 4rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--dark-brown);
}

.feature-item h6 {
    margin-bottom: 2px;
    font-weight: 600;
}

.feature-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--gray-text);
}

/* --- Footer --- *
.footer {
    background-color: var(--dark-brown);
    color: #F4F5F7;
    padding: 4rem 0 2rem;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer p,
.footer a {
    color: #F4F5F7;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .list-unstyled li {
    margin-bottom: 1rem;
}

.footer .newsletter-form .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #F4F5F7;
    color: white;
    border-radius: 0;
}

.footer .newsletter-form .form-control::placeholder {
    color: #ccc;
}

.footer .newsletter-form .btn-subscribe {
    background: none;
    border: none;
    border-bottom: 1px solid #F4F5F7;
    color: white;
    padding-left: 0;
    padding-right: 0;
    font-weight: 600;
}

.footer .copyright {
    border-top: 1px solid var(--text-color);
    padding-top: 1.5rem;
    margin-top: 2rem;
    font-size: 0.9rem;
}*/







/* Footer Updates *
.footer .contact-details p {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.footer .contact-details i {
    width: 16px;
    text-align: center;
}

.footer .social-links .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #F4F5F7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .social-links .social-link:hover {
    background: var(--light-cream);
    color: var(--dark-brown);
    transform: translateY(-2px);
}

.footer .payment-methods i {
    font-size: 1.5rem;
    color: #F4F5F7;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer .payment-methods i:hover {
    opacity: 1;
}*/



/* --- Footer Responsive Enhancements --- */
.footer {
    background-color: var(--dark-brown);
    color: #F4F5F7;
    padding: 4rem 0 2rem;
}

.footer .container {
    max-width: 1200px;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer p,
.footer a {
    color: #F4F5F7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--light-cream);
    text-decoration: underline;
}

.footer .list-unstyled li {
    margin-bottom: 0.8rem;
}

/* Logo Section */
.footer .navbar-brand {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer .navbar-brand img {
    height: 35px;
    width: auto;
    max-width: 120px;
}

/* Contact Details */
.footer .contact-details {
    margin-top: 1.5rem;
}

.footer .contact-details p {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
}

.footer .contact-details i {
    width: 16px;
    text-align: center;
    margin-right: 8px;
}

/* Newsletter Form */
.footer .newsletter-form {
    position: relative;
    margin-bottom: 1.5rem;
}

.footer .newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 110px 12px 15px;
    border-radius: 5px;
    width: 100%;
    font-size: 0.9rem;
}

.footer .newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer .newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--light-cream);
    box-shadow: 0 0 0 0.2rem rgba(237, 231, 199, 0.1);
    color: white;
}

.footer .newsletter-form .btn-subscribe {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background: var(--light-cream);
    color: var(--dark-brown);
    border: none;
    padding: 0 15px;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.footer .newsletter-form .btn-subscribe:hover {
    background: #ffffff;
    color: var(--dark-brown);
    transform: translateY(-1px);
}

/* Social Links */
.footer .social-links h6 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.footer .social-links .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #F4F5F7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .social-links .social-link:hover {
    background: var(--light-cream);
    color: var(--dark-brown);
    transform: translateY(-2px);
}

/* Copyright Section */
.footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .copyright a {
    color: var(--light-cream);
    font-weight: 500;
}

.footer .copyright a:hover {
    text-decoration: underline;
}

/* Payment Methods */
.footer .payment-methods {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer .payment-methods span {
    font-size: 0.85rem;
    margin-right: 5px;
}

.footer .payment-methods i {
    font-size: 1.5rem;
    color: #F4F5F7;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer .payment-methods i:hover {
    opacity: 1;
}

/* --- Responsive Footer --- */

/* Tablets and below */
@media (max-width: 991.98px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer .row > div {
        margin-bottom: 2rem;
    }
    
    .footer h5 {
        margin-bottom: 1rem;
        font-size: 1.05rem;
    }
    
    /* Center align all content on tablets */
    .footer .col-lg-3,
    .footer .col-lg-2,
    .footer .col-lg-3,
    .footer .col-lg-4 {
        text-align: center;
    }
    
    /* Contact details alignment */
    .footer .contact-details {
        display: inline-block;
        text-align: left;
    }
    
    /* Newsletter form full width */
    .footer .newsletter-form {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Social links center alignment */
    .footer .social-links .d-flex {
        justify-content: center;
    }
    
    /* Copyright section stack on mobile */
    .footer .copyright .row {
        flex-direction: column;
        text-align: center;
    }
    
    .footer .copyright .col-md-6 {
        width: 100%;
    }
    
    .footer .copyright .text-md-end {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    /* Payment methods center alignment */
    .footer .payment-methods {
        justify-content: center;
        margin-top: 0.5rem;
    }
}

/* Mobile devices */
@media (max-width: 767.98px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer .row > div {
        margin-bottom: 2rem;
    }
    
    /* Further reduce spacing on very small screens */
    .footer .list-unstyled li {
        margin-bottom: 0.6rem;
    }
    
    /* Newsletter form adjustments */
    .footer .newsletter-form .form-control {
        padding: 10px 100px 10px 12px;
        font-size: 0.85rem;
    }
    
    .footer .newsletter-form .btn-subscribe {
        padding: 0 12px;
        font-size: 0.8rem;
    }
    
    /* Social links spacing */
    .footer .social-links .d-flex {
        gap: 15px;
    }
    
    /* Payment methods spacing */
    .footer .payment-methods {
        gap: 5px;
    }
    
    .footer .payment-methods i {
        font-size: 1.3rem;
    }
}

/* Extra small devices */
@media (max-width: 575.98px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer h5 {
        font-size: 1rem;
    }
    
    .footer p, 
    .footer a {
        font-size: 0.85rem;
    }
    
    /* Stack newsletter form elements */
    .footer .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .footer .newsletter-form .form-control {
        padding: 10px 12px;
        width: 100%;
    }
    
    .footer .newsletter-form .btn-subscribe {
        position: static;
        width: 100%;
        padding: 10px;
    }
    
    /* Reduce social icon size */
    .footer .social-links .social-link {
        width: 32px;
        height: 32px;
    }
    
    /* Payment methods in two rows if needed */
    .footer .payment-methods {
        justify-content: center;
        gap: 8px;
    }
    
    .footer .payment-methods i {
        font-size: 1.2rem;
    }
}

/* Large screens optimization */
@media (min-width: 1200px) {
    .footer .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}


/* Cart Offcanvas Updates */
.cart-summary .btn-brand {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--dark-brown) 100%);
    border: none;
    color: white;
    padding: 10px;
    font-weight: 600;
}

.cart-summary .btn-brand:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(91, 2, 2, 0.3);
}

.cart-summary .btn-outline-dark {
    border: 2px solid #dee2e6;
    color: #495057;
    padding: 10px;
    font-weight: 500;
}

.cart-summary .btn-outline-dark:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
}

/* Newsletter Form Updates */
.newsletter-form {
    position: relative;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding-right: 100px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--light-cream);
    box-shadow: 0 0 0 0.2rem rgba(237, 231, 199, 0.1);
    color: white;
}

.newsletter-form .btn-subscribe {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--light-cream);
    color: var(--dark-brown);
    border: none;
    padding: 0 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-form .btn-subscribe:hover {
    background: #ffffff;
    color: var(--dark-brown);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer .contact-details {
        text-align: center;
    }
    
    .footer .social-links {
        text-align: center;
    }
    
    .footer .social-links .d-flex {
        justify-content: center;
    }
    
    .copyright .text-md-end {
        text-align: left !important;
        margin-top: 1rem;
    }
    
    .payment-methods {
        text-align: center;
    }
}






/* Additional styles for informational pages */
.page-hero {
    background-image: url('https://www.transparenttextures.com/patterns/dark-denim-3.png'), linear-gradient(to right, var(--dark-brown), #331a02);
    padding: 80px 0 50px;
    color: white;
}

.page-content {
    padding: 60px 0;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h3 {
    color: var(--dark-brown);
    margin-bottom: 20px;
    font-weight: 600;
}

.policy-section h5 {
    color: var(--dark-brown);
    margin-top: 25px;
    margin-bottom: 15px;
}

.policy-section p, .policy-section li {
    color: var(--text-color);
    line-height: 1.7;
}

.policy-section ul {
    padding-left: 20px;
}

.policy-section li {
    margin-bottom: 10px;
}

.info-card {
    background-color: var(--light-gray-bg);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-card h4 {
    color: var(--dark-brown);
    margin-bottom: 15px;
    font-weight: 600;
}

.info-card i {
    font-size: 2.5rem;
    color: var(--maroon);
    margin-bottom: 15px;
}

.table-custom {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.steps-timeline {
    position: relative;
}

.steps-timeline:before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--light-cream);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--maroon);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
}

.process-step h5 {
    color: var(--dark-brown);
    margin: 15px 0 10px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray-text);
}

@media (max-width: 768px) {
    .steps-timeline:before {
        display: none;
    }
    
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-content {
        padding: 40px 0;
    }
}