


/**
 * Homepage Styles - Design System Implementation
 * RecoverTactical Theme - Tactical E-Commerce UI
 * Following RecoverTactical Design System v1.0.0
 */

/* ==========================================================================
   CSS Variables - RecoverTactical Design System
   ========================================================================== */
   @font-face {
        font-family: 'Spoiler';
        src: url('../fonts/Spoiler-Regular.woff2') format('woff2'),
            url('../fonts/Spoiler-Regular.woff') format('woff');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
    }
    @font-face {
        font-family: 'Matritsa';
        src: url('fonts/FbMatritsaNarrowEn-Black.eot'); /* IE9 compat mode */
        src: url('fonts/FbMatritsaNarrowEn-Black.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('fonts/FbMatritsaNarrowEn-Black.woff2') format('woff2'), /* modern browsers */
        url('fonts/FbMatritsaNarrowEn-Black.woff') format('woff'),
        url('fonts/fbmatritsanarrowen-blackwebfont.ttf') format('truetype'),
        url('fonts/fbmatritsanarrowen-blackwebfont.svg#FbMatritsaNarrowEn') format('svg'); /* legacy iOS */
        font-weight: 900;
        font-style: normal;
        }
        
        /* Medium weight font */
        @font-face {
        font-family: 'Matritsa';
        src: url('fonts/FbMatritsaNarrowEn-Medium.eot');
        src: url('fonts/FbMatritsaNarrowEn-Medium.eot?#iefix') format('embedded-opentype'),
        url('fonts/FbMatritsaNarrowEn-Medium.woff2') format('woff2'),
        url('fonts/FbMatritsaNarrowEn-Medium.woff') format('woff'),
        url('fonts/fbmatritsanarrowen-mediumwebfont.ttf') format('truetype'),
        url('fonts/fbmatritsanarrowen-mediumwebfont.svg#FbMatritsaNarrowEn') format('svg');
        font-weight: 500;
        font-style: normal;
        }

   :root {
    /* Primary Design System Colors */
    --rt-primary-orange: #FF6600;
    --rt-dark-charcoal: #1A1A1A;
    --rt-medium-gray: #777777;
    --rt-light-gray: #F2F2F2;
    --rt-white: #FFFFFF;
    --rt-overlay-dark: rgba(0, 0, 0, 0.4);
    --rt-overlay-light: rgba(255, 255, 255, 0.9);
    
    /* Legacy Variables (for compatibility) */
    --primary-color: #FF6600;
    --secondary-color: #1A1A1A;
    --background-color: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #777777;
    --accent-color: #F2F2F2;
    --overlay-dark: rgba(0, 0, 0, 0.4);
    
    /* Typography - Design System */
    --rt-font-primary: 'Montserrat', Arial, Helvetica, sans-serif;
    --rt-hero-title-size: 2.5rem;
    --rt-section-title-size: 1.75rem;
    --rt-product-title-size: 2rem;
    --rt-subtitle-size: 1rem;
    --rt-body-size: 1rem;
    --rt-button-size: 0.875rem;
    
    --rt-font-weight-bold: 700;
    --rt-font-weight-semibold: 600;
    --rt-font-weight-regular: 400;
    
    --rt-letter-spacing-wide: 0.1em;
    --rt-letter-spacing-normal: 0.05em;
    --rt-letter-spacing-tight: 0.01em;
    
    /* Legacy Typography */
    --primary-font: 'Montserrat', sans-serif;
    --hero-title-size: 2.5rem;
    --section-title-size: 1.75rem;
    --card-title-size: 1.25rem;
    --body-size: 1rem;
    --button-size: 0.875rem;
    --caption-size: 0.75rem;
    --font-bold: 700;
    --font-semibold: 600;
    --font-regular: 400;
    --letter-spacing-tight: 0.05em;
    --letter-spacing-normal: 0.01em;
    
    /* Spacing - Design System */
    --rt-section-padding: 60px;
    --rt-card-gap: 24px;
    --rt-grid-gap: 32px;
    --rt-inner-padding: 16px;
    --rt-button-padding: 16px 32px;
    
    /* Legacy Spacing */
    --section-padding: 60px;
    --card-gap: 24px;
    --grid-gap: 32px;
    /* --inner-padding: 16px; */
    
    /* Shadows - Design System */
    --rt-card-shadow: 0 2px 8px rgba(0,0,0,0.1);
    --rt-hover-shadow: 0 4px 16px rgba(0,0,0,0.15);
    --rt-text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    
    /* Legacy Shadows */
    --card-shadow: 0 2px 8px rgba(0,0,0,0.1);
    --hover-shadow: 0 4px 16px rgba(0,0,0,0.15);
    
    /* Border Radius - Design System */
    --rt-border-radius-small: 2px;
    --rt-border-radius-medium: 8px;
    
    /* Legacy Border Radius */
    --border-radius-small: 4px;
    --border-radius-medium: 8px;
    --button-border-radius: 2px;
    
    /* Transitions - Design System */
    --rt-transition: all 0.3s ease;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

.homepage-content {
    font-family: var(--primary-font);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--inner-padding);
}
.shoptimizer-archive .col-full{
    max-width:100% !important;
    padding: 0;
}
.page-template-default .archive-header{
    padding-bottom: 0 !important;
}
.page.page-template-default .content-area {
    margin-bottom: 0 !important;
}
#ajax-loader{
    display:none;
}
.shoptimizer-primary-navigation{
    padding-left: 0;
}
.secondary-wrapper{
    display:none;
}
#content.site-content{
   padding-top: 72px;
}
/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--primary-font);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-tight);
    margin: 0 0 1rem 0;
}

