:root {
    --primary-color: #8B5E3C;
    --primary-dark: #3C1E12;
    --text-color: #333333;
    --heading-color: #1a1a1a;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 70px 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--light-bg);
}

/* Whatsapp Button  */
.whatsapp-float {
    position: fixed;
    width: 58px;
    height: 58px;
    bottom: 30px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 28px;  
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: all 0.3s ease;
    
    animation: pulse 2s infinite; 
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    padding: 14px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Typography */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--white);
    color: var(--text-color);
    border: 1px solid var(--white);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--heading-color);
    border: 1px solid var(--heading-color);
}

.btn-secondary:hover {
    background-color: var(--heading-color);
    color: var(--white);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: left;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
}

.logo-img {
    height: 90px;
    margin-right: 5px;
}

.nav-menu ul {
    display: flex;
}

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

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-color);
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

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

.header-icons a {
    font-size: 1.2rem;
    margin-left: 20px;
    color: var(--heading-color);
    position: relative;
}

.header-icons a:hover {
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1570222094114-28a9d8896b74?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: left;
}

.hero-content {
    width: 100%;
}

.hero-text {
    max-width: 600px;
}

.hero-brand {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.hero-brand img {
    height: 30px;
    filter: invert(1);
    margin-right: 15px;
}

.hero-brand span {
    margin: 0 15px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: var(--font-body);
    /* As per standard modern hero */
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* Welcome Section */
.title-separator {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
}

.tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.section-desc {
    max-width: 1000px;
    margin: 0 auto 50px;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: transparent;
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: #fcece4;
    /* Light orange/brown tint */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.9rem;
    color: #777;
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
    width: 100%;
    padding: 0 20px;
}

.category-card {
    position: relative;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;

}

.section-title {
    color: #3C1E12;
    font-family: 'Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-seri'
}


.category-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px 20px;
    background: linear-gradient(to right, #4A9FD8, #5CB3E8);
    color: var(--white);
    text-align: center;
}

.category-overlay h3 {
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.categories-section {
    margin-bottom: 100px;
   
}

/* Brands Section */
.brand-grid {
    max-width: 1560px;
    margin: auto;
    padding: 30px 10px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.brand-row {
    display: grid;
    gap: 13px;
    /* margin-bottom: 1px; */
}

/* ───────── ROW 1 ───────── */
.brand-row-1 {
    grid-template-columns: 432fr 477fr 390fr;
    align-items: start;

}

/* ───────── ROW 2 ───────── */
.brand-row-2 {
    grid-template-columns: 509fr 244fr 543fr;
    align-items: end;
}

/* Brand Item */
.brand-item {
    position: relative;
    overflow: hidden;
    border-radius: 1px;
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.brand-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}


.brand-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.brand-item:hover {
    transform: translateY(-4px);
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.15),
        0 6px 12px rgba(0, 0, 0, 0.08);
}

.brand-item:hover img {
    transform: scale(1.08);
}

.brand-item:hover::after {
    background: rgba(0, 0, 0, 0.2);
}



/* Custom Heights */
.item-1 {
    height: 299px;
}

.item-2 {
    height: 259px;
}

.item-3 {
    height: 299px;
}

.item-4 {
    height: 230px;
}

.item-5 {
    height: 274px;
    margin-top: -62px;
}

.item-6 {
    height: 230px;
}

/* brand spotlight text */
.brand-spotlight .container {
    padding: 30px 20px 10px;
     text-align: center;
  margin: 0 auto;
}

/* New Arrivals */
.new-arrivals {
    background-color: #fff;
    width: 100%;
}

.new-arrivals .section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
}

.new-arrivals .section-title {
    color: #A0543A;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin: 0;
    text-transform: capitalize;
}

.new-arrivals .nav-btn {
    background: #fff;
    border: 1px solid #e0e0e0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.new-arrivals .nav-btn:hover {
    background-color: #3C1E12;
    color: var(--white);
    border-color: #3C1E12;
}

.view-all-container {
    text-align: center;
    margin-bottom: 50px;
}

.btn-brown {
    background-color: #A0522D;
    color: #fff;
    padding: 10px 35px;
    border-radius: 5px;
    font-weight: 500;
    border: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-brown:hover {
    background-color: #3C1E12;
    color: #fff;
    transform: translateY(-2px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 10px;
}

.product-card {
    background: var(--white);
    transition: var(--transition);
    border: none;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: 180px;
    background-color: #f9f9f9;
    /* Slightly lighter than grey */
    overflow: hidden;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.product-image img {
    width: auto;
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--white);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #aaa;
    transition: var(--transition);
}

.wishlist-btn:hover {
    color: #e74c3c;
    /* Heart red on hover */
}

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

.product-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.product-info .category {
    font-size: 0.8rem;
    color: #999;
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.price {
    font-weight: 700;
    color: #C07040;
    font-size: 1.1rem;
}

.view-details-btn {
    background-color: #A0522D;
    color: #fff;
    font-size: 0.8rem;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: capitalize;
    transition: var(--transition);
}

.view-details-btn:hover {
    background-color: #3C1E12;
    color: #fff;
}

/* Offer badge on product image */
.offer-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
}

/* Pricing group – stacks discounted + original vertically */
.price-group {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.original-price {
    font-size: 0.8rem;
    color: #aaa;
    text-decoration: line-through;
}

/* Empty state when no products */
.no-products-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #aaa;
}

.no-products-msg i {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    color: #ddd;
}

.no-products-msg p {
    font-size: 1rem;
    color: #999;
}

/* Insights */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.section-title {
    color: #A0543A;
}


.insight-card {
    background: var(--white);
    display: flex;
    flex-direction: column;
    /* Or row if horizontal */
}

.insight-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.insight-content {
    padding: 25px;
    border: 1px solid var(--border-color);
    border-top: none;
}

.tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.insight-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 15px;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Testimonials */
.testimonial-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 40px auto;
}

.slider-btn {
    background: none;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: #ccc;
    font-size: 1rem;
}

.testimonial-card {
    flex: 1;
    padding: 0 40px;
    text-align: center;
}

.client-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #FFD700;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
    color: var(--heading-color);
}

.client-info h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.client-info span {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary-color);
}

/* CTA Banner */
.cta-banner {
    background-color: #3e2723;
    padding: 10px 0;
    margin-top: 0;
    text-align: center;
}

.cta-banner h2 {
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
    font-weight: 300;
    margin: 0;
    text-transform: uppercase;
}



/* Responsive */
/* ── 1024px (large tablet landscape) ── */
@media (max-width: 1024px) {

    /* Brand grid: scale down heights on large tablet */
    .brand-row-1 .item-1 {
        height: 200px;
    }

    .brand-row-1 .item-2 {
        height: 178px;
    }

    .brand-row-1 .item-3 {
        height: 200px;
    }

    .brand-row-2 .item-4 {
        height: 160px;
    }

    .brand-row-2 .item-5 {
        height: 174px;
    }

    .brand-row-2 .item-6 {
        height: 160px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .categories-grid {
        gap: 20px;
        padding: 0 30px;
    }
}

/* ── 768px (tablet portrait) ── */
@media (max-width: 768px) {
    .section-padding {
        padding: 45px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .section-desc {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }

    /* Categories: 2 columns on tablet */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 10px;
    }

    .category-card {
        height: 230px;
    }

    /* Brand section */
    .brand-spotlight {
        padding: 40px 0;
    }

    .brand-grid {
        padding: 20px 10px;
        gap: 10px;
    }

   
    .brand-row-1,
    .brand-row-2 {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .brand-row-1 .item-1,
    .brand-row-1 .item-2,
    .brand-row-1 .item-3,
    .brand-row-2 .item-4,
    .brand-row-2 .item-5,
    .brand-row-2 .item-6 {
        height: 190px;
        margin-top: 0 !important;
      
    }

    /* Products */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Insights */
    .insights-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 0 20px;
    }

    .review-text {
        font-size: 1rem;
    }

    /* CTA */
    .cta-banner h2 {
        font-size: 1.5rem;
    }

    /* WhatsApp button */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 24px;
        bottom: 18px;
        right: 18px;
    }
}

/* ── 576px (large phone / small tablet) ── */
@media (max-width: 576px) {
    .section-padding {
        padding: 35px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .tagline {
        font-size: 1rem;
    }

    /* Categories: 1-column */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 0;
    }

    .category-card {
        height: 210px;
    }

    .categories-section {
        margin-bottom: 50px;
    }

    /*  Products:  */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card {
        padding: 10px;
    }

    /* Brand items uniform height */
    .brand-row-1 .item-1,
    .brand-row-1 .item-2,
    .brand-row-1 .item-3,
    .brand-row-2 .item-4,
    .brand-row-2 .item-5,
    .brand-row-2 .item-6 {
        height: 170px;
    }

    /* Testimonial */
    .testimonial-slider {
        flex-direction: column;
        gap: 15px;
    }

    .testimonial-card {
        padding: 0;
    }

    .review-text {
        font-size: 0.95rem;
    }

    .slider-btn {
        display: none;
    }

    /* CTA */
    .cta-banner h2 {
        font-size: 1.3rem;
        padding: 0 15px;
    }

    /* WhatsApp button */
    .whatsapp-float {
        width: 46px;
        height: 46px;
        font-size: 22px;
        bottom: 15px;
        right: 15px;
    }
}

/* ── 480px (most phones portrait) ── */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        height: 200px;
    }

    /* Products: single column on smallest phones */
    .products-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    /* Brand grid: single column on small mobile */
    .brand-row-1,
    .brand-row-2 {
        grid-template-columns: 1fr;
    }

    .brand-row-1 .item-3 {
        grid-column: auto;
    }

    .brand-row-1 .item-1,
    .brand-row-1 .item-2,
    .brand-row-1 .item-3,
    .brand-row-2 .item-4,
    .brand-row-2 .item-5,
    .brand-row-2 .item-6 {
        height: 160px;
        margin-top: 0 !important;
    }

    .cta-banner h2 {
        font-size: 1.2rem;
        padding: 0 15px;
    }
}

