/* Full-width layout overrides */

/* Typography Improvements */
body {
    font-family: 'Poppins', sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Product Name Styling */
.product-name,
.product-name a,
.product-title,
.product-title a {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500 !important;
    color: #333333 !important;
    line-height: 1.3 !important;
    margin-bottom: 5px !important;
    transition: color 0.3s ease !important;
}

.product-name a:hover,
.product-title a:hover {
    color: #7faf51 !important;
    text-decoration: none !important;
}

/* Category Text Styling */
.category-name,
.category-title,
.cat-title,
.block-title h3,
.block-title h4 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    color: #222222 !important;
    letter-spacing: 0.5px !important;
    text-transform: capitalize !important;
}

/* Price Styling */
.price,
.amount,
.price-box {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    color: #7faf51 !important;
}

/* Button Text Styling */
.btn,
.button,
button,
input[type="button"],
input[type="submit"] {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

/* Section Headers */
.section-title,
.widget-title,
.sidebar-title {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    color: #333333 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    position: relative;
    padding-bottom: 10px !important;
    margin-bottom: 20px !important;
}

.section-title:after,
.widget-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #7faf51;
}

/* Main container adjustments */
.container,
.container-fluid {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Product grid adjustments */
.products-grid {
    margin-left: -5px !important;
    margin-right: -5px !important;
}

.products-grid .product-item {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

/* Banner adjustments */
.banner-section,
.biolife-banner,
.slider-section {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Responsive adjustments */
@media (min-width: 1200px) {
    .container {
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .row {
        margin-left: -5px !important;
        margin-right: -5px !important;
    }
    
    [class*="col-"] {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
}

/* Ensure product items stretch properly */
.product-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-item .product-contain {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Fix for any content that might overflow */
body {
    overflow-x: hidden;
}

/* Ensure full-width sections */
.full-width-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}