.section-title {
    font-size: var(--section-title-size);
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: var(--button-size);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--button-border-radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: var(--letter-spacing-tight);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.btn-primary:hover {
    background-color: var(--background-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}
.shoptimizer-archive{
    margin-top: -2px;
}
/* ==========================================================================
   Hero Carousel Section
   ========================================================================== */

.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.slide-background {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--secondary-color) 0%, 
        #2a2a2a 50%, 
        var(--secondary-color) 100%
    );
    position: relative;
}

.slide-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(255, 102, 0, 0.1) 50%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(255, 102, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 102, 0, 0.15) 0%, transparent 50%);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.slide-content {
    position: absolute;
    bottom: 80px;
    left: 60px;
    z-index: 10;
    max-width: 600px;
}

.slide-text {
    color: var(--background-color);
}

.slide-title {
    font-size: var(--hero-title-size);
    font-weight: var(--font-bold);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    letter-spacing: var(--letter-spacing-tight);
    line-height: 1.2;
}

.slide-subtitle {
    font-size: 1.125rem;
    font-weight: var(--font-regular);
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.5;
    max-width: 500px;
}

.hero-cta-container {
    margin-bottom: 2rem;
}

.hero-cta {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: var(--font-semibold);
    letter-spacing: 0.05em;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.hero-cta:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: var(--font-semibold);
    color: var(--background-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.feature-icon {
    font-size: 1.25rem;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.5));
}

.feature-text {
    letter-spacing: 0.05em;
}

.slide-subtitle {
    font-size: var(--body-size);
    font-weight: var(--font-regular);
    margin-bottom: 2rem;
    text-transform: none;
    letter-spacing: var(--letter-spacing-normal);
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    right: 60px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.carousel-dot.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    width: 24px;
}

/* ==========================================================================
   Product Highlights Section
   ========================================================================== */

.product-highlights-section {
    padding: 0;
    background-color: var(--background-color);
    margin-top: 10px;
}

.highlights-grid {
    display: block;
}

.highlight-item {
    position: relative;
    width: 100%;
    height: auto; 
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.highlight-image{
    min-height: 370px;
    width: 100%;
}


.highlight-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    
}

.highlight-title-image {
    max-width: 363px;
    height: auto;
    margin-bottom: 15px;
}

.highlight-subtitle {
    font-size: 32px;
    font-family: 'spoiler';
    font-weight: 900;
    margin-bottom: 10px;
    color: white;
    letter-spacing: 0.72px;
}

.btn-action {
    font-family: 'Matritsa';
    font-weight: 900;
    font-size: 16px;
    background-color: #EF6526;
    color: white;
    padding: 10px 10px;
    height: 44px;
    width: 105px;
    display: inline-block; 
    text-align: center;
    border: none;
    cursor: pointer; 
  }
  .btn-action:hover{
    background-color:#d24d1f;
  }
  .product-highlights-section {
    padding: 0;
    background-color: var(--background-color);
}

.highlights-grid {
    display: block;
}

.highlight-item {
    position: relative;
    width: 100%;
    height: auto; 
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.highlight-image {
    min-height: 370px;
    width: 100%;
}

.highlight-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
}

.highlight-title-image {
    max-width: 363px;
    height: auto;
    margin-bottom: 15px;
}

/* .btn-action {
    background-color: #EF6526;
    color: white;
    padding: 10px 10px;
    height: 44px;
    width: 105px;
    display: inline-block; 
    text-align: center;
    border: none;
    cursor: pointer; 
} */

/* Responsive styles */

@media (max-width: 768px) {
    #content.site-content{
        padding-top: 55px;
    }
    .highlight-image {
        min-height: 300px;
    }
    .highlight-subtitle {
        font-size: 28px;
        letter-spacing: 10%;
    }
    .highlight-title-image {
        max-width: 220px;
    }
    .highlight-overlay{
        width:100%;
    }
}

@media (max-width: 480px) {
    .highlight-image {
        min-height: 250px;
        height: 100%;
    }
    .highlight-subtitle {
        font-size: 24px;
    }
    .highlight-title-image {
        max-width: 300px;
        margin-bottom: 0px;
    }
    .highlight-item{
        height: 250px;
        margin-bottom: 5px;
    }
    
}


/* ==========================================================================
   Featured Products Section
   ========================================================================== */

