.hero-section {
    position: relative;
    height: 600px;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.55);
    }
}

.mobile-hero-section {
    position: relative;
    height: 575px;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

/* Promotional Banner Styles */
.promo-banner {
    background-color: var(--primary-red);
    padding: 0.5rem 0;
    color: white;
    overflow: hidden;
}

.promo-link {
    color: white;
    display: block;
    text-align: center;
    padding: 0.5rem 0;
}



/* Vertical divider for medium screens and up */
@media (min-width: 768px) {
    .promo-slide:not(:last-child) {
        position: relative;
    }
    
    .promo-slide:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.3);
    }
}

.promo-icon {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.promo-icon-png {
    width: auto;
    height: 22.41px;
    margin-bottom: 0.4rem;
}

.promo-heading {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0;
    text-transform: uppercase;
}

.promo-text {
    font-size: 0.9rem !important;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.promo-arrow {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.promo-arrow svg {
    width: 25px;
    height: auto;
    fill: currentColor;
}

.promo-link:hover .promo-arrow {
    transform: translateX(6px);
}

/* Mobile Sliding Animation */
@media (max-width: 767px) {
    .promo-banner {
        padding: 0;
    }

    .promo-banner .row {
        position: relative;
        width: 100%;
        height: 100px;
        overflow: hidden;
    }

    .promo-slide {
        position: absolute;
        width: 100%;
        left: 0;
        will-change: transform;
    }
    .promo-icon {
        margin-top: 0.25rem;
    }
    .promo-row {
        justify-self: center;
    }
}

/* Video Categories Section Styles */
.video-categories-wrapper {
    position: relative;
}

.video-categories-banner {
    background-color: var(--primary-grey);
    height: 180px;
    display: flex;
    position: relative;
    z-index: 1;
    padding-top: 1.75rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 1;
}

.video-categories-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-grey);
    opacity: 0.82;
    z-index: -1;
}

@media (max-width: 767px) {
    .video-categories-banner {
        padding-top: 2rem;
    }
}

.video-categories-heading {
    color: white;
    text-transform: uppercase;
    margin: 0;
}

.video-categories-subheading {
    color: white;
    text-transform: uppercase;
    font-weight: 300;
}

@media (max-width: 350px) {
    .video-categories-heading {
        font-size: 2rem !important;
    }
}

.video-categories {
    position: relative;
    margin-top: -80px;
    padding: 2rem 0 3rem;
    z-index: 2;
}

@media (min-width: 576px) and (max-width: 767px) {
    .video-categories .row {
        max-width: 540px;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 767px) {
    .video-categories {
        margin-top: -70px;
        padding: 1.5rem 0 2.5rem;
    }
}

.video-category-card {
    display: block;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    transition: box-shadow 0.3s ease;
    text-decoration: none;
    color: white;
    height: 100%;
    min-height: 400px;
    background: #000; /* Ensures no white edges show during video load */
}

.video-category-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Height adjustments for different screen sizes */
@media (min-width: 992px) and (max-width: 1199px) {
    .video-category-card {
        min-height: 500px;
    }
}

@media (min-width: 1200px) {
    .video-category-card {
        min-height: 450px;
    }
    .video-categories-banner,
    .static-categories-banner {
        background-size: 1200px auto !important;
        background-position: center;
    }
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.category-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.video-content {
    width: 100%;
}

.video-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    color: white;
}

.video-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.6rem;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--primary-red);
    text-transform: uppercase;
    transition: gap 0.3s ease;
}

.category-arrow {
    display: inline-flex;
    align-items: center;
}

