/* ==========================================================================
   RigelSphere – Global Styles (header styles removed)
   ==========================================================================
   All header / navigation / utility-bar / cart / auth / search styles
   have been moved exclusively into header.css.
   This file now contains only page-level and component styles.
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    overflow-x: hidden;
    max-width: 100%;
}

/* --------------------------------------------------------------------------
   BANNER
   -------------------------------------------------------------------------- */
.banner {
    background: url('../load/images/banner.webp') center/cover no-repeat;
    color: #fff;
    padding: 120px 40px 80px;
    text-align: center;
    position: relative;
	height: 420px;
}


.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.banner > div {
    position: relative;
    z-index: 2;
}

.banner h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.banner p {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    margin: 0 10px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: #ffd700;
    color: #000;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

/* --------------------------------------------------------------------------
   TRUST BAR
   -------------------------------------------------------------------------- */
.trust-bar {
    background: #000;
    color: #fff;
    padding: 25px 40px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 220px;
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    width: 40px;
    color: #f4b400;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   SHOP BY CATEGORY
   -------------------------------------------------------------------------- */
.shop-by-category {
    padding: 60px 40px;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #ffd700;
    margin: 15px auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-right: 5%;
    margin-left: 5%;
    width: 90%;
    box-sizing: border-box;
}

.category-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    color: #000 !important;
    text-decoration: none !important;
}

.category-card:hover {
    transform: translateY(-8px);
    color: #000 !important;
    text-decoration: none !important;
}

.category-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.category-info {
    padding: 15px;
    text-align: left;
}

/* --------------------------------------------------------------------------
   FEATURED PRODUCTS
   -------------------------------------------------------------------------- */
.featured-products {
    padding: 60px 40px;
    background: #f8f9fa;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-right: 5%;
    margin-left: 5%;
    width: 90%;
    box-sizing: border-box;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.product-info {
    padding: 15px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
}

.product-details {
    flex: 1;
}

.product-info h4 {
    display: -webkit-box;
    -webkit-line-clamp: 2;          /* max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* optional: make sure it wraps properly */
    word-break: break-word;
    line-height: 1.3;
	margin-bottom: 5px;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.add-to-cart-btn {
    width: 42px;
    height: 42px;
    background: #000;
    color: #ffd700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.add-to-cart-btn i {
    font-size: 18px;
}

.add-to-cart-btn:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.add-to-cart-btn:focus,
.add-to-cart-btn:active {
    background: #000;
    color: #ffd700;
    outline: none;
}

/* --------------------------------------------------------------------------
   QUOTE SECTION
   -------------------------------------------------------------------------- */
.quote-section {
    background: #111;
    color: #fff;
    padding: 40px 50px;
}

.quote-wrapper {
    max-width: 75%;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-left: 5%;
    margin-right: 20%;
}

.quote-left {
    flex: 0 0 280px;
}

.quote-left h2 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #fff;
}

.quote-left p {
    font-size: 13.5px;
    opacity: 0.85;
    margin-bottom: 18px;
    line-height: 1.4;
}

.btn-request-quote {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 1.5px solid #fff;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-request-quote:hover {
    background: #fff;
    color: #111;
}

.quote-form-container {
    flex: 1;
}

.quote-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.quote-form input,
.quote-form select {
    background: #222;
    border: 1px solid #444;
    color: #fff;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 4px;
}

.quote-form input::placeholder,
.quote-form select {
    color: #aaa;
}

.quote-form input:focus,
.quote-form select:focus {
    outline: none;
    border-color: #ffd700;
}

.quote-form button.btn-send {
    grid-column: span 1;
    background: #ffd700;
    color: #111;
    border: none;
    padding: 14px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.quote-form button.btn-send:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* Help / Need Help Choosing section */
.help-section {
    background: #111;
    color: #fff;
    padding: 40px 50px;
}
.help-wrapper {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}
.help-left {
    flex: 0 0 280px;
}
.help-left h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.help-left p {
    font-size: 13.5px;
    opacity: 0.85;
    margin-bottom: 18px;
    line-height: 1.4;
}

.benefits-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 15px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
}

.benefit-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
    width: 32px;
    color: #f4b400;
}

.benefit-card h4 {
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 5px;
}

.benefit-card p {
    font-size: 12.5px;
    line-height: 1.45;
    opacity: 0.9;
    margin: 0;
}
/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
footer {
    background: #000;
    color: #ddd;
    padding: 55px 40px 25px;
}

.footer-grid {
    max-width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
    gap: 38px;
}

.footer-col {
    font-size: 14px;
}

.footer-col h4 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.footer-col p {
    margin-bottom: 7px;
    line-height: 1.5;
    font-size: 13.8px;
}

.footer-col p i {
    width: 18px;
    color: #f4b400;
    text-align: center;
}

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 7px;
    font-size: 13.8px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #ffd700;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
}