.featured-products-section {
    padding: var(--section-padding) 0;
    background-color: var(--background-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--card-gap);
}

.product-card {
    background: var(--background-color);
    box-shadow: var(--card-shadow);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-4px);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image a {
    display: block;
    height: 100%;
}

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

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

.product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--accent-color);
    color: var(--text-secondary);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-color);
    color: var(--background-color);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: var(--caption-size);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    margin-bottom: 0.5rem;
}

.product-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: var(--card-title-size);
    font-weight: var(--font-bold);
    text-transform: uppercase;
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-price {
    font-size: var(--body-size);
    font-weight: var(--font-semibold);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.add-to-cart-btn {
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   Catalog Section
   ========================================================================== */

.catalog-section {
    padding: var(--section-padding) 0;
    background-color: #EBEBEA;
    text-align: center;
    margin-bottom:10px;
}

.catalog-content {
    /* max-width: 800px; */
    margin: 0 auto;
}

.catalog-title {
    font-family: 'Matritsa';
    font-style: Black;
    font-size: 40px;
    font-weight: 900;
    color: #565754;
    margin: 0;
}

.catalog-description {
    font-family: 'Spoiler';
    font-size: 24px;
    color: #565754;
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: none;
    letter-spacing: 0.72px;
    line-height: 24px;
    text-transform: uppercase;
}

.catalog-preview {
    margin-bottom: 2rem;
}

.catalog-image {
    /* max-width: 100%; */
    width:70%;
    height: auto;
    /* box-shadow: var(--card-shadow);
    border-radius: var(--border-radius-medium); */
}

.catalog-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    background: var(--background-color);
    border-radius: var(--border-radius-medium);
    color: var(--text-secondary);
}

.catalog-actions {
    display: flex;
    /* gap: 1rem; */
    justify-content: center;
}
.catalog-actions a{
    width:195px;
    height:41px;
    border:2px solid #F06E22;
    padding: 5px;
    line-height: 30px;
}
.catalog-actions .btn-overview{
    font-size: 16px;
    color: #F06E22;
    font-weight: 900;
    font-family: 'Matritsa';
}
.catalog-actions .btn-download{
    font-family: 'Matritsa';
    font-size: 16px;
    color: #fff;
    font-weight: 900;
    background-color: #F06E22;
}
.catalog-actions .btn-download:hover{
    background-color:#d24d1f;
    border:2px solid #d24d1f ;
}
.popup {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    background-color: #0000008C;
}

.popup-content {
    background: #EEEEEF;
    padding: 20px;
    max-width: 734px;
    width: 90%;
    position: relative;
}
.popup.show {
    display: flex;
}
 .popup-close{
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1;
    color: #D9D9D9;
    width:24px;
    height: 24px;
}
.popup-close:hover {
    color:#4D4D4D;
}
#catalog-overview.popup .header{
    display:flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
#catalog-overview.popup .header .overview-heading{
    font-family: 'Matritsa';
    font-size: 32px;
    font-weight: 900;
    color: #000000;
    text-transform: none;
}
#catalog-overview.popup .overview-wrapper {
    display: flex;
    flex-direction: column; 
    /* align-items: center;     */
    justify-content: center;             
    width: 100%;
}