.category-arrow svg {
    width: 25px;
    height: auto;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.video-category-card:hover .category-link {
    gap: 1.1rem;
}

.video-category-card:hover .category-arrow svg {
    transform: translateX(5px);
}

/* Blockquote Styles */
.blockquote-container-fluid {
    background-color: #f5f5f5;
}

.blockquote-wrapper {
    position: relative;
    padding: 2rem 0;
}

.quote-img {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.9;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

.quote-img-opening {
    top: 0;
    left: -70px;
}

.quote-img-closing {
    bottom: 13px;
    right: -70px;
}

.blockquote {
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .quote-img {
        width: 40px;
        height: 40px;
    }
    .quote-img-opening {
        left: -25px;
    }
    .quote-img-closing {
        right: -25px;
    }
    .blockquote p {
        font-size: 1.25rem !important;
    }
}

.blockquote-inner {
    padding-left: 4rem;
    padding-right: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .blockquote-inner {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    .quote-img-opening {
        left: -35px;
    }
    .quote-img-closing {
        right: -35px;
    }
}

@media (max-width: 767px) {
    .quote-img {
        width: 30px;
        height: 30px;
    }
    .quote-img-opening {
        left: -25px;
        top: 15px;
    }
    .quote-img-closing {
        right: -25px;
        bottom: 30px;
    }
    .blockquote-inner {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

@media (max-width: 575px) {
    .blockquote-inner {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .quote-img-opening {
        left: -15px;
        top: 10px;
    }
    .quote-img-closing {
        right: -10px;
        bottom: 30px;
    }
    .video-categories-banner,
    .static-categories-banner {
        background-size: 125% auto !important;
        background-position: top center;
    }
}

.quote-img-opening {
    margin-bottom: 2.5rem;
}

.quote-img-closing {
    margin-top: 2.5rem;
}

.blockquote-footer {
    color: var(--text-black);
    font-size: 0.9rem;
}

.review-link {
    color: var(--primary-grey);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.review-link i {
    transition: transform 0.3s ease;
}

.review-link:hover {
    color: var(--primary-red);
}

.review-link:hover i {
    transform: translateX(4px);
}

/* Static Categories Section Styles */
.static-categories-wrapper {
    position: relative;
}

.static-categories-banner {
    background-color: var(--primary-red);
    height: 180px;
    display: flex;
    position: relative;
    z-index: 1;
    padding-top: 1.75rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 1;
}

.static-categories-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-red);
    opacity: 0.82;
    z-index: -1;
}

@media (max-width: 767px) {
    .static-categories-banner {
        padding-top: 2rem;
        background-size: 200% auto;
        background-position: center;
    }
}

.static-categories-heading {
    color: white;
    text-transform: uppercase;
    margin: 0;
}

.static-categories-subheading {
    color: white;
    text-transform: uppercase;
    font-weight: 300;
}

.static-categories {
    position: relative;
    margin-top: -80px;
    padding: 2rem 0 3rem;
    z-index: 2;
}

.static-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 1.5rem;
}

/* Grid item positioning */
.static-category-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: white;
    background: #000;
    aspect-ratio: 1;
}

/* Tall and wide variations */
.static-category-card.tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.static-category-card.wide {
    grid-column: span 2;
    aspect-ratio: auto;
}

.static-category-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.static-category-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Specific grid item positioning for complex layout */
.static-category-card:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; } /* Tall category */
.static-category-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.static-category-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.static-category-card:nth-child(4) { grid-column: 2; grid-row: 2; }
.static-category-card:nth-child(5) { grid-column: 3; grid-row: 2; }
.static-category-card:nth-child(6) { grid-column: 1; grid-row: 3; }
.static-category-card:nth-child(7) { grid-column: 2 / span 2; grid-row: 3; } /* Wide category */

.static-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.static-category-vertical-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.15) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.static-category-content {
    width: 100%;
}

.static-category-title {
    font-size: 1.3rem;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
}

.static-category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--primary-red);
    text-transform: uppercase;
    transition: gap 0.3s ease;
}

.static-category-arrow {
    display: inline-flex;
    align-items: center;
}

.static-category-arrow svg {
    width: 25px;
    height: auto;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.static-category-card:hover .static-category-link {
    gap: 1.1rem;
}

.static-category-card:hover .static-category-arrow svg {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .static-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
        display: grid;
        grid-auto-rows: minmax(150px, auto);
    }

    /* Reset grid positioning for 2-column layout */
    .static-category-card:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }

    /* Make all cards square by default on smaller screens */
    .static-category-card {
        aspect-ratio: 1;
        min-height: 150px;
    }

    /* Special handling for tall and wide categories */
    .static-category-card.tall {
        grid-column: 1;
        grid-row: 1 / span 2;
        aspect-ratio: auto;
        min-height: 100%;
    }

    .static-category-card.wide {
        grid-column: 1 / -1;
        grid-row: auto;
        aspect-ratio: 2/1;
        min-height: 150px;
    }

    /* Specific positioning for categories 1 and 7 */
    .static-category-card:nth-child(1) {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .static-category-card:nth-child(7) {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .static-categories {
        margin-top: -70px;
        padding: 1.5rem 0 2.5rem;
    }
}

@media (max-width: 575px) {
    .static-categories-grid {
        padding: 0 0.75rem;
        gap: 0.75rem;
    }
    .static-category-title {
        font-size: 1rem;
    }
    .static-category-link {
        font-size: 0.9rem;
    }
    .static-category-overlay {
        padding: 0.75rem;
    }
    .video-categories-banner,
    .static-categories-banner {
        background-size: 125% auto !important;
        background-position: top center;
    }
}

@media (max-width: 450px) {
    .static-category-title {
        font-size: 0.9rem;
    }
    .static-category-link {
        display: none;
    }
    .static-categories-grid {
        padding: 0 0.5rem;
        gap: 0.5rem;
    }
}

@media (max-width: 400px) {
    .static-category-overlay {
        padding: 0.5rem;
    }
}

/* Company About Section Styles */
.company-about-wrapper {
    padding: 3rem 0;
    background-color: #f5f5f5;
}

.company-about-content {
    max-width: 900px;
    margin: 0 auto;
}

.company-about-subheading {
    color: var(--primary-red);
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
}

.company-about-heading {
    color: var(--text-black);
    text-transform: uppercase;
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0;
}

.company-about-content p {
    color: var(--text-black);
    line-height: 1.8;
}

.company-about-content .lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-black);
}

