/*
Theme Name: BAMpeps
Theme URI: https://bampeps.com
Author: BAMpeps
Description: Custom dark theme for BAMpeps research peptide store with WooCommerce integration.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: bampeps
Tags: woocommerce, dark, custom
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    --bg-primary: #0d0d0d;
    --bg-card: #1a1a1a;
    --bg-card-alt: #1f2937;
    --bg-card-hover: #222222;
    --red: #dc2626;
    --red-dark: #b91c1c;
    --red-muted: #7f1d1d;
    --red-bg: rgba(220, 38, 38, 0.12);
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --text-light: #d1d5db;
    --border: rgba(255,255,255,0.06);
    --border-red: rgba(220, 38, 38, 0.4);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-primary);
    color: var(--text-white);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--red-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 80px 0; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--red);
    color: #fff;
}
.btn-primary:hover {
    background: var(--red-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--red);
    border: 1px solid var(--red);
}
.btn-outline:hover {
    background: var(--red);
    color: #fff;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-logo img,
.custom-logo,
.custom-logo-link img,
#site-header .wp-custom-logo img {
    height: 48px;
    width: auto;
    max-height: 48px;
    object-fit: contain;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.site-logo span {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.current {
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-link {
    position: relative;
    color: var(--text-light);
    display: flex;
    align-items: center;
    transition: color 0.2s;
}
.cart-link:hover { color: #fff; }

.cart-link svg { width: 22px; height: 22px; }

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

/* Page offset for fixed header */
.page-content { padding-top: 80px; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 70% 50%, rgba(127, 29, 29, 0.35) 0%, transparent 65%),
                radial-gradient(ellipse at 20% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
                var(--bg-primary);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid var(--border-red);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    background: var(--red-bg);
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-title .accent { color: var(--red); }

.hero-desc {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-stat-icon {
    width: 40px;
    height: 40px;
    background: var(--red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-stat-icon svg { width: 20px; height: 20px; color: #fff; }

.hero-stat-label {
    font-size: 10px;
    color: var(--text-gray);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-stat-value {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.hero-card {
    background: rgba(30, 15, 15, 0.7);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 16px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    backdrop-filter: blur(10px);
    min-height: 260px;
}

.hero-card-icon {
    width: 72px;
    height: 72px;
    color: var(--red);
}

.hero-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.hero-card p {
    color: var(--text-gray);
    font-size: 14px;
}

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-title .accent { color: var(--red); }

.section-subtitle {
    color: var(--text-gray);
    font-size: 17px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =============================================
   PRODUCT GRID (WooCommerce)
   ============================================= */
.products-section { background: var(--bg-primary); padding: 80px 0; }
.products-section .section-header { margin-bottom: 48px; }

ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

li.product {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

li.product:hover {
    transform: translateY(-4px);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

li.product .product-image-wrap {
    position: relative;
    overflow: hidden;
    background: #111;
}

li.product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

li.product:hover img { transform: scale(1.04); }

li.product .product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

li.product .woocommerce-loop-product__title,
li.product h2 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
    line-height: 1.3;
    font-family: var(--font);
}

li.product .product-description {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

li.product .product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 12px;
}

li.product .price {
    color: var(--red);
    font-size: 18px;
    font-weight: 800;
    font-family: var(--font);
}

li.product .price ins { text-decoration: none; }
li.product .price del { color: var(--text-gray); font-size: 13px; font-weight: 400; }

li.product .button,
li.product .add_to_cart_button {
    background: var(--red);
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

li.product .button:hover,
li.product .add_to_cart_button:hover {
    background: var(--red-dark);
    color: #fff;
    transform: translateY(-1px);
}

.product-disclaimer {
    font-size: 9px;
    color: rgba(156, 163, 175, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
    padding: 8px 16px 14px;
    border-top: 1px solid var(--border);
}

/* =============================================
   SINGLE PRODUCT PAGE
   ============================================= */
.single-product-wrapper {
    padding: 60px 0 80px;
}

.single-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.product-gallery-main {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.product-gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    padding: 24px;
}

.product-details .product-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.product-details .woocommerce-product-details__short-description {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.product-details .price {
    font-size: 32px;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 28px;
    display: block;
}

.product-details .single_add_to_cart_button {
    background: var(--red);
    color: #fff;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    margin-top: 8px;
}

.product-details .single_add_to_cart_button:hover {
    background: var(--red-dark);
}

.product-details .quantity input {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: #fff;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 16px;
    width: 80px;
    text-align: center;
}

.product-research-badge {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 8px;
    padding: 14px 18px;
    margin-top: 24px;
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
    padding: 80px 0 60px;
    text-align: left;
}

.about-hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 20px; }
.about-hero h1 .accent { color: var(--red); }
.about-hero p { font-size: 17px; color: var(--text-gray); line-height: 1.7; max-width: 720px; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    transition: border-color 0.2s;
}

.feature-card:hover { border-color: rgba(220, 38, 38, 0.3); }

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--red);
    margin: 0 auto 20px;
}

.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.feature-card p { color: var(--text-gray); font-size: 14px; line-height: 1.6; }

.why-choose-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 48px;
}

.why-choose-box h2 { font-size: 24px; font-weight: 700; margin-bottom: 16px; }
.why-choose-box p { color: var(--text-gray); font-size: 15px; line-height: 1.7; }

/* =============================================
   COA PAGE
   ============================================= */
.coa-section { padding: 80px 0; }

.coa-header { text-align: center; margin-bottom: 56px; }
.coa-header h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.coa-header p { color: var(--text-gray); font-size: 16px; max-width: 500px; margin: 0 auto; }

.coa-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; margin: 0 auto 40px; }

.coa-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: border-color 0.2s;
}

.coa-item:hover { border-color: rgba(220, 38, 38, 0.3); }

.coa-file-icon { color: var(--red); flex-shrink: 0; }
.coa-file-icon svg { width: 28px; height: 28px; }

.coa-item-info { flex: 1; }
.coa-item-name { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.coa-item-meta { font-size: 13px; color: var(--text-gray); }

.coa-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
}

.coa-download:hover { background: var(--red-dark); color: #fff; }
.coa-download svg { width: 15px; height: 15px; }

.coa-footer-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { padding: 80px 0; }
.contact-header { text-align: center; margin-bottom: 56px; }
.contact-header h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.contact-header p { color: var(--text-gray); font-size: 16px; max-width: 480px; margin: 0 auto; }

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 48px 40px;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.contact-icon { color: var(--red); margin: 0 auto 20px; }
.contact-icon svg { width: 48px; height: 48px; }
.contact-card h2 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.contact-card .email-link { font-size: 18px; color: var(--red); font-weight: 600; display: block; margin-bottom: 16px; }
.contact-card p { color: var(--text-gray); font-size: 14px; line-height: 1.6; }

/* =============================================
   DISCLAIMER PAGE
   ============================================= */
.disclaimer-section { padding: 80px 0; }
.disclaimer-section h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; letter-spacing: -0.02em; text-align: center; margin-bottom: 56px; }

.disclaimer-cards { display: flex; flex-direction: column; gap: 20px; max-width: 760px; margin: 0 auto; }

.disclaimer-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 32px;
}

.disclaimer-card.danger {
    background: rgba(127, 29, 29, 0.2);
    border-color: rgba(220, 38, 38, 0.4);
}

.disclaimer-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.disclaimer-card-header svg { color: var(--red); width: 22px; height: 22px; flex-shrink: 0; }
.disclaimer-card-header h2 { font-size: 18px; font-weight: 700; }

.disclaimer-card p { color: var(--text-gray); font-size: 14px; line-height: 1.7; }
.disclaimer-card strong { color: var(--text-white); }

.disclaimer-card ul {
    margin-top: 12px;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.disclaimer-card ul li {
    color: var(--text-gray);
    font-size: 14px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.disclaimer-card ul li::before {
    content: '•';
    color: var(--red);
    position: absolute;
    left: 0;
}

/* =============================================
   DISCLAIMER BANNER (sitewide footer)
   ============================================= */
.disclaimer-banner {
    background: rgba(127, 29, 29, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 10px;
    padding: 20px 24px;
    margin: 48px 0 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.disclaimer-banner svg { color: var(--red); width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.disclaimer-banner p { font-size: 13px; color: var(--text-gray); line-height: 1.6; }
.disclaimer-banner strong { color: var(--text-white); }

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 32px 0;
    margin-top: 80px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo { height: 36px; width: auto; }

.footer-copy {
    font-size: 12px;
    color: var(--text-gray);
    text-align: right;
    line-height: 1.5;
}

/* =============================================
   WOOCOMMERCE OVERRIDES
   ============================================= */
.woocommerce-notices-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-top: 3px solid var(--red);
    color: var(--text-white);
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

/* Cart */
.woocommerce-cart table.cart { width: 100%; border-collapse: collapse; }
.woocommerce-cart table.cart th, .woocommerce-cart table.cart td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-white);
}
.woocommerce-cart table.cart th { color: var(--text-gray); font-size: 12px; text-transform: uppercase; }

.cart-collaterals { margin-top: 40px; }
.cart_totals { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 28px; max-width: 400px; margin-left: auto; }
.cart_totals h2 { font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.cart_totals table { width: 100%; }
.cart_totals table th, .cart_totals table td { padding: 10px 0; color: var(--text-light); border-bottom: 1px solid var(--border); font-size: 14px; }
.cart_totals table .order-total td { font-weight: 700; font-size: 18px; color: var(--text-white); }
.wc-proceed-to-checkout .checkout-button {
    display: block;
    background: var(--red);
    color: #fff;
    text-align: center;
    padding: 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 20px;
    transition: all 0.2s;
    text-decoration: none;
}
.wc-proceed-to-checkout .checkout-button:hover { background: var(--red-dark); }

/* Checkout form */
.woocommerce-checkout .form-row label { color: var(--text-light); font-size: 14px; margin-bottom: 6px; display: block; }
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-white);
    padding: 12px 16px;
    border-radius: 6px;
    width: 100%;
    font-size: 15px;
    font-family: var(--font);
    transition: border-color 0.2s;
}
.woocommerce-checkout input:focus, .woocommerce-checkout select:focus, .woocommerce-checkout textarea:focus {
    outline: none;
    border-color: var(--red);
}
.woocommerce-checkout #place_order {
    background: var(--red);
    color: #fff;
    padding: 16px 36px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.woocommerce-checkout #place_order:hover { background: var(--red-dark); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    ul.products { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-content { grid-template-columns: 1fr; gap: 48px; }
    .hero-card { display: none; }
    .single-product-grid { grid-template-columns: 1fr; }
    ul.products { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .main-nav { display: none; }
    .main-nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(13,13,13,0.98); padding: 24px; gap: 20px; border-bottom: 1px solid var(--border); }
    .menu-toggle { display: flex; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-copy { text-align: center; }
}

@media (max-width: 480px) {
    ul.products { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 16px; }
}

/* Custom logo size fix */
.custom-logo-link { display: flex; align-items: center; }
.custom-logo-link img { height: 48px !important; width: auto !important; max-height: 48px !important; }


/* ===== LOGO SIZE FIX ===== */
#site-header img.custom-logo,
.custom-logo-link img,
.custom-logo {
    height: 48px !important;
    width: auto !important;
    max-height: 48px !important;
    max-width: none !important;
}
.custom-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
/* ========================= */
