
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { 
        font-family: 'Inter', sans-serif; 
        background-color: #ffffff; 
        color: #333333; 
        line-height: 1.6;
    }
    .mc-nav { 
        display: flex; justify-content: space-between; align-items: center; 
        padding: 20px 5%; background: #f5f5dc;
        position: sticky; top: 0; z-index: 100;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .mc-logo { font-size: 24px; font-weight: bold; letter-spacing: 2px; }
    .mc-menu { display: flex; list-style: none; gap: 20px; }
    .mc-menu a { text-decoration: none; color: #333333; font-weight: 600; transition: color 0.3s; }
    .mc-menu a:hover { color: #d4af37; }
    .mc-cart-icon { cursor: pointer; font-weight: bold; }
    
    .mc-hero { 
        background: linear-gradient(135deg, #ffffff 0%, #f5f5dc 100%);
        padding: 100px 20px; text-align: center; border-bottom: 2px solid #d4af37;
    }
    .mc-hero h1 { font-size: 48px; margin-bottom: 15px; color: #d4af37; }
    .mc-hero p { font-size: 18px; margin-bottom: 30px; opacity: 0.8; }
    
    .mc-btn { 
        background: #d4af37; color: #ffffff; 
        padding: 12px 30px; border: none; cursor: pointer; 
        font-size: 16px; font-weight: bold; text-decoration: none; 
        display: inline-block; transition: opacity 0.3s;
        border-radius: 30px;
    }
    .mc-btn:hover { opacity: 0.8; }
    
    .mc-badges { 
        display: flex; justify-content: center; gap: 40px; padding: 20px; 
        background: #333333; color: #ffffff; 
        font-size: 14px; text-transform: uppercase; letter-spacing: 1px;
    }

    .mc-container { padding: 50px 5%; }
    .mc-grid { 
        display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; 
    }
    @media (max-width: 1024px) { .mc-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 768px) { .mc-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 480px) { .mc-grid { grid-template-columns: 1fr; } .mc-menu { display:none; } }

    .mc-card { 
        background: #f5f5dc; border: 1px solid rgba(0,0,0,0.05);
        padding: 15px; text-align: center; transition: transform 0.3s;
        border-radius: 0;
    }
    .mc-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
    .mc-card img { width: 100%; height: 250px; object-fit: cover; margin-bottom: 15px; }
    .mc-card h3 { font-size: 18px; margin-bottom: 10px; }
    .mc-card p { font-size: 16px; font-weight: bold; color: #d4af37; margin-bottom: 15px; }
    
    .mc-footer { background: #333333; color: #ffffff; padding: 50px 5%; text-align: center; }
    .mc-footer-cols { display: flex; justify-content: space-around; }

    .mc-modal { 
        display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
        background: rgba(0,0,0,0.5); z-index: 1000; align-items: center; justify-content: center;
    }
    .mc-modal-content { 
        background: #ffffff; padding: 30px; width: 90%; max-width: 500px;
        border-radius: 8px; position: relative; color: #333333;
        max-height: 80vh; overflow-y: auto;
    }
    .mc-close { position: absolute; top: 15px; right: 20px; font-size: 24px; cursor: pointer; }
    
    .mc-input { 
        width: 100%; padding: 10px; margin-top: 10px; 
        border: 1px solid #ccc; font-family: inherit;
    }
    #payment-method { width: 100%; padding: 10px; margin-top: 10px; font-family: inherit; }
    