@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
    --primary-red: #A32A41;
    --secondary-red: #D33755;
    --dark-charcoal: #333333;
    --light-gray: #f4f4f4;
    --border-color: #eeeeee;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background-color: #ffffff;
    color: var(--dark-charcoal);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* Navbar Premium (White Theme) */
.navbar {
    background-color: #ffffff !important;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-red) !important;
    text-transform: uppercase;
    font-size: 24px;
}

.nav-link {
    color: #555 !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    /* Slightly smaller for better fit */
    letter-spacing: 0.5px;
    margin: 0 8px;
    /* Reduced margin to prevent wrapping */
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-red) !important;
    border: 1px solid var(--primary-red) !important;
    color: #ffffff !important;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 25px;
    transition: 0.4s;
    border-radius: 4px;
    /* Slight roundness like eshaistic */
}

.btn-primary:hover {
    background-color: var(--secondary-red) !important;
    border-color: var(--secondary-red) !important;
}

.btn-outline-primary {
    border-color: var(--primary-red) !important;
    color: var(--primary-red) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary-red) !important;
    color: #fff !important;
}

/* Cards (Clean & Spacious) */
.category-card,
.product-card {
    border: 1px solid var(--border-color);
    background: #fff;
    transition: 0.4s;
    border-radius: 0;
    overflow: hidden;
}

.product-card {
    border: none;
    /* Eshaistic uses borderless mostly */
}

.product-card:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.product-card img {
    transition: 0.5s;
    width: 100%;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-name {
    font-weight: 500;
    font-size: 14px;
    color: #333;
    margin-top: 10px;
}

.product-name a:hover {
    color: var(--primary-red);
}

.selling-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-red);
}

.original-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

/* Section Headings */
.section-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-red);
}

/* Footer (White & Information Banners) */
.footer-area {
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px 0;
}

.footer-heading {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-link {
    color: #666;
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
}

.footer-link:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-red);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
}

/* Inputs */
.form-control {
    border-radius: 4px;
    padding: 10px 15px;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-red);
}

/* Layout Utilities */
.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.bg-light {
    background-color: var(--light-gray) !important;
}

.underline {
    height: 3px;
    width: 60px;
    background-color: var(--primary-red);
    margin-bottom: 20px;
}

/* Breadcrumb Theme */
.breadcrumb-section {
    background-color: var(--primary-red) !important;
    padding: 15px 0;
}

.breadcrumb-section h6,
.breadcrumb-section a {
    color: #ffffff !important;
    text-decoration: none !important;
    margin-bottom: 0;
}

.breadcrumb-section a {
    opacity: 0.8;
}

.breadcrumb-section a:hover {
    opacity: 1;
}