/* 
 * MP Khadi Gramodyog E-Commerce Portal - Core Design System
 * Primary: #7A4E1D (Khadi Brown)
 * Secondary: #D9B36A (Golden Beige)
 * Accent: #2E7D32 (Accent Green)
 * Background: #FAF8F3 (Soft Cream)
 * Text: #333333 (Charcoal)
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary-color: #7A4E1D;
    --primary-dark: #5C3A15;
    --primary-light: #F4EBE1;
    --secondary-color: #D9B36A;
    --secondary-dark: #BFA059;
    --secondary-light: #F9F3E6;
    --accent-color: #2E7D32;
    --accent-light: #E8F5E9;
    --accent-dark: #1B5E20;
    --bg-cream: #FAF8F3;
    --text-dark: #333333;
    --text-muted: #777777;
    --border-color: #E6E1D8;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(122, 78, 29, 0.05);
    --shadow-md: 0 6px 16px rgba(122, 78, 29, 0.08);
    --shadow-lg: 0 12px 30px rgba(122, 78, 29, 0.12);
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Container Width Constraints for Large Screens */
.container-fluid {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1200px) {
    .container-fluid {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1600px) {
    .container-fluid {
        max-width: 1500px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Buttons */
.btn-khadi-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
}
.btn-khadi-primary:hover, .btn-khadi-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 78, 29, 0.2);
}

.btn-khadi-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
}
.btn-khadi-secondary:hover, .btn-khadi-secondary:focus {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 78, 29, 0.15);
}

.btn-khadi-accent {
    background-color: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
}
.btn-khadi-accent:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.25);
}

.btn-khadi-beige {
    background-color: var(--secondary-color);
    color: var(--primary-dark);
    border: 2px solid var(--secondary-color);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
}
.btn-khadi-beige:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 179, 106, 0.25);
}

/* Header & Navbar */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    font-size: 0.85rem;
    padding: 0.4rem 0;
}
.top-bar a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition-fast);
}
.top-bar a:hover {
    color: var(--secondary-color);
}

.navbar-khadi {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 0.8rem 0;
}
.navbar-brand img {
    height: 55px;
    object-fit: contain;
}
.nav-link-khadi {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: var(--transition-fast);
}
.nav-link-khadi:hover, .nav-link-khadi.active {
    color: var(--primary-color) !important;
}
.nav-link-khadi::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 8px;
    right: 8px;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}
.nav-link-khadi:hover::after, .nav-link-khadi.active::after {
    transform: scaleX(1);
}

/* Search Dropdown / Autosuggestions */
.search-container {
    position: relative;
}
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0 0 10px 10px;
    box-shadow: var(--shadow-md);
    z-index: 1050;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}
.suggestion-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--bg-cream);
}
.suggestion-item:last-child {
    border-bottom: none;
}
.suggestion-item:hover {
    background-color: var(--bg-cream);
}
.suggestion-item img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
}

/* Home Hero Slider */
.hero-slider {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}
.carousel-item-khadi {
    height: 480px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(51, 33, 12, 0.85) 0%, rgba(51, 33, 12, 0.4) 100%);
}
.carousel-caption-custom {
    position: absolute;
    bottom: 10%;
    left: 8%;
    right: 8%;
    color: var(--white);
    max-width: 550px;
    z-index: 10;
}
.carousel-caption-custom h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.carousel-caption-custom p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Category Cards */
.category-card {
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    height: 100%;
    text-decoration: none;
    display: block;
    color: var(--text-dark);
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
    color: var(--primary-color);
}
.category-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: var(--transition-smooth);
}
.category-card:hover .category-icon-wrapper {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Scrollable Category Carousel */
.category-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.carousel-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.carousel-nav-btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

.carousel-nav-btn:active {
    transform: scale(0.95);
}

.category-carousel-container {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.category-carousel {
    display: flex;
    gap: 1.5rem;
    padding: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    background: var(--white);
    border-radius: 12px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.category-carousel::-webkit-scrollbar {
    display: none;
}

.category-carousel {
    -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
}

.category-carousel-item {
    flex-shrink: 0;
    text-align: center;
    min-width: 140px;
}

.category-circle-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.category-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.category-circle-link:hover .category-circle {
    transform: scale(1.1) translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
    text-align: center;
    line-height: 1.2;
}

.category-circle-link:hover .category-name {
    color: var(--primary-color);
}

/* Product Cards */
.product-card {
    background-color: var(--white);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}
.product-img-wrapper {
    position: relative;
    padding-top: 60%; /* 1:1 Aspect Ratio */
    background-color: #F5F5F5;
    overflow: hidden;
}
.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: var(--transition-smooth);
}
.product-card:hover .product-img {
    transform: scale(1.06);
}
.product-badge-group {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ondc-badge {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.7rem;
    padding: 0.35rem 0.6rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.organic-badge {
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 0.7rem;
    padding: 0.35rem 0.6rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.discount-badge {
    background-color: var(--secondary-color);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.6rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    z-index: 5;
}
.wishlist-btn:hover {
    color: #E91E63;
    transform: scale(1.1);
}
.wishlist-btn.active {
    color: #E91E63;
}
.product-info {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.product-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.product-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.35;
    height: 2.7rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product-title a {
    color: var(--text-dark);
    text-decoration: none;
}
.product-title a:hover {
    color: var(--primary-color);
}
.rating-stars {
    color: var(--secondary-color);
    font-size: 0.85rem;
}
.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 0.85rem;
}
.price-group{
    display: flex;
    align-items: baseline;
    justify-content: space-between
}
.price-current {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}
.price-old {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* ONDC Network certified banner style */
.ondc-certified-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    color: var(--white);
    margin-bottom: 3.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}
.ondc-certified-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}
.ondc-certified-banner img {
    max-height: 60px;
    filter: brightness(0) invert(1);
}

/* Artisan Story Segment */
.artisan-section {
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 3.5rem 2rem;
    margin-bottom: 3.5rem;
    box-shadow: var(--shadow-sm);
}
.artisan-image {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
    max-height: 400px;
    width: 100%;
}
.artisan-stat-card {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}
.artisan-stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}
.artisan-stat-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Details Page Magnifier & Gallery */
.gallery-thumbnail {
    width: 75px;
    height: 75px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    padding: 2px;
    cursor: pointer;
    transition: var(--transition-fast);
    object-fit: cover;
}
.gallery-thumbnail.active, .gallery-thumbnail:hover {
    border-color: var(--primary-color);
}
.main-gallery-wrapper {
    position: relative;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    overflow: hidden;
    padding-top: 100%; /* aspect ratio 1:1 */
}
.main-gallery-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.15s ease-out;
}
.variant-selector-btn {
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 6px;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}
.variant-selector-btn.active, .variant-selector-btn:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
    color: var(--primary-color);
}

/* Review System */
.review-score-box {
    background-color: var(--primary-light);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: var(--primary-dark);
}
.review-bar-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}
.review-progress-bar {
    height: 8px;
    background-color: var(--border-color);
    border-radius: 4px;
    flex-grow: 1;
    overflow: hidden;
}
.review-progress-fill {
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 4px;
}

