/* ================= VARIABLES & RESET ================= */
:root {
    --primary: #2E7D32;
    --primary-dark: #1b5e20;
    --accent: #E91E63;
    --accent-hover: #c2185b;
    --dark: #333;
    --text-light: #666;
    --light: #f4f4f4;
    --white: #fff;
    --border: #e0e0e0;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --font-main: 'Poppins', sans-serif;
    --font-header: 'Playfair Display', serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: var(--font-main); }
body { background: #f9f9f9; color: var(--dark); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ================= NAVBAR ================= */
.navbar { background: var(--white); box-shadow: 0 2px 5px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 1rem 5%; width: 100%; max-width: 1200px; margin: 0 auto; }

.logo { font-size: 1.5rem; font-weight: bold; color: var(--primary); display: flex; align-items: center; gap: 8px; }
.logo i { font-size: 1.8rem; }

/* Search Bar */
.search-bar { 
    display: flex; background: #f1f1f1; border-radius: 50px; padding: 5px 20px; 
    width: 40%; max-width: 500px; margin: 0 20px; transition: 0.3s;
}
.search-bar:focus-within { background: white; box-shadow: 0 0 0 2px var(--primary); }
.search-bar input { border: none; background: transparent; width: 100%; outline: none; padding: 8px; font-size: 0.95rem; }
.search-bar button { border: none; background: transparent; cursor: pointer; color: var(--primary); font-size: 1.1rem; }

/* Nav Links */
.nav-links { display: flex; gap: 25px; align-items: center; }
.btn-login { 
    padding: 8px 20px; border: 1px solid var(--primary); border-radius: 20px; 
    color: var(--primary); font-weight: 500; transition: 0.3s; display: flex; align-items: center; gap: 8px; 
}
.btn-login:hover { background: var(--primary); color: white; }

/* Cart Icon */
.cart-icon { position: relative; font-size: 1.3rem; cursor: pointer; transition: 0.3s; }
.cart-icon:hover { color: var(--primary); transform: scale(1.1); }
#cart-count { 
    position: absolute; top: -8px; right: -10px; background: var(--accent); 
    color: white; font-size: 0.7rem; padding: 2px 6px; border-radius: 50%; font-weight: bold;
}

/* Mobile Menu */
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; color: var(--dark); cursor: pointer; }

/* ================= USER DROPDOWN ================= */
.auth-dropdown-container { position: relative; display: inline-block; }

.user-btn {
    background: transparent; border: 1px solid var(--primary); color: var(--primary);
    padding: 6px 15px; border-radius: 20px; cursor: pointer; display: flex;
    align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease;
}
.user-btn:hover { background: var(--primary); color: var(--white); }

.dropdown-content {
    display: none; position: absolute; right: 0; top: 45px;
    background-color: #ffffff; min-width: 180px; box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-radius: 10px; overflow: hidden; z-index: 1000; border: 1px solid #f0f0f0;
}
.dropdown-content.show { display: block; animation: fadeIn 0.2s ease; }
.dropdown-content a {
    color: var(--dark); padding: 12px 16px; display: flex; align-items: center;
    gap: 10px; font-size: 0.9rem; transition: background 0.2s;
}
.dropdown-content a:hover { background-color: #f9f9f9; color: var(--primary); }

/* ================= HERO SECTION ================= */
.hero { 
    position: relative; height: 500px; 
    background: url('https://placehold.co/1600x500?text=Kiligbox+Banner') no-repeat center center/cover;
    display: flex; align-items: center; justify-content: center; text-align: center; color: white;
}

/* Fallback if image missing */
.hero:not([style]) { background-color: var(--primary); }

.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 20px; }

.hero-title { font-family: var(--font-header); font-size: 3.5rem; margin-bottom: 15px; line-height: 1.2; }
.hero-title .highlight { color: #fff; font-style: italic; }
.hero-subtitle { font-size: 1.2rem; margin-bottom: 25px; opacity: 0.9; }

.btn-primary { 
    background: var(--accent); color: white; padding: 12px 30px; border: none; 
    border-radius: 30px; cursor: pointer; font-size: 1rem; font-weight: 600; 
    display: inline-flex; align-items: center; gap: 10px; transition: 0.3s; 
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4); }

.hero-decoration { position: absolute; bottom: 20px; animation: bounce 2s infinite; font-size: 2rem; opacity: 0.8; }

/* ================= TRUST BADGES ================= */
.trust-badges { 
    background: white; 
    padding: 40px 0; 
}

.badges-grid { 
    display: flex;               /* Forces items to stay in one row */
    justify-content: space-between; /* Spreads them out evenly */
    gap: 20px;                   /* Adds space between the green boxes */
    align-items: stretch;        /* Makes all boxes the same height */
}