/* ── 375px (small phones) ── */
@media (max-width: 375px) {
    .section-title {
        font-size: 1.35rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .brand-row-1 .item-1,
    .brand-row-1 .item-2,
    .brand-row-1 .item-3,
    .brand-row-2 .item-4,
    .brand-row-2 .item-5,
    .brand-row-2 .item-6 {
        height: 140px;
    }

    .whatsapp-float {
        width: 42px;
        height: 42px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Login Page Specific Styles */
.login-section {
    padding: 80px 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.login-container {
    background: #fff;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);

}

.login-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #8B5E3C;
    margin-bottom: 30px;
    font-family: 'Lato', sans-serif;
    
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 8px;
    font-family: 'Lato', sans-serif;
}

.login-form .required {
    color: #e74c3c;
    margin-left: 2px;
}

.login-form input[type="text"],
.login-form input[type="password"],
.login-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s;
}

.login-form input:focus {
    outline: none;
    border-color: #999;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-container input {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.forgot-password {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background-color: #3C1E12;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background-color 0.3s;
    font-family: 'Lato', sans-serif;
}

.btn-login:hover {
    background-color: #333;
}

.register-link {
    text-align: center;
    margin-top: 25px;
}

.register-link a {
    color: #333;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.register-link a:hover {
    border-color: #333;

}

.input-icon-wrapper {
    position: relative;
    width: 100%;
}

.input-icon-wrapper input {
    width: 100%;
    padding-right: 40px !important;
    /* Force space for icon */
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
    font-size: 0.9rem;
    transition: color 0.3s;
    z-index: 5;

}

.toggle-password:hover {
    color: #333;
}

/* 404 Page Styles */
.error-page-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-color: #fff;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 20px;
}

.error-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.error-description {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn-error {
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    padding: 15px 40px;
    border-radius: 4px;
    /* Slight radius to match inputs */
}

.btn-error:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.error-message {
    color: #e74c3c;
    font-size: 13px;
    display: none;
}


/* Response for smaller screens */
@media (max-width: 768px) {
    .error-code {
        font-size: 5rem;
    }

    .error-title {
        font-size: 1.8rem;
    }
}


.text-danger {
    color: #e74c3c;
}

.fw-semibold {
    font-weight: 600;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.me-1 {
    margin-right: 0.25rem;
}