/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
    /* Color Palette */
    --brand-dark: #8a001c;
    --brand-medium: #ac0000;
    --brand-accent: #c9002a;
    --brand-light: #e8e1e1;
    --text-dark: #2b2b2b;
    --text-muted: #666666;
    --white: #ffffff;
    --bg-light: #f9f7f7;
    --bg-card: #ffffff;
    --shadow-soft: 0 10px 30px rgba(138, 0, 28, 0.05);
    --shadow-medium: 0 15px 35px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 45px rgba(138, 0, 28, 0.15);
    
    /* Layout */
    --container-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ==========================================
   BASE STYLES
   ========================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.text-white {
    color: var(--white);
}

.text-highlight {
    color: var(--brand-accent);
}

.max-width-600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid helper */
.grid {
    display: grid;
    gap: 40px;
}

.grid-2-col {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 900px) {
    .grid-2-col {
        grid-template-columns: 1fr;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--brand-accent);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(201, 0, 42, 0.3);
}

.btn-primary:hover {
    background-color: var(--brand-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(138, 0, 28, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--brand-dark);
    transform: translateY(-3px);
}

/* Language Selector Widget Styling */
.lang-selector-widget {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.lang-active-btn {
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(138, 0, 28, 0.2);
    color: var(--brand-dark);
    font-family: inherit;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.lang-active-btn:hover {
    background-color: var(--white);
    border-color: var(--brand-accent);
    box-shadow: 0 6px 20px rgba(138, 0, 28, 0.15);
}

.lang-dropdown-menu {
    position: absolute;
    top: 45px;
    right: 0;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-medium);
    display: none;
    flex-direction: column;
    min-width: 140px;
    overflow: hidden;
    animation: fadeIn 0.3s ease-out;
}

.lang-dropdown-menu.show {
    display: flex;
}

.lang-option {
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-smooth);
    text-align: left;
}

.lang-option:hover {
    background-color: var(--brand-light);
    color: var(--brand-dark);
}

/* Common Section Labels and Titles */
.section-label {
    display: inline-block;
    color: var(--brand-accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--brand-dark);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* ==========================================
   1. HERO / HEADER SECTION
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('images/borshch_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 100px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 0, 5, 0.9) 0%, rgba(138, 0, 28, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-description {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out;
}

.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-arrow:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.6rem;
    }
    .hero-description {
        font-size: 1.1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -10px);
    }
    60% {
        transform: translate(-50%, -5px);
    }
}

/* ==========================================
   2. PRODUCT FEATURE SECTION
   ========================================== */
.product-section {
    padding: 100px 0;
    background-color: var(--white);
}

.product-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-bg-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(201, 0, 42, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.product-img {
    position: relative;
    z-index: 2;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.12));
    transition: var(--transition-smooth);
}

.product-img:hover {
    transform: translateY(-10px) rotate(1deg);
    filter: drop-shadow(0 30px 45px rgba(138, 0, 28, 0.2));
}

.product-info-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-list {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 8px 12px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background-color: var(--bg-light);
    transform: translateX(3px);
}

.feature-icon {
    background-color: rgba(201, 0, 42, 0.08);
    color: var(--brand-accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon {
    background-color: var(--brand-accent);
    color: var(--white);
    transform: scale(1.1);
}

.feature-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================
   3. GRATITUDE & QR BLOCK
   ========================================== */
.gratitude-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--brand-light);
    overflow: hidden;
}

.gratitude-bg-deco-1 {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(138, 0, 28, 0.03);
    border-radius: 50%;
}

.gratitude-bg-deco-2 {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 450px;
    height: 450px;
    background-color: rgba(138, 0, 28, 0.04);
    border-radius: 50%;
}

.gratitude-card {
    position: relative;
    z-index: 2;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-medium);
}

.gratitude-heart {
    font-size: 3rem;
    color: var(--brand-accent);
    margin-bottom: 24px;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.12);
    }
    60% {
        transform: scale(1.05);
    }
}

.gratitude-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 20px;
}

.gratitude-lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 30px;
}

.gratitude-divider {
    height: 3px;
    width: 80px;
    background-color: var(--brand-accent);
    margin: 30px auto;
    border-radius: 20px;
}

.gratitude-sub {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* QR Code Display styling */
.qr-placeholder-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.qr-box {
    position: relative;
    width: 160px;
    height: 160px;
    background: var(--white);
    border: 3px solid var(--brand-dark);
    border-radius: var(--border-radius-md);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(138, 0, 28, 0.1);
    overflow: hidden;
}

.qr-picto {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--brand-accent);
    box-shadow: 0 0 8px var(--brand-accent);
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0%, 100% {
        top: 5%;
    }
    50% {
        top: 95%;
    }
}

.qr-caption {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-dark);
}

/* ==========================================
   4. RECIPE SHOWCASE SECTION
   ========================================== */
.recipes-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.recipes-header {
    margin-bottom: 60px;
}

/* Serving Adjuster Control */
.servings-selector {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    margin-top: 25px;
}

.servings-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

.servings-control {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--bg-light);
    padding: 4px 8px;
    border-radius: 30px;
}

.btn-servings-adjust {
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-servings-adjust:hover {
    background-color: var(--brand-accent);
    color: var(--white);
    border-color: var(--brand-accent);
}

.servings-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-dark);
    min-width: 20px;
    text-align: center;
}

.servings-unit {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-dark);
}

/* Recipes Grid layout */
.recipes-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Recipe Card layout */
.recipe-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    display: flex;
    transition: var(--transition-smooth);
}

.recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.recipe-img-wrapper {
    flex: 1.1;
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.recipe-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.recipe-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--brand-accent);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(201, 0, 42, 0.3);
}

.recipe-content {
    flex: 1.2;
    padding: 48px;
    display: flex;
    flex-direction: column;
}

.recipe-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.recipe-meta i {
    color: var(--brand-accent);
    margin-right: 5px;
}

.recipe-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 8px;
}

.recipe-specialty {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    border-left: 3px solid var(--brand-accent);
    padding-left: 12px;
}

/* Tabs */
.recipe-tabs {
    display: flex;
    border-bottom: 2px solid var(--brand-light);
    margin-bottom: 24px;
    gap: 15px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 10px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.tab-btn:hover {
    color: var(--brand-dark);
}

.tab-btn.active {
    color: var(--brand-accent);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--brand-accent);
    border-radius: 5px;
}

/* Tab content switching */
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-instruction-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 15px;
}

.tab-instruction-note i {
    color: var(--brand-accent);
}

/* Ingredients layout & interactivity */
.ingredients-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.ingredients-list li {
    font-size: 0.95rem;
    line-height: 1.3;
}

.ingredients-sub-group {
    margin-bottom: 20px;
}

.ingredients-sub-group h4 {
    color: var(--brand-dark);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    border-bottom: 1px dashed var(--brand-light);
    padding-bottom: 4px;
}

/* Custom interactive checkbox styling */
.ingredient-checkbox-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.ingredient-cb {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-cb {
    height: 20px;
    width: 20px;
    background-color: var(--bg-light);
    border: 2px solid rgba(0,0,0,0.15);
    border-radius: 5px;
    margin-right: 12px;
    display: inline-block;
    position: relative;
    transition: var(--transition-smooth);
}

.ingredient-checkbox-label:hover .custom-cb {
    border-color: var(--brand-accent);
}

.ingredient-cb:checked ~ .custom-cb {
    background-color: var(--brand-accent);
    border-color: var(--brand-accent);
}

.custom-cb::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.ingredient-cb:checked ~ .custom-cb::after {
    display: block;
}

/* Crossed out ingredient name when checked */
.ingredient-cb:checked ~ .ingredient-name,
.ingredient-cb:checked ~ .ingredient-quantity {
    text-decoration: line-through;
    color: var(--text-muted);
}

.ingredient-name {
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.ingredient-quantity {
    font-weight: 700;
    color: var(--brand-dark);
    transition: var(--transition-smooth);
}

.ingredient-name-static {
    font-weight: 600;
    color: var(--text-muted);
    padding-left: 32px;
    font-style: italic;
}

/* Secrets design in recipe */
.recipe-secret-box {
    background-color: rgba(201, 0, 42, 0.04);
    border-left: 4px solid var(--brand-accent);
    padding: 16px;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    margin-top: 15px;
}

.secret-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--brand-dark);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.recipe-secret-box p {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
}

/* Steps list */
.steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.steps-list li {
    position: relative;
    padding-left: 0;
    padding-top: 28px; /* space for the absolute step-num badge on top */
}

.step-num {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.75rem;
    font-weight: 700;
    background-color: var(--brand-dark);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.steps-list li p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-top: 4px;
}

/* Responsive card adjustment */
@media (max-width: 1000px) {
    .recipe-card {
        flex-direction: column;
    }
    .recipe-img-wrapper {
        min-height: 300px;
    }
}

/* Alternate order for grid elegance on desktop */
@media (min-width: 1001px) {
    .recipes-grid article:nth-child(even) {
        flex-direction: row-reverse;
    }
}

/* ==========================================
   5. KITCHEN SECRETS & HACKS SECTION
   ========================================== */
.hacks-section {
    padding: 100px 0;
    background-color: var(--brand-dark);
    color: var(--white);
}

.hacks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.hack-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    position: relative;
}

.hack-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.hack-badge {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-accent);
    opacity: 0.7;
    margin-bottom: 12px;
}

.hack-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.hack-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.hacks-highlight-box {
    margin-top: 50px;
    background: linear-gradient(135deg, rgba(201, 0, 42, 0.3) 0%, rgba(138, 0, 28, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hacks-highlight-box p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Logo sizing rules */
.hero-logo-container {
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-start;
    animation: fadeInDown 0.8s ease-out;
}

body .hero-logo-container img.hero-brand-logo,
body img.hero-brand-logo {
    max-height: 120px !important;
    max-width: 180px !important;
    height: auto !important;
    width: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}

.product-title-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

body .product-title-row img.inline-brand-logo,
body img.inline-brand-logo {
    max-height: 40px !important;
    max-width: 80px !important;
    height: auto !important;
    width: auto !important;
    object-fit: contain !important;
}

.product-thanks-callout {
    margin-top: 30px;
    background-color: var(--brand-light);
    border-left: 5px solid var(--brand-accent);
    padding: 20px;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-soft);
    animation: fadeInUp 0.8s ease-out;
}

.thanks-icon {
    font-size: 1.8rem;
    color: var(--brand-accent);
    animation: heartbeat 2s infinite;
}

.thanks-body h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 6px;
}

.thanks-body p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
    background-color: #1a0005;
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

body .footer-brand img.footer-brand-logo,
body img.footer-brand-logo {
    max-height: 50px !important;
    max-width: 100px !important;
    height: auto !important;
    width: auto !important;
    object-fit: contain !important;
}

.footer-tagline {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.footer-copyright {
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    margin-top: 24px;
}
