/*
* SILVER SALES - Responsive Stylesheet
* This file contains additional responsive styles for the SILVER SALES website
*/

/* ======= Extra Small Devices (phones, less than 576px) ======= */
@media (max-width: 575.98px) {
    /* Header */
    .top-bar {
        text-align: center;
    }
    
    .top-bar .text-end {
        text-align: center !important;
        margin-top: 0.5rem;
    }
    
    .logo {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    /* Product Cards */
    .product-image {
        height: 180px;
    }
    
    /* CTA Sections */
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    /* Contact Page */
    .map-container {
        min-height: 300px;
    }
}

/* ======= Small Devices (tablets, 576px and up) ======= */
@media (min-width: 576px) and (max-width: 767.98px) {
    /* Header */
    .logo {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    /* Product Cards */
    .product-image {
        height: 190px;
    }
}

/* ======= Medium Devices (tablets, 768px and up) ======= */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* Header */
    .navbar .nav-link {
        padding: 0.5rem 0.75rem;
    }
    
    /* Product Cards */
    .product-image {
        height: 160px;
    }
    
    /* Team Cards */
    .team-img img {
        width: 120px;
        height: 120px;
    }
}

/* ======= Large Devices (desktops, 992px and up) ======= */
@media (min-width: 992px) and (max-width: 1199.98px) {
    /* Product Cards */
    .product-image {
        height: 180px;
    }
}

/* ======= Extra Large Devices (large desktops, 1200px and up) ======= */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* ======= Print Styles ======= */
@media print {
    .top-bar,
    .navbar,
    .cta-section,
    footer,
    .product-inquiry,
    .product-share,
    .related-products {
        display: none !important;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
    }
    
    .product-title {
        font-size: 24pt;
        margin-top: 1cm;
    }
    
    .product-description {
        font-size: 12pt;
    }
    
    a[href]:after {
        content: none !important;
    }
}