.footer-logo span {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.4px;
}
.bulk-note{
    display:block;
    margin-top:4px;
    color:#000;
    font-size:12px;
    font-weight:500;
}
.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    font-size: 17px;
}

.social-icons a {
    color: #ccc;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: #ffd700;
}

.newsletter-col p {
    margin-bottom: 12px;
    font-size: 13.5px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 11px 14px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 13.5px;
    background: #fff;
}

.newsletter-form button {
    background: #ffd700;
    color: #000;
    border: none;
    padding: 0 18px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #e6c200;
}

.footer-bottom {
    max-width: 1320px;
    margin: 45px auto 0;
    padding-top: 22px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 12.5px;
    color: #888;
}

/* ==========================================================================
   MOBILE RESPONSIVE (page content only – header handled in header.css)
   ========================================================================== */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Banner */
    .banner {
        padding: 80px 20px 60px !important;
        min-height: auto;
        height: auto;
    }

    .banner h1 {
        font-size: 28px;
        text-align: left;
        margin-bottom: 10px;
    }

    .banner p:first-of-type {
        font-size: 16px;
        text-align: left;
        margin-bottom: 8px;
    }

    .banner p:nth-of-type(2) {
        font-size: 18px;
        text-align: left;
        max-width: 100%;
        margin: 0 0 25px 0;
    }

    .banner > div {
        text-align: left;
        max-width: 100%;
    }

    .btn {
        margin: 8px 8px 8px 0;
        padding: 12px 24px;
        font-size: 15px;
    }

    /* Trust bar */
    .trust-bar {
        padding: 20px 15px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .trust-item {
        min-width: 45%;
        flex: 1 1 45%;
    }

    .trust-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        width: 40px;
        color: #f4b400;
        flex-shrink: 0;
    }

    /* Categories */
    .shop-by-category {
        padding: 40px 15px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-right: 2.5%;
        margin-left: 2.5%;
        width: 95%;
    }

    .category-card img {
        height: 160px;
    }

    /* Products */
    .featured-products {
        padding: 40px 15px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-right: 2.5%;
        margin-left: 2.5%;
        width: 95%;
    }

    .product-info {
        padding: 5px 10px 16px;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 10px;
    }

    .product-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    /* Quote */
    .quote-section {
        padding: 30px 15px;
        overflow-x: hidden;
    }

    .quote-wrapper {
        flex-direction: column;
        gap: 25px;
        max-width: 100%;
        margin: 0;
        width: 100%;
    }

    .quote-left {
        flex: none;
        width: 100%;
    }

    .quote-form {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        gap: 15px;
    }

    .quote-form input,
    .quote-form select {
        width: 100%;
        box-sizing: border-box;
    }

    .quote-form button.btn-send {
        grid-column: span 1;
        width: 100%;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    footer {
        padding: 40px 15px 20px;
    }

    .newsletter-col {
        grid-column: span 2;
    }
	    /* Help section */
    .help-section {
        padding: 30px 15px;
    }
    .help-wrapper {
        flex-direction: column;
        gap: 25px;
    }
    .help-left {
        flex: none;
        width: 100%;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}