#catalog-overview.popup .overview-text{
    display: flex;
    gap: 10px; 
    padding: 0 40px;
    
}
#catalog-overview.popup .overview-text p{
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    color: #070707;
    line-height: 18px;
    margin: 0;
    width: 270px;
    margin-left: 15px;
    text-align: justify;
}
#catalog-overview.popup .overview-image{
    margin-top:-10px;
    max-width: 618px;
    margin-left: 27px;
}
#catalog-download.popup .header{
    display:flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    
}
#catalog-download.popup .header .download-header{
    font-family: 'Matritsa';
    font-size: 32px;
    font-weight: 900;
    color: #000000;
    text-transform: none;
}
#catalog-download.popup .download-form{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    max-width: 326px; 
    margin: 0 auto;  
}
#catalog-download.popup .download-form form input[type="email"]{
    /* width: 100%; */
    max-width: 326px;
    width:100%;
    padding: 8px;
    border: 1px solid #c3c3c3;
    border-radius: 4px;
    font-size: 14px;
   
}
#catalog-download.popup .download-form form input[type="email"]::placeholder{
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    line-height: 14px;
}
#catalog-download.popup .download-form form .btn-submit{
    /* width: 100%; */
    max-width: 326px;
    width:100%;
    border-radius: 2px;
    background-color: #F06E22;
    margin-top: 10px;
    padding: 12.5px;
    color: #ffffff;
    font-family: 'Matritsa';
    font-weight: 900;
    font-size: 16px;
    line-height: 16px;
}
#catalog-download.popup .download-text-bottom{
    display: flex;
    justify-content: center;
}
#catalog-download.popup .download-text-bottom p{
    font-family: 'Inter';
    font-weight: 400;
    font-size: 10px;
    line-height: 10px;
    color: #999999;
    max-width: 326px;
}
#catalog-download.popup .download-text-bottom{
    margin-top: 5px;
}
#catalog-download.popup .popup-content{
    height:300px;
    overflow: hidden;
}
#catalog-download.popup .download-image-wrapper {
    position: relative;
    width: 500px;
}
#catalog-download.popup .download-image-wrapper img {
    position: absolute;
    bottom: -115px;
    right: 295px;
    width: 100%;
    height: auto;
    transform: rotate(30deg);
    transform-origin: center center; 
}
@media screen and (max-width:480px){
    .catalog-actions a {
        width: 47%;       
    }
    .catalog-actions .btn-overview{
        font-size: 16px;
    }
    .catalog-actions .btn-download{
        font-size: 16px;
    }
    .catalog-image {
        width: 100%;
        height: 200px;
    }
    .catalog-title {
        font-size: 28px;
    }
    .catalog-description {
        font-size: 16px;
        margin: 0;
        line-height: 16px;
        width: 80%;
        margin: 0 auto;
    }
    .catalog-section {
        padding: 25px 0;
        margin-bottom: 5px;
    }
    #catalog-download.popup .header{
        text-align: center;
    }
    #catalog-download.popup .popup-content {
        max-height: 361px;
        height: 100%;
    }
    .popup-right{
        margin-bottom: 50px;
    }
    .header .overview-heading{
        margin: 0;
    }
    #catalog-overview.popup .overview-text {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
        margin-bottom: 20px;
    }
    #catalog-overview.popup .overview-text p {
        margin-left: 0;
        width: 100%;
    }
    #catalog-overview.popup .overview-image{
        margin-left: 0;
    }
    #catalog-download.popup .download-image-wrapper img{
        bottom: -150px;
        right: 320px;
    }
}
/* ==========================================================================
   Partners Section
   ========================================================================== */

   .partners-section {
    padding: var(--section-padding) 0;
    background-color: #F9F9F9;
}

.partners-header {
    text-align: center;
    margin-bottom: 3rem;
}

.partners-title {
    font-family: 'Matritsa';
    font-style: Black;
    font-size: 40px;
    font-weight: 900;
    color: #231F20;
    margin: 0;
}
.partners-subtitle {
    font-family: 'Spoiler';
    font-size: 16px;
    font-weight: 600;
    color: #231F20;
    /* letter-spacing: 0.48px; */
    text-transform: uppercase;
   
}

.partners-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    
}

.partner-item {
    opacity: 1;
    transition: opacity 0.3s ease;
   
}

.partner-item:hover {
    opacity: 1;
}

.partner-logo {
    max-height: 100px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%);
}

.partner-placeholder {
    padding: 10px 20px;
    background: var(--background-color);
    border-radius: var(--border-radius-small);
    font-weight: var(--font-semibold);
    font-size: var(--caption-size);
    color: var(--text-secondary);
}
.partners-footer {
    text-align: center;
    margin-top: 80px;
}
.partners-footer .partners-note{
    font-size: 16px;
    font-weight: 400;
    color:#231F20;
    font-family: 'Matritsa';
    font-style: normal;
}
.partners-footer .partners-note img.partners-note-icon{
    padding-left: 5px;
}

@media screen and (max-width: 1024px) {
    .partners-logos {
        gap: 2rem;
    }

    .partner-logo {
        max-width: 100px;
        max-height: 80px;
    }
}
@media screen and (max-width: 768px) {
    .partners-title {
        font-size: 32px;
    }

    .partners-subtitle {
        font-size: 15px;
    }

    .partners-logos {
        /* justify-content: center; */
        gap: 5px
    }

    .partner-logo {
        max-width: 75px;
        max-height: 60px;
    }

    .partners-footer {
        margin-top: 60px;
    }
}
@media screen and (max-width: 480px) {
    .partners-section {
        padding: 0px;
       
    }
    .partners-title {
        font-size: 28px;
    }

    .partners-subtitle {
        font-size: 16px;
    }

    .partners-logos {
        gap: 5px;
    }
    .partners-header{
        margin-bottom: 1rem;
        padding-top: 25px;
    }
    .partner-logo {
      
        max-height: 40px;
    }

    .partners-footer {
        margin-top: 30px;
    }
}



/* ==========================================================================
   Product Grid Section (2x2 Layout)
   ========================================================================== */