.badge-item {
    border: 1px solid var(--primary); /* GREEN BORDER */
    border-radius: 15px;         /* Rounded corners to match site style */
    padding: 25px 15px;          /* Space inside the box */
    text-align: center;
    flex: 1;                     /* Makes every box equal width */
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Update this hover section inside .trust-badges */
.badge-item:hover {
    transform: translateY(-5px);
    /* Change background to Light Pink */
    background-color: #fff0f5; 
    /* Change border to your Accent Pink (defined in variables) */
    border-color: var(--accent); 
    /* Optional: Change shadow to a soft pink glow */
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.15); 
}

.badge-item i { 
    font-size: 2rem; 
    color: var(--primary); 
    margin-bottom: 15px; 
}

.badge-item h4 { 
    font-weight: 600; 
    margin-bottom: 8px; 
    color: var(--dark); 
    font-size: 1.1rem;
}

.badge-item p { 
    font-size: 0.9rem; 
    color: var(--text-light); 
    line-height: 1.4;
}

/* Keep them in one column only on very small mobile screens to prevent squishing */
@media (max-width: 768px) {
    .badges-grid {
        flex-wrap: wrap; 
    }
    .badge-item {
        min-width: 45%; /* On tablets/mobile, allows 2 per row */
        margin-bottom: 10px;
    }
}

/* ================= MAIN LAYOUT ================= */
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 2rem 0; }

/* Filters */
.filters { margin: 2rem 0; text-align: center; }
.filter-title { font-family: var(--font-header); margin-bottom: 1.5rem; font-size: 1.8rem; }
.filter-scroll-wrapper { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }

.cat-btn.pill { 
    padding: 10px 25px; border: 1px solid #ddd; background: var(--white); 
    border-radius: 50px; cursor: pointer; transition: 0.3s; color: var(--dark);
    display: flex; align-items: center; gap: 8px; font-weight: 500;
}
/* Update this existing rule in your CSS */
.cat-btn.pill:hover, 
.cat-btn.pill.active { 
    background: var(--primary); 
    color: var(--white); 
    border-color: var(--primary); 
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.4);
    
    /* The Heartbeat Effect */
    animation: heartbeat 1.5s infinite ease-in-out;
}

/* Optional: Make the icon wiggle slightly when hovering the button */
.cat-btn.pill:hover i {
    animation: wiggle 1s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* Section Headers */
.section-header { text-align: center; margin-bottom: 40px; }
.section-title { font-family: var(--font-header); font-size: 2.5rem; color: var(--dark); position: relative; display: inline-block; }
.section-subtitle { color: var(--text-light); margin-top: 10px; }



/* Grid - 6 per row on Desktop */
.grid-container { 
    display: grid; 
    grid-template-columns: repeat(6, 1fr); 
    gap: 18px; 
    padding: 15px 0;
    max-width: 1400px;
    margin: 0 auto;
}

/* Product Card - Clean & Modern */
.product-card { 
    background: var(--white); 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.06); 
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.product-card:hover { 
    box-shadow: 0 8px 24px rgba(0,0,0,0.12); 
    transform: translateY(-4px);
    border-color: var(--primary);
}

/* Image Container - Smaller & Compact */
.product-image { 
    position: relative; 
    height: 180px; 
    overflow: hidden; 
    background: #fafafa;
}

.product-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.4s ease; 
}

.product-card:hover .product-image img { 
    transform: scale(1.05); 
}



/* NEW LIGHT PINK HOVER */
.product-card:hover {
    transform: translateY(-5px); /* Smooth lift effect */
    
    /* Light Pink Background */
    background-color: #fff0f5;   /* LavenderBlush */
    
    /* Pink Border */
    border-color: var(--accent); 
    
    /* Soft Pink Shadow */
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.15); 
}

/* Ensure Text stays Dark so it is readable */
.product-card:hover .product-title {
    color: var(--dark);
}

.product-card:hover .product-price {
    color: #d81b60; /* Make price slightly darker pink */
}

.product-card:hover .product-seller {
    color: #666; /* Keep seller name gray */
}

.product-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--accent);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

