/* 
   Bulk Enquiry Page - Optimized & Professional
   Final Version with CSS Variables and Clean Grid Logic.
*/

:root {
    --brand-yellow-t: #ffdb3b;
    --brand-yellow-b: #ffc425;
    --brand-black: #000000;
    --brand-text: #111111;
    --skeleton-bg: #f5f5f5;
    --transition-smooth: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bulk-enquiry-wrapper {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-text);
}

.bulk-enquiry-wrapper .container {
    padding: 0 30px;
}

/* Optimized Header Section */
.bulk-header {
    margin-bottom: 70px;
    text-align: center;
}

.bulk-header h1 {
    font-size: 46px;
    font-weight: 500;
    font-style: italic;
    /* Exactly as requested */
    color: var(--brand-black);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.bulk-header .subtitle {
    font-size: 28px;
    font-style: italic;
    /* Exactly as requested */
    color: #444;
}

/* Categorization Styling */
.bulk-category {
    margin-bottom: 90px;
}

.category-title {
    font-size: 30px;
    font-weight: 700;
    font-style: italic;
    /* Consistency */
    text-align: center;
    margin-bottom: 55px;
    color: var(--brand-black);
}

/* Highly Optimized Desktop Grid (4-Cols) */
.bulk-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 65px 25px;
    text-align: center;
}

.bulk-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bulk-item img {
    max-width: 100%;
    height: 190px;
    object-fit: contain;
    margin-bottom: 25px;
    background: transparent;
}


.bulk-item h3 {
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: normal;
    color: var(--brand-black);
}

.bulk-item h3 a {
    color: inherit !important;
    text-decoration: none !important;
    font-weight: inherit !important;
    font-style: inherit !important;
}

.bulk-item h3 a:hover,
.bulk-item h3 a:focus {
    color: inherit !important;
    text-decoration: underline !important;
}

/* Premium Yellow Buttons - Same to Same Gradient */
.enquiry-btn {
    display: inline-block;
    background: linear-gradient(180deg, var(--brand-yellow-t) 0%, var(--brand-yellow-b) 100%) !important;
    color: var(--brand-black) !important;
    border: 1px solid #d8a623 !important;
    padding: 12px 28px;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none !important;
    text-transform: capitalize;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.enquiry-btn:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    filter: brightness(0.96);
    color: var(--brand-black) !important;
}

/* Consolited Responsive Logic */
@media (max-width: 1100px) {
    .bulk-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bulk-header h1 {
        font-size: 38px;
    }
}

@media (max-width: 800px) {
    .bulk-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .bulk-header h1 {
        font-size: 34px;
    }

    .category-title {
        font-size: 26px;
    }

    .bulk-enquiry-wrapper {
        padding: 50px 0;
    }
}

@media (max-width: 500px) {
    .bulk-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .bulk-header h1 {
        font-size: 30px;
    }

    .bulk-header .subtitle {
        font-size: 20px;
    }

    .bulk-item img {
        height: 160px;
    }

    .enquiry-btn {
        width: 100%;
        max-width: 200px;
        padding: 10px 0;
    }
}