/* Order Progress Timeline */
.tracking-wrapper {
    position: relative;
    padding: 2rem 0;
}
.tracking-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}
.tracking-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 4px;
    background: var(--border-color);
}
.tracking-item {
    position: relative;
    padding-left: 45px;
    padding-bottom: 2rem;
}
.tracking-item:last-child {
    padding-bottom: 0;
}
.tracking-icon {
    position: absolute;
    left: 8px;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--border-color);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    z-index: 1;
    transition: var(--transition-smooth);
}
.tracking-item.completed .tracking-icon {
    background-color: var(--accent-color);
    box-shadow: 0 0 0 2px var(--accent-color);
    color: var(--white);
}
.tracking-item.active .tracking-icon {
    background-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-color);
    color: var(--white);
    animation: trackingPulse 1.5s infinite alternate;
}
.tracking-content {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-sm);
}
.tracking-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}
@keyframes trackingPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

/* Multistep Checkout Progress Header */
.checkout-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 2.5rem;
}
.checkout-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--border-color);
    z-index: 0;
}
.checkout-step-line {
    position: absolute;
    top: 24px;
    left: 0;
    height: 4px;
    background: var(--primary-color);
    z-index: 0;
    width: 0%;
    transition: var(--transition-smooth);
}
.checkout-step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    position: relative;
    cursor: pointer;
}
.checkout-step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}
.checkout-step-node.active .checkout-step-circle {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--white);
}
.checkout-step-node.completed .checkout-step-circle {
    border-color: var(--accent-color);
    background-color: var(--accent-color);
    color: var(--white);
}
.checkout-step-text {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-fast);
}
.checkout-step-node.active .checkout-step-text {
    color: var(--primary-color);
}
.checkout-step-node.completed .checkout-step-text {
    color: var(--accent-color);
}

/* Payment Gateway Mock Modal Styles */
.payment-modal-body {
    background-color: #F8F9FA;
    font-family: var(--font-body);
}
.payment-gateway-header {
    background-color: #1A2530;
    color: var(--white);
    padding: 1.25rem;
}
.payment-opt-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--white);
    padding: 1rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 15px;
}
.payment-opt-card:hover, .payment-opt-card.active {
    border-color: #2F80ED;
    background-color: #F2F8FF;
}

/* Dashboard Sidebars */
.dashboard-sidebar {
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 1.5rem 1rem;
    box-shadow: var(--shadow-sm);
}
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    margin-bottom: 0.4rem;
    transition: var(--transition-fast);
}
.sidebar-link:hover, .sidebar-link.active {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

/* Notification Register Log (Dashboard & Admin) */
.noti-log-item {
    border-left: 4px solid var(--border-color);
    background-color: var(--white);
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-sm);
}
.noti-log-item.sms {
    border-left-color: #2196F3;
}
.noti-log-item.email {
    border-left-color: #FF9800;
}
.noti-log-item.whatsapp {
    border-left-color: #4CAF50;
}

/* Admin / Seller Dashboard Layout */
.admin-card {
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    height: calc(100% - 1.5rem);
}
.metric-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.metric-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* ONDC Schema Validation Console */
.schema-terminal {
    background-color: #1E1E1E;
    color: #00FF00;
    font-family: 'Courier New', Courier, monospace;
    padding: 1rem;
    border-radius: 8px;
    max-height: 250px;
    overflow-y: auto;
    font-size: 0.85rem;
    line-height: 1.45;
}

/* Footer Section styling */
.footer-khadi {
    background-color: #3F2305;
    color: #F4EBE1;
    padding: 4rem 0 2rem;
    font-size: 0.9rem;
}
.footer-title {
    color: var(--secondary-color);
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.75rem;
}
.footer-links a {
    color: #F4EBE1;
    text-decoration: none;
    transition: var(--transition-fast);
}
.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}
.footer-bottom {
    border-top: 1px solid rgba(244, 235, 225, 0.15);
    padding-top: 2rem;
    margin-top: 2rem;
    font-size: 0.85rem;
}