/* Details Section */
.product-details { 
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.product-category { 
    font-size: 0.65rem; 
    color: #999; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-weight: 500;
}

.product-title { 
    font-size: 0.9rem; 
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
    min-height: 2.6em;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-seller {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: #777;
    margin-top: auto;
}

.product-seller i {
    color: #bbb;
    font-size: 0.7rem;
}

/* Price Row */
.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.product-price { 
    color: #ff4757; 
    font-weight: 700; 
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
}

/* Add to Cart Button - Full Width */
.product-details .add-cart-btn { 
    background: var(--primary); 
    border: none; 
    color: white; 
    width: 100%; 
    padding: 10px; 
    border-radius: 8px; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
}

.product-details .add-cart-btn:hover { 
    background: var(--primary-dark); 
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.product-details .add-cart-btn i {
    font-size: 0.9rem;
}

/* ================= POLICY SECTION (UPDATED) ================= */
.policy-section { 
    background: #fdfbf7; 
    padding: 60px 0; 
    margin-top: 50px; 
    border-top: 1px solid #eee; 
}
.policy-container { 
    max-width: 1000px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.policy-header { 
    text-align: center; 
    margin-bottom: 50px; /* Increased space below header */
    color: var(--primary); 
}
.policy-header i { font-size: 2rem; margin-bottom: 10px; }
.policy-header h3 { font-family: var(--font-header); font-size: 2rem; color: var(--dark); }

.policy-intro { 
    text-align: center; 
    max-width: 700px; 
    margin: 0 auto 50px; /* Increased space below intro text */
    line-height: 1.6; 
    color: var(--text-light); 
}

/* --- THE GRID LAYOUT --- */
.policy-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    
    /* FIX: Increased gap to 50px ensures borders don't overlap */
    gap: 50px; 
    
    align-items: start;
}

/* --- POLICY CARD ITEM --- */
.policy-item { 
    background: white; 
    padding: 35px 30px; /* More breathing room inside */
    border-radius: 15px; 
    
    /* Default: Green Border */
    border: 1px solid var(--primary); 
    
    /* Smooth transition for all hover effects */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    position: relative; /* Required for z-index to work */
}

/* --- HOVER EFFECTS --- */
.policy-item:hover {
    /* Lift up effect */
    transform: translateY(-10px); 
    
    /* Change to Pink Border */
    border-color: var(--accent); 
    
    /* Pink Glow Shadow */
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.15); 
    
    /* FIX: Ensures the hovered card floats ABOVE neighbors */
    z-index: 10; 
}

/* --- ICON STYLING --- */
.policy-icon { 
    width: 65px; 
    height: 65px; 
    background: #e8f5e9; /* Light Green Bg */
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--primary); /* Green Icon */
    font-size: 1.5rem; 
    margin-bottom: 20px; 
    transition: all 0.4s ease;
}

/* Icon changes on card hover */
.policy-item:hover .policy-icon {
    background: var(--accent); /* Turn Bg Pink */
    color: white;              /* Turn Icon White */
    transform: scale(1.1);     /* Grow slightly */
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.4);
}

/* Heartbeat animation for the inner icon symbol */
.policy-item:hover .policy-icon i {
    animation: heartbeat 1.5s infinite;
}

.policy-item h4 { font-size: 1.2rem; margin-bottom: 15px; color: var(--dark); font-weight: 600; }
.policy-item p { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }

