﻿/* Define the custom font */
@font-face {
    font-family: 'Mark GEO CAPS';
    src: url('/fonts/MarkGEOCAPS.woff2') format('woff2'), url('/fonts/MarkGEOCAPS.woff') format('woff'), url('/fonts/MarkGEOCAPS.ttf') format('truetype');
    font-weight: normal ;
    font-style: normal;
    font-display: swap; /* Improves loading performance */
}


/* Apply to all headers */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Mark GEO CAPS', sans-serif;
    letter-spacing: 0.05em; /* Adjust spacing for caps fonts */
    font-weight: bold;
}

/* Or create a specific class */
.header-caps {
    font-family: 'Mark GEO CAPS', sans-serif;
    text-transform: uppercase; /* Since it's a caps font */
    letter-spacing: 0.1em;
}
.header-caps-Bold {
    font-family: 'Mark GEO CAPS', sans-serif;
    text-transform: uppercase; /* Since it's a caps font */
    letter-spacing: 0.1em;
    font-weight: bold;
}

/* For your main header specifically */
.site-header,
header h1,
.navbar-brand {
    font-family: 'Mark GEO CAPS', sans-serif;
}
/* ===== MOBILE ONLY FIXES - DESKTOP UNCHANGED ===== */

/* ===== MOBILE RESPONSIVE FIXES ===== */

/* ===== MOBILE FILTER DRAWER ===== */

@media only screen and (max-width: 768px) {
    
    /* Filter Toggle Button - Always visible on mobile */
    .filter-toggle-btn {
        display: block !important;
        position: fixed !important;
        top: 80px !important;
        left: 10px !important;
        z-index: 1001 !important;
        background: #dc3545 !important;
        color: white !important;
        border: none !important;
        padding: 12px 20px !important;
        border-radius: 25px !important;
        font-size: 16px !important;
        font-weight: bold !important;
        cursor: pointer !important;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
    }
    
    /* Overlay - Dark background when filters open */
    .filter-overlay {
        display: none !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: 999 !important;
    }
    
    .filter-overlay.active {
        display: block !important;
    }
    
    /* Filters Sidebar - Slides in from left */
    .filters,
    .sidebar,
    .filter-section {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 80% !important;
        max-width: 300px !important;
        height: 100vh !important;
        background: white !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
        transition: left 0.3s ease !important;
        padding: 20px !important;
        box-shadow: 2px 0 10px rgba(0,0,0,0.3) !important;
    }
    
    /* Filters visible state */
    .filters.active,
    .sidebar.active,
    .filter-section.active {
        left: 0 !important;
    }
    
    /* Close button inside filters */
    .filter-close-btn {
        display: block !important;
        position: absolute !important;
        top: 10px !important;
        right: 10px !important;
        background: transparent !important;
        border: none !important;
        font-size: 30px !important;
        color: #333 !important;
        cursor: pointer !important;
        width: 40px !important;
        height: 40px !important;
        line-height: 40px !important;
        text-align: center !important;
    }
    
    /* Products container - Full width */
    .products-container,
    .product-grid,
    .main-content {
        width: 100% !important;
        margin-left: 0 !important;
        padding: 10px !important;
        margin-top: 60px !important;
    }
    
    /* Product Grid - 1 column on mobile */
    .product-grid,
    .row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    /* Product Cards */
    .product-card,
    .card {
        width: 100% !important;
        margin: 0 0 15px 0 !important;
        background: white !important;
        border-radius: 8px !important;
        padding: 15px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    }
    
    /* Product Images */
    .product-card img,
    .card img {
        width: 100% !important;
        height: auto !important;
        max-height: 200px !important;
        object-fit: contain !important;
        margin: 0 auto 10px auto !important;
        display: block !important;
    }
    
    /* Product Title */
    .product-card h3,
    .product-card h4,
    .card-title {
        font-size: 15px !important;
        line-height: 1.3 !important;
        margin: 10px 0 !important;
    }
    
    /* Product Price */
    .product-price,
    .price {
        font-size: 18px !important;
        font-weight: bold !important;
        color: #e74c3c !important;
    }
    
    /* Buttons */
    .btn {
        width: 100% !important;
        padding: 12px !important;
        font-size: 14px !important;
    }
    
    /* Container */
    .container {
        padding: 10px !important;
        width: 100% !important;
    }
    
    /* Filter checkboxes and labels */
    .filters label,
    .sidebar label {
        display: block !important;
        padding: 10px 0 !important;
        font-size: 16px !important;
        cursor: pointer !important;
    }
    
    .filters input[type="checkbox"],
    .sidebar input[type="checkbox"] {
        margin-right: 10px !important;
        width: 20px !important;
        height: 20px !important;
    }
}

/* Desktop - Keep filters visible normally */
@media only screen and (min-width: 769px) {
    .filter-toggle-btn {
        display: none !important;
    }
    
    .filter-overlay {
        display: none !important;
    }
    
    .filter-close-btn {
        display: none !important;
    }
}