@media (max-width: 767px) {
    .company-about-wrapper {
        padding: 2.5rem 0;
    }
    
    .company-about-heading {
        font-size: 2rem;
    }
    
    .company-about-content .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .company-about-wrapper {
        padding: 2rem 0;
    }
    
    .company-about-heading {
        font-size: 1.75rem;
    }
    
    .company-about-content p {
        font-size: 0.95rem;
    }
    
    .company-about-subheading {
        font-size: 1rem;
    }
}

/* Featured Products Section Styles */
.featured-products-wrapper {
    position: relative;
}

/* Add selling badge override for featured products */
.featured-products-grid .selling-badge {
    background-color: var(--primary-grey) !important;
}

.featured-products-banner {
    background-color: var(--primary-red);
    height: 180px;
    display: flex;
    position: relative;
    z-index: 1;
    padding-top: 1.75rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 1;
}

.featured-products-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-red);
    opacity: 0.82;
    z-index: -1;
}

@media (max-width: 767px) {
    .featured-products-banner {
        padding-top: 2rem;
        background-size: 200% auto;
        background-position: center;
    }
}

.featured-products-heading {
    color: white;
    text-transform: uppercase;
    margin: 0;
}

.featured-products-subheading {
    color: white;
    text-transform: uppercase;
    font-weight: 300;
}

.featured-products-grid {
    position: relative;
    margin-top: -80px;
    z-index: 2;
}

/* Large screens (4 columns) - lg and up */
@media (min-width: 992px) {
    .featured-products-grid .row>div:nth-child(-n+4) .product-list-image-container {
        box-shadow: 0 -12px 12px rgba(0, 0, 0, 0.1);
    }
}

/* Medium and small screens (2 columns) */
@media (max-width: 991px) {
    .featured-products-banner {
        background-size: 125% auto !important;
        background-position: top center;
    }

    .featured-products-grid {
        margin-top: -60px;
    }

    .featured-products-grid .row>div:nth-child(-n+2) .product-list-image-container {
        box-shadow: 0 -12px 12px rgba(0, 0, 0, 0.1);
    }
}

/* Product Card Styles */
.product-title {
    transition: text-decoration 0.2s ease-in-out !important;
}

@media (hover: hover) and (pointer: fine) {
    .product-card-link:hover .product-title {
        text-decoration: underline !important;
    }
}

@media (max-width: 400px) {
    .product-list-content {
        font-size: 0.9rem !important;
    }
}

.selling-badge {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary-red);
    color: white;
    padding: 4px 8px;
    font-size: 0.85rem;
    font-weight: 300;
    z-index: 1;
    text-transform: uppercase;
    max-width: 35%;
    white-space: normal;
    line-height: 1.2;
    word-wrap: break-word;
    text-align: center;
}

@media (max-width: 575px) {
    .selling-badge {
        display: none !important;
    }
}

/* Product Meta Styles */
.product-meta {
    margin-top: 0.3rem;
    display: flex;
    flex-direction: column;
}

.product-meta__item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--bs-gray-600);
    letter-spacing: 0.01em;
}

.product-meta__icon {
    margin-right: 0.4rem;
    opacity: 0.7;
    color: var(--bs-gray-600);
}

.product-meta__text {
    font-weight: 300;
}

@media (max-width: 575px) {
    .product-meta {
        align-items: center;
        margin-top: 0.5rem;
    }

    .product-meta__item {
        justify-content: center;
        text-align: center;
    }
}

/* Product Image Transition Styles */
.product-list-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-list-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Only apply transition effects when there are multiple images */
.has-multiple-images .product-list-image {
    transition: transform 0.3s ease-in-out;
}

.product-list-image--primary {
    z-index: 1;
}

.product-list-image--secondary {
    z-index: 2;
    transform: translateX(100%);
}

/* Only apply hover effects when there are multiple images */
@media (hover: hover) and (pointer: fine) {
    .has-multiple-images:hover .product-list-image--secondary {
        transform: translateX(0);
    }

    .has-multiple-images:hover .product-list-image--primary {
        transform: translateX(-100%);
    }
}