.policy-footer { text-align: center; margin-top: 50px; padding-top: 30px; border-top: 1px solid #ddd; color: var(--primary); font-weight: 500; }

/* --- RESPONSIVE ADJUSTMENT --- */
@media (max-width: 768px) {
    .policy-grid { 
        grid-template-columns: 1fr; /* Stack vertically on mobile */
        gap: 30px; 
    }
}

/* ================= FOOTER ================= */
footer { background: #222; color: #fff; padding: 4rem 0 0; margin-top: 0; }
.footer-content { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 30px; margin-bottom: 3rem; }

.footer-col h4 { font-family: var(--font-header); font-size: 1.2rem; margin-bottom: 20px; color: #fff; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #bbb; transition: 0.3s; }
.footer-col ul li a:hover { color: var(--primary); padding-left: 5px; }

.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a { width: 35px; height: 35px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.3s; }
.social-links a:hover { background: var(--primary); }

.newsletter { display: flex; margin-top: 15px; }
.newsletter input { flex: 1; padding: 10px; border: none; border-radius: 5px 0 0 5px; outline: none; }
.newsletter button { padding: 10px 15px; background: var(--primary); border: none; border-radius: 0 5px 5px 0; color: white; cursor: pointer; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; color: #777; font-size: 0.9rem; }

/* ================= CART SIDEBAR ================= */
.cart-sidebar {
    position: fixed; top: 0; right: -400px; width: 350px; height: 100vh;
    background: #ffffff; box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 2000; transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex; flex-direction: column;
}
.cart-sidebar.open { right: 0; }
.sidebar-header { padding: 20px; background: var(--primary); color: white; display: flex; justify-content: space-between; align-items: center; }
.close-sidebar { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
.sidebar-items { flex: 1; overflow-y: auto; padding: 20px; }
.empty-cart-msg { text-align: center; margin-top: 50px; color: #999; }
.empty-cart-msg i { font-size: 3rem; margin-bottom: 15px; opacity: 0.5; }

.sidebar-item { display: flex; gap: 15px; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #f0f0f0; }
.sidebar-item img { width: 70px; height: 70px; object-fit: cover; border-radius: 8px; }
.sidebar-item-info h4 { font-size: 0.95rem; margin-bottom: 5px; }
.sidebar-footer { padding: 25px; border-top: 1px solid #eee; background: #f9f9f9; }
.subtotal { display: flex; justify-content: space-between; font-weight: bold; margin-bottom: 20px; font-size: 1.2rem; }
.btn-block { width: 100%; display: block; text-align: center; }
#sidebar-overlay.active { display: block; }

/* ================= CUSTOM ALERTS ================= */
.custom-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 3000; align-items: center; justify-content: center; }
.custom-modal.active { display: flex; }
.custom-modal-content { background: white; padding: 30px; border-radius: 15px; text-align: center; max-width: 400px; width: 90%; animation: popIn 0.3s ease; }
.modal-icon { font-size: 3rem; color: var(--primary); margin-bottom: 15px; }

/* ================= QUICK VIEW MODAL (CRITICAL) ================= */
.qv-modal {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8);
    z-index: 9999; align-items: center; justify-content: center; padding: 1rem;
}
.qv-overlay { position: absolute; inset: 0; }
.qv-container {
    background: white; border-radius: 20px; overflow: hidden; max-width: 900px; width: 100%;
    max-height: 90vh; display: flex; flex-direction: column; position: relative;
    box-shadow: 0 25px 70px rgba(0,0,0,0.3); animation: slideUp 0.4s ease;
}
.qv-close {
    position: absolute; top: 15px; right: 20px; background: rgba(0,0,0,0.5); color: white;
    width: 35px; height: 35px; border: none; border-radius: 50%; font-size: 1.2rem; cursor: pointer; z-index: 10;
}
.qv-close:hover { background: var(--accent); }

.qv-left { position: relative; background: #f8f9fa; display: flex; flex-direction: column; }
.qv-main-img { flex: 1; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.qv-main-img img { width: 100%; height: 100%; object-fit: cover; max-height: 400px; }

.qv-thumbs { display: flex; gap: 10px; padding: 15px; overflow-x: auto; justify-content: center; }
.qv-thumb { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid transparent; opacity: 0.7; transition: 0.3s; }
.qv-thumb.active, .qv-thumb:hover { border-color: var(--primary); opacity: 1; }

.qv-right { padding: 30px; display: flex; flex-direction: column; gap: 15px; overflow-y: auto; }
.qv-category { color: #888; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.qv-right h2 { font-family: var(--font-header); font-size: 2rem; color: var(--dark); line-height: 1.2; }
.qv-price { font-size: 1.8rem; font-weight: 700; color: #ff4757; }
.qv-desc { color: #555; line-height: 1.6; margin: 10px 0; }

.qv-meta { font-size: 0.9rem; color: #666; display: flex; flex-direction: column; gap: 8px; padding: 15px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.qv-meta i { width: 20px; text-align: center; color: var(--primary); }

.qv-actions { display: flex; gap: 15px; margin-top: auto; padding-top: 10px; }
.btn-add-cart { flex: 2; padding: 14px; background: var(--primary); color: white; border: none; border-radius: 50px; font-weight: 600; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; gap: 10px; transition: 0.3s; }
.btn-add-cart:hover { background: var(--primary-dark); }
.btn-view-full { flex: 1; padding: 14px; background: #f1f1f1; color: var(--dark); text-align: center; border-radius: 50px; text-decoration: none; font-weight: 600; transition: 0.3s; }
.btn-view-full:hover { background: #e0e0e0; }

@media (min-width: 768px) {
    .qv-container { flex-direction: row; height: 500px; }
    .qv-left, .qv-right { flex: 1; }
    .qv-main-img img { height: 100%; }
}

/* ================= ANIMATIONS ================= */
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes popIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) { 
    .grid-container { grid-template-columns: repeat(3, 1fr); } 
    .badges-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: white; flex-direction: column; padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
    .nav-links.mobile-active { display: flex; }
    .mobile-menu-btn { display: block; }
    .search-bar { width: 100%; margin: 0 0 10px 0; order: 3; }
    .nav-container { flex-wrap: wrap; }
    
    .grid-container { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .policy-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
/* ================= HEARTBEAT ANIMATION ================= */
@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.1); } /* First beat (strong) */
    28% { transform: scale(1); }   /* Rest */
    42% { transform: scale(1.1); } /* Second beat (echo) */
    70% { transform: scale(1); }   /* Rest */
}

/* Responsive Logo */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.logo-sub {
    font-size: 1.0rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .logo-main {
        font-size: 1.2rem;
    }
    .logo-sub {
        font-size: 0.6rem;
    }
}