:root {
    --primary-color: #9D201E;
}
.home {
    position: relative;
}

.home_slider_container {
    position: relative;
    height: auto;
}

.home_slider .owl-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.home_slider_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.home_slider_nav:hover {
    background: #9D201E;
    color: white;
}

.home_slider_nav_prev {
    left: 20px;
}

.home_slider_nav_next {
    right: 20px;
}

/* Tag Line Styles */
.home_page_tag_line {
    background: #f8f9fa;
    padding: 15px 0;
    margin: 20px 0;
    border-top: 2px solid #9D201E;
    border-bottom: 2px solid #9D201E;
}

.home_page_tag_line marquee {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* Section Title Styles */
.section_title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-seprator {
    width: 80px;
    height: 3px;
    background: #9D201E;
    margin: 0 auto 30px;
}

/* Main Category Circular Icons */
.main-category-section {
    padding: 60px 0;
}

.category-circle-item {
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.category-circle-item:hover {
    transform: translateY(-10px);
}

.category-circle-link {
    display: block;
    text-decoration: none;
}

.category-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 4px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.category-circle:hover {
    border-color: #9D201E;
    box-shadow: 0 6px 20px rgba(255,42,20,0.3);
}

.category-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-circle-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-transform: uppercase;
}

/* Popular Categories Grid */
.home_category {
    padding: 60px 0;
    background: #fff;
}

.info-call {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    background: #fff;
}

.info-call:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.info-call img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.info-call:hover img {
    transform: scale(1.05);
}

.info-call h4 {
    padding: 15px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
    background: #f8f9fa;
}

/* Product Card Styles */
.products {
    padding: 60px 0;
    background: #f8f9fa;
}

.product {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.product_image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.product_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product:hover .product_image img {
    transform: scale(1.1);
}

.product_content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product_name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product_name a {
    color: #333;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product_name a:hover {
    color: #9D201E;
}

.product_category {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.custom_info_title {
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.custom_info_title1 {
    font-size: 14px;
    color: #999 !important;
    margin-right: 5px;
}

.custom_info_title2 {
    font-size: 14px;
    font-weight: 600;
    background: #9D201E;
    color: white !important;
    padding: 2px 8px;
    border-radius: 3px;
    display: inline-block;
}

.add-cart-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #9D201E;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255,42,20,0.3);
}

.add-cart-icon:hover {
    background: #d91f0f;
    transform: scale(1.1);
}

/* Category Cards */
.fullboxcats .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.fullboxcats .card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.fullboxcats .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fullboxcats .card:hover .card-img-top {
    transform: scale(1.05);
}

.fullboxcats .card-body {
    padding: 20px;
    text-align: center;
}

.fullboxcats .card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.fullboxcats .card-title a {
    color: #333;
    text-decoration: none;
}

.fullboxcats .card-title a:hover {
    color: #9D201E;
}

/* Brand Section */
.home_brand {
    padding: 60px 0;
    background: #fff;
}

.home_brand .feature_col {
    margin-bottom: 30px;
}

.home_brand .feature_col img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    background: #fff;
}

.home_brand .feature_col img:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

/* Home Sub Banner */
.homesubbanner {
    width: 100%;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Load More Button */
.load_more {
    text-align: center;
    margin: 40px auto;
}

.load_more a {
    display: inline-block;
    padding: 12px 40px;
    background: #9D201E;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255,42,20,0.3);
}

.load_more a:hover {
    background: #d91f0f;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255,42,20,0.4);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .home_slider_container {
        height: 300px;
    }
    
    .home_slider .owl-item img {
        height: 300px;
    }
    
    .section_title {
        font-size: 24px;
    }
    
    .category-circle {
        width: 100px;
        height: 100px;
    }
    
    .category-circle-title {
        font-size: 14px;
    }
    
    .product_image {
        height: 220px;
    }
}

/* Shop the Reels Section */
.reels-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}
.reels-video-wrapper {
    width: 415px;
    height: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}
.reels-youtube-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none; /* Optional: disables interaction if you want pure background reel */
}
@media (max-width: 768px) {
    .reels-video-wrapper {
        width: 100%;
        max-width: 415px;
        height: 600px; /* Keeps exact height on mobile, or reduce if needed e.g. 500px */
        border-radius: 8px;
    }
}