.product-grid-section {
    padding: 0;
    background-color: var(--background-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px; 
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

.grid-item {
    display: flex;
    align-items: center;
    max-height: 485px;
    height: 100%;
    position: relative;
    overflow: hidden;
}
@media  screen and (min-width:1440px){
    .grid-item {
        max-height: 100%;
    }

}
.grid-content {
    flex: 1;
    padding: 3rem;
    z-index: 2;
}

.grid-image {
    flex: 1;
    position: relative;
    height: 100%;
}

.grid-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-weight: var(--font-semibold);
}

/* .grid-title-image{
   
} */

.grid-subtitle {
    font-family: 'Spoiler';
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 24px;
    letter-spacing: 0.72px;
    text-transform: uppercase;
    color: #fff;
}
.grid-subtitle br{
    display: none;
}
.grid-overlay{
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}
/* Responsive Grid */
@media screen and  (min-width:781px) and (max-width:1080px){
    .grid-overlay{
        top: 40%;
    }
}
@media (max-width: 780px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
    .grid-overlay{
        top: 40%;
    }
    .grid-item {
        min-height: 245px;
    }
    img.grid-image {
        object-fit: cover;
    }
    .grid-subtitle {
        font-size: 16px;
    }
    .grid-title-image {
        width: 150px;
    }
   
}
@media (max-width: 480px) {
    .grid-subtitle {
        font-size: 16px;
        line-height: 16px;
        letter-spacing: 0.48px;
    }
    .product-grid .grid-item:nth-child(3) .grid-text img, 
    .product-grid .grid-item:nth-child(4) .grid-text img {
        width: 65px;
    }
    .product-grid{
        gap: 5px;
        margin-bottom: 5px;
    }
    .grid-subtitle br{
        display: block;
    }
}

/* ==========================================================================
   Base Layout & Typography
   ========================================================================== */

.homepage-content {
    overflow-x: hidden;
    font-family: var(--rt-font-primary);
}

.container {
    max-width:1440px;
    /* margin: 0 auto;
    padding: 0 24px; */
}

.text-center {
    text-align: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--rt-orange-accent), #ff8f65);
    color: var(--rt-white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: var(--rt-shadow-sm);
}

.section-title {
    font-family: var(--rt-font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--rt-tactical-black);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.125rem;
    color: var(--rt-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border: 2px solid transparent;
    border-radius: var(--rt-border-radius-sm);
    font-family: var(--rt-font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--rt-transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rt-orange-accent), #ff8f65);
    color: var(--rt-white);
    border-color: var(--rt-orange-accent);
    box-shadow: var(--rt-shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--rt-shadow-lg);
    background: linear-gradient(135deg, #ff5722, var(--rt-orange-accent));
}

.btn-outline {
    background: transparent;
    color: var(--rt-tactical-black);
    border-color: var(--rt-tactical-black);
}

.btn-outline:hover {
    background: var(--rt-tactical-black);
    color: var(--rt-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

/* ==========================================================================
   Hero Section - Design System Implementation
   Following RecoverTactical Design System v1.0.0
   ========================================================================== */

.rt-hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

.rt-hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.rt-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.rt-hero-slide.rt-active {
    opacity: 1;
}

.rt-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.rt-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rt-hero-bg-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A1A1A 0%, #777777 100%);
}

.rt-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.rt-hero-content {
    position: absolute;
    bottom: 60px;
    left: 60px;
    z-index: 3;
    max-width: 600px;
    color: #FFFFFF;
}

.rt-hero-text {
    margin-bottom: 2rem;
}

.rt-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.rt-hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.rt-hero-cta-container {
    margin-bottom: 3rem;
}

.rt-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 16px 32px;
    border-radius: 2px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.rt-btn-primary {
    background-color: #FF6600;
    color: #FFFFFF;
    border: 2px solid #FF6600;
}

.rt-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.4);
}

.rt-btn-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.rt-btn-primary:hover .rt-btn-arrow {
    transform: translateX(4px);
}

.rt-hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.rt-hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rt-feature-icon {
    font-size: 1.25rem;
}

.rt-feature-text {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* Hero Navigation Dots - Design System Pattern */
.rt-hero-nav-dots {
    position: absolute;
    bottom: 60px;
    right: 60px;
    z-index: 4;
    display: flex;
    gap: 8px;
}

.rt-nav-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.rt-nav-dot.rt-active {
    width: 24px;
    background: #FF6600;
}

.rt-nav-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Hero Responsive Design */
@media (max-width: 1024px) {
    .rt-hero-content {
        bottom: 40px;
        left: 40px;
        max-width: 500px;
    }
    
    .rt-hero-nav-dots {
        bottom: 40px;
        right: 40px;
    }
    
    .rt-hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .rt-hero-content {
        bottom: 30px;
        left: 30px;
        right: 30px;
        max-width: none;
    }
    
    .rt-hero-nav-dots {
        bottom: 30px;
        right: 30px;
    }
    
    .rt-hero-title {
        font-size: 1.75rem;
    }
    
    .rt-hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .rt-btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .rt-hero-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .rt-hero-nav-dots {
        bottom: 20px;
        right: 20px;
    }
    
    .rt-hero-title {
        font-size: 1.5rem;
        letter-spacing: 0.05em;
    }
    
    .rt-hero-subtitle {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   Featured Products Section - Figma Design
   ========================================================================== */

.featured-products-section {
    padding: var(--rt-section-padding);
    background: var(--rt-light-gray);
}

.products-navigation {
    margin-bottom: 60px;
}

.product-categories-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.category-tab {
    background: transparent;
    border: 2px solid var(--rt-gray);
    color: var(--rt-gray);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--rt-transition);
}

.category-tab.active,
.category-tab:hover {
    background: var(--rt-orange-accent);
    border-color: var(--rt-orange-accent);
    color: var(--rt-white);
    transform: translateY(-2px);
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.product-card {
    background: var(--rt-white);
    border-radius: var(--rt-border-radius);
    overflow: hidden;
    box-shadow: var(--rt-shadow-sm);
    transition: var(--rt-transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--rt-shadow-lg);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    background: var(--rt-light-gray);
}

.product-link {
    display: block;
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--rt-transition);
}

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

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sale-badge {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: var(--rt-white);
}

.featured-badge {
    background: linear-gradient(135deg, var(--rt-gold), #b8860b);
    color: var(--rt-white);
}

.product-actions {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--rt-transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    background: var(--rt-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--rt-transition);
    box-shadow: var(--rt-shadow-sm);
}

.action-btn:hover {
    background: var(--rt-orange-accent);
    color: var(--rt-white);
    transform: scale(1.1);
}

.product-content {
    padding: 24px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--rt-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    margin-bottom: 12px;
}

.product-title a {
    color: var(--rt-tactical-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.3;
    transition: var(--rt-transition);
}

.product-title a:hover {
    color: var(--rt-orange-accent);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.rating-count {
    font-size: 0.875rem;
    color: var(--rt-gray);
}

.product-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--rt-tactical-black);
    margin-bottom: 16px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background: var(--rt-light-gray);
    color: var(--rt-gray);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.btn-add-to-cart {
    width: 100%;
    justify-content: center;
    background: var(--rt-tactical-black);
    color: var(--rt-white);
    border: 2px solid var(--rt-tactical-black);
}

.btn-add-to-cart:hover {
    background: var(--rt-orange-accent);
    border-color: var(--rt-orange-accent);
}

.no-products-found {
    text-align: center;
    padding: 80px 20px;
    color: var(--rt-gray);
}

.no-products-icon i {
    font-size: 4rem;
    margin-bottom: 24px;
    opacity: 0.5;
}

.no-products-found h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--rt-tactical-black);
}

.section-footer {
    text-align: center;
}

/* ==========================================================================
    font-weight: 600;
}

.product-info {
    padding: 25px;
}

.product-title a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
}

.product-title a:hover {
    color: var(--accent-color);
}

.product-price {
    margin: 15px 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.product-rating {
    margin-bottom: 20px;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.add-to-cart:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.section-footer {
    text-align: center;
}

.view-all-btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* ==========================================================================
   Product Categories Section - Figma Design
   ========================================================================== */

.product-categories-section {
    padding: var(--rt-section-padding);
    background: var(--rt-white);
}

.categories-showcase {
    position: relative;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.category-card {
    background: var(--rt-white);
    border-radius: var(--rt-border-radius);
    overflow: hidden;
    box-shadow: var(--rt-shadow-sm);
    transition: var(--rt-transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-card.featured {
    border: 2px solid var(--rt-orange-accent);
    transform: scale(1.05);
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--rt-shadow-lg);
}

.category-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.category-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--rt-light-gray);
}

.category-link {
    display: block;
    height: 100%;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--rt-transition);
}

.category-card:hover .category-image {
    transform: scale(1.15);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.8) 0%, 
        rgba(255, 107, 53, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--rt-transition);
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-info {
    text-align: center;
    color: var(--rt-white);
}

.category-count {
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.category-arrow {
    width: 50px;
    height: 50px;
    background: var(--rt-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--rt-orange-accent);
    font-size: 1.25rem;
    transform: translateX(-20px);
    transition: var(--rt-transition);
}

.category-card:hover .category-arrow {
    transform: translateX(0);
}

.category-content {
    padding: 24px;
    text-align: center;
}

.category-title {
    margin-bottom: 12px;
}

.category-title a {
    color: var(--rt-tactical-black);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--rt-transition);
}

.category-title a:hover {
    color: var(--rt-orange-accent);
}

.category-description {
    color: var(--rt-gray);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-category {
    background: transparent;
    color: var(--rt-tactical-black);
    border: 2px solid var(--rt-tactical-black);
    padding: 12px 24px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-category:hover {
    background: var(--rt-tactical-black);
    color: var(--rt-white);
}

.no-categories-found {
    text-align: center;
    padding: 80px 20px;
    color: var(--rt-gray);
}

.no-categories-icon i {
    font-size: 4rem;
    margin-bottom: 24px;
    opacity: 0.5;
}

.no-categories-found h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--rt-tactical-black);
}

.category-stats {
    background: linear-gradient(135deg, var(--rt-tactical-black), var(--rt-secondary));
    padding: 60px 0;
    border-radius: var(--rt-border-radius);
    margin-top: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    color: var(--rt-white);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--rt-orange-accent), #ff8f65);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--rt-orange-accent);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Categories Responsive */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card.featured {
        transform: none;
    }
    
    .category-card.featured:hover {
        transform: translateY(-12px);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ==========================================================================
   Conversion Kits Section
   ========================================================================== */

.conversion-kits-section {
    /* padding: var(--section-padding) 0; */
    background-color:#ffffff;
    margin-bottom: 10px;
}
.conversion-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
}

.conversion-item {
    position: relative; 
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.conversion-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.conversion-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40%;
    
}
@media screen and (min-width:1081px) and (max-width:1439px){
    .conversion-overlay {
        gap: 40%;
        margin-top: 20px;
    }
    
}
@media screen and (min-width:1440px) and (max-width:1599px){
    .conversion-overlay {
        gap: 55%;
        margin-top: 55px;
    }
    
}
@media screen and (min-width:1600px){
    .conversion-overlay {
        gap: 60%;
        margin-top: 30px;
    }
    
}



.conversion-title {
    font-family: 'Matritsa';
    font-style: Black;
    font-size: 32px;
    font-weight: 900;
    margin: 0;
    text-transform: none;
    line-height: 32px;
    
}

.conversion-subtitle {
    font-family: 'Spoiler';
    font-size: 20px;
   font-weight:900;
   margin: 0;
   letter-spacing: 0.6px;
   text-transform: uppercase;
   line-height: 20px;
}
.price{
    display: flex;
    justify-content: center;
}
.conversion-price {
    font-family: 'Matritsa';
    font-style: Black;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 20px;
    background-color: #EF6526;
    /* display: inline-block; */
    padding: 10px 15px;
    color:#fff;
    height: 44px;
    width: 105px;
}
.text-price{
    width:155px;
}
.conversion-link {
    /* color: #fff; */
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-family: 'Matritsa';
    /* font-style: Black; */
    font-size: 16px;
}

.conversion-available {
    margin-top: 10px;
    font-size: 14px;
    font-family: 'Inter';
}
.black-text,
.black-text .conversion-overlay .conversion-title,
.black-text .conversion-overlay .conversion-link,
.black-text .conversion-overlay .arrow{
    color:#60676E
}
.black-text .conversion-overlay .conversion-available{
color:#414042;
}
.white-text .conversion-overlay .conversion-available{
color:#D1D3D4;
}
.white-text,
.white-text .conversion-overlay .conversion-title,
.white-text .conversion-overlay .conversion-link,
.white-text .conversion-overlay .arrow{
    color: #D1D3D4;
}
/* Responsive for smaller screens */
@media (min-width: 993px) and (max-width: 1080px) {
    .conversion-title {
        font-size:28px ;
        margin-top: 20px;
    }
}
@media (min-width: 781px) and (max-width: 992px) {
    .conversion-title {
        font-size:24px ;
        margin-top: 20px;
    }
    .conversion-overlay{
        gap:25%;
    }
}

@media (max-width: 768px) {
    .conversion-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .conversion-title {
        font-size: 24px;
    }

    .conversion-subtitle {
        font-size: 20px;
    }
    .conversion-image{
        height: 300px;
    }
    .conversion-price {
        font-size: 16px;
    }

    .conversion-link {
        font-size: 16px;
    }

    .conversion-overlay {
        gap: 30%;
        padding: 8px;
    }

    .text-price {
        width: 130px;
    }

    .conversion-item {
        min-height: 300px;
    }

    .conversion-available {
        font-size: 14px;
    }
    
}

/* Mobile adjustments (up to 480px) */
@media (max-width: 480px) {
    .conversion-kits-section {
        margin-bottom: 0px;
    }
}



/* ==========================================================================
   P-IX Hero Section Styles (from Figma Screenshot)
   ========================================================================== */

   .hero-section  {
    position: relative;
    width: 100%;
    height: calc(100vh - 81px);
    overflow: hidden;
  }
  .hero-section .container-fluid{
    width: 100%;
    height: 100%;
  }
  .hero-section .container-fluid .hero{
    width: 100%;
    height: 100%;
    position: relative;
  }
  .hero__slides, .owl-carousel, .owl-stage-outer, .owl-stage, .owl-item {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
  }
  .background__slide{
    height: 100%;
    width: 100%;
  }
  .hero__slide {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
  }
  .hero__background {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    object-fit: cover;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
  }
  .hero__slide {
    position: relative;
  }
  .hero__overlay{
    display: flex;
    justify-content: center; 
    align-items: center;  
    position: absolute; 
    z-index: 2;  
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
  }
  .hero-content.has-content {
    width: 777px;
    height: 325px;
    border: 1px solid white;
    pointer-events: auto;
  }
  .hero-content:not(.has-content) {
    display: none;
  }
  .hero__logo-box {
      width: 286px;
      height: 97px;
      background: white;
      display: flex;
      justify-content: center;
      align-items: center;
      clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
      /* transform: scale(0.8);
      opacity: 0; */
    }
  
  .hero__logo-box img {
    max-width: 190px;
    height: auto;
  }
  
  
  .hero__content {
   margin-top:50px ;
   color: #fff;
  }
  
  .hero__title {
    font-size: 48px;
    font-weight: 900;
    font-family: 'Matritsa';
    text-transform: uppercase;
    margin-bottom: 1rem;
    color:#ffffff;
    margin:0 !important;
    padding: 0 50px;
    line-height: 48px;
    letter-spacing: 1.44px;
    height:52px;
  }
  
  .hero__subtitle {
      display:flex;
      justify-content: flex-start;
      font-family: 'Matritsa';
      font-weight: 900;         
      font-style:black;     
      font-size: 24px;
      margin-bottom: 39px;
      padding: 0 50px;
      height:26px;
      /* letter-spacing: 1px; */
  }
  .hero-button-content{
      display: flex;
      justify-content:flex-end;
      align-items: center;
  }
  
  .hero__button {
      background: #F25C27;
      color: #fff;
      padding: 12px 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #F25C27;
      color: #fff;
      width: 198px;
      height: 60px;
      font-family: 'Matritsa';
      font-weight: 900;         
      font-style: normal;   
      font-size: 24px;    
      line-height: 100%;        
      letter-spacing: 0;       
      vertical-align: middle;
      clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  }
  
  .hero__button:hover {
    background: #d24d1f;
  }
  
  .hero__dots {
    position: absolute;
    z-index: 3;  
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    bottom: 50px;
    margin: 0 auto;
    left: 0;
    right: 0;
  }
  .dot {
    width: 14px;
    height: 14px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .dot.active {
    background: #fff;
    width: 18px;
    height: 18px;
  }
  .owl-next,
  .owl-prev{
    background: none;
    padding: 0;
    color: #fff;
    width: 12px;
    height: 24px;
    cursor: pointer;
  }
  .home.blog .shoptimizer-archive {
      padding-top: 0 !important;
  }
  div#primary.homepage-content {
      width:100%;
  }
  .hero-action{
    display: flex;
    justify-content: flex-end;
  }
  


  @media (max-width: 480px){
    .hero__overlay{
        width:85%;
        height:auto;
    }
    .hero__background {
        min-height: 400px;
    }
    .hero__logo-box {
        height:35px;
        width:30%;
    }
    /* .hero__content {
        margin-top: 20px
    } */
    /* .hero__logo{
        width:60%;
        height:auto
    } */
    /* .hero__title {
        font-size: 24px !important ;
        padding: 0 5px;
    } */
    .hero__subtitle {
        font-size:20px;
        padding: 0 20px;

        line-height: 20px;
        /* margin-bottom:18px; */

        margin-bottom:58px;

    }
    .hero-content.has-content {
        width: 361px;
        height: 290px;
      }
      .hero__logo-box{
        max-width:180px;
        width:100%;
        height:61px;
    }
    .hero__logo-box img {
        max-width: 130px;
        height: auto;
    }
    .hero__content h1.hero__title{
        font-size: 32px;
        padding: 0 20px;
        line-height:35px;
        height:auto;
    }
  }
  @media (min-width: 481px) and (max-width: 768px) {
    .hero__overlay {
      width: 75%;
      height: auto;
    }
    .hero__background {
        min-height: 500px;
    }
    .hero__logo-box {
        width: 220px;
        height: 85px;
    }
    .hero__logo {
      width: 65%;
      height: auto;
    }
    .hero__title {
      font-size: 32px;
      padding: 0 20px;
    }
    .hero__subtitle {
      font-size: 20px;
      padding: 0 20px;
      margin-bottom: 52px;
    }
    .hero__button{
        width: 198px;
        height: 60px;
        font-size: 24px;
        padding: 0;
        
    }
}
@media screen and  (min-width:769px) and (max-width:992px){
    .hero__overlay {
        width: 70%;
        height: auto;
      }
      .hero__logo-box {
        width: 250px;
        height: 85px;
      }
      .hero__logo {
        width: 65%;
        height: auto;
      }
      .hero__title {
        font-size:48px;
        padding: 0 20px;
      }
      .hero__subtitle {
        font-size: 24px;
        padding: 0 20px;
        margin-bottom: 52px;
        
      }
      .hero__button{
        width: 198px;
        height: 60px;
        font-size: 24px;
        padding: 0;
    }
}
#catalog-overview .popup-content{
    padding-left: 28px;
}
@media screen and (max-width:410px){
    .hero__content h1.hero__title{
        font-size: 28px;
        padding: 0 5px;
        line-height: 32px;
    }
    .hero__subtitle {
        padding: 0 5px;
        font-size: 16px;
    }

    .hero__logo-box {
        max-width: 150px;
        width: 100%;
        height: 61px;
    }
    .hero__button {
        width: 150px;
        height: 60px;
    }
}
@media screen and (max-width:330px){
    .hero__subtitle{
        margin-bottom: 30px;
    }
    .hero__logo-box {
        max-width: 150px;
        width: 100%;
        height: 61px;
    }
    .hero__button {
        width: 150px;
        height: 60px;
    }

}


