/* Global Vars */
:root {
    --st-blue-dark: #004AB3;
    --st-blue-light: #1AC6FF;
    --st-text-black: #212529;
    --st-timestamp: #006CAE;
    --st-gradient: linear-gradient(102.19deg, #1AC6FF 0%, #004AB3 100%);
    --st-gradient-hover: linear-gradient(102.19deg, #004AB3 0%, #1AC6FF 100%);
}

.st-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* =========================================
    Common Fonts & Titles
   ========================================= */

.st-section-title {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.25;
    font-weight: 700;
    color: var(--st-text-black);
    padding: 0;
}


/* Common Button Style (Primary) */

.st-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--st-gradient);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: clamp(12px, 1vw, 14px);
    line-height: 1;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    /* For <button> elements */
    cursor: pointer;
}

.st-btn-primary:hover {
    color: var(--white);
    text-decoration: none;
}

/* Shared Arrow Icon Style */
.st-btn-primary .st-arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--white);
    transition: all 0.3s ease;
    /* Default for buttons with colored bg */
}

.st-btn-primary:hover .st-arrow-icon {
    transform: translateX(5px);
}

.st-btn-primary .st-arrow-icon img {
    width: 14px;
    height: auto;
    transition: all 0.3s ease;
}

.st-arrow-icon.reverse img {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .st-btn-primary {
        padding: 6px 12px;
    }

    .st-btn-primary .st-arrow-icon{
        width: 20px;
        height: 20px;
    }

    .st-btn-primary .st-arrow-icon img{
        width: 12px;
    }
}








/* =========================================
    Banner Section
   ========================================= */

.st-banner-section {
    width: 100vw;
    height: 600px;
    max-width: 100%;
    position: relative;
    /* Break out of container */
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
}

.st-banner-slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.st-banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.st-banner-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Banner Navigation */
.st-banner-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.nav-btn {
    background: var(--white);
    color: var(--st-blue-dark);
    border: none;
    padding: 10px 15px;
    border-radius: 30px;
    font-family: 'Heebo', sans-serif;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--st-gradient);
    color: var(--white);
}

/* Banner specific: Arrow circle has gradient */
.nav-btn .st-arrow-icon {
    background: var(--st-gradient);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.nav-btn:hover .st-arrow-icon {
    background: var(--white);
}

.nav-btn .st-arrow-icon img {
    filter: brightness(0) invert(1);
    width: 14px;
    height: auto;
    transition: all 0.3s ease;
}

.nav-btn:hover .st-arrow-icon img {
    filter: brightness(1) invert(0);
}

/* Responsive Banner */
@media (max-width: 768px) {
    .st-banner-section {
        height: 300px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .nav-btn {
        padding: 0px;
        background: none;
    }

    .nav-btn .st-arrow-icon {
        background: var(--white);
        width: 40px;
        height: 40px;
    }

    .nav-btn .st-arrow-icon img {
        filter: brightness(1) invert(0);
        width: 16px;
    }

    .nav-btn .st-btn-text {
        display: none;
    }
}








/* =========================================
    Discover Section
   ========================================= */

.st-tabs-header {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.st-tab-title {
    flex: 1;
    text-align: center;
    align-content: center;
    padding: 20px 30px;
    font-size: clamp(18px, 3vw, 32px);
    line-height: 1.2;
    font-weight: 700;
    color: var(--st-text-black);
    cursor: pointer;
    border-bottom: 4px solid #00000029;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background: var(--white);
    transition: all 0.3s;
    max-width: 50%;
}

.st-tab-title.active {
    background: var(--st-gradient);
    color: var(--white);
    border-bottom: 4px solid transparent;
}

.st-tab-content {
    display: none;
    animation: fadeIn 0.5s;
}

.st-tab-content.active {
    display: block;
}

.st-no-data {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 16px;
    font-style: italic;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 20px 0;
}

/* Grid Layout */
.st-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* Card Styling */
.st-grid-item {
    background: var(--white);
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    box-shadow: 0px 0px 10px 0px #00000029;
}


.st-card-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.st-card-box:hover {
    text-decoration: none;
    color: inherit;
}

/* Image Switching */
.st-card-image {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 150px;
    position: relative;
    aspect-ratio: 1/1;
}

.st-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease-in-out;
}

.st-logo-img {
    opacity: 1;
    position: absolute;
}

.st-product-img {
    opacity: 0;
    position: absolute;
}

.st-card-box:hover .st-logo-img {
    opacity: 0;
}

.st-card-box:hover .st-product-img {
    opacity: 1;
}

.st-card-footer {
    background: #F5F5F5;
    padding: 15px;
    font-size: clamp(14px, 2vw, 20px);
    line-height: 1.25;
    font-weight: 500;
    color: var(--st-blue-dark);
    transition: all 0.3s;
}

.st-grid-item:hover .st-card-footer {
    background: var(--st-gradient);
    color: var(--white);
}

@media (max-width: 1024px) {
    .st-grid-layout {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .st-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .st-tab-title {
        padding: 15px 20px;
    }
}

@media (max-width: 576px) {
    .st-grid-layout {
        grid-template-columns: unset;
        grid-auto-flow: column;
        grid-auto-columns: 45%;
        overflow-x: auto;
        padding: 10px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}






/* =========================================
    Featured Products Section
   ========================================= */
.st-featured-section {
    background: var(--st-gradient);
    color: var(--white);
    text-align: center;
}

.st-featured-section .st-section-title {
    color: var(--white);
}

.st-no-products {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
    grid-column: 1 / -1;
}

.st-featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.st-feat-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    text-align: left;
    color: var(--st-text-black);
    transition: all 0.3s ease;
}

.st-feat-card:hover {
    transform: translateY(-5px);
}

.st-feat-img {
    max-height: 250px;
    width: 100%;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.st-feat-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.st-feat-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.st-feat-card h3 {
    font-size: clamp(18px, 3vw, 30px);
    line-height: 1.25;
    font-weight: 700;
    color: var(--st-text-black);
    margin: 0 0 10px;
    padding: 0;
    min-height: 75px;
}

.st-feat-card p {
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.25;
    font-weight: 400;
    flex-grow: 1;
    margin: 0 0 10px;
    padding: 0;
    color: var(--st-text-black);
}

.st-btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--st-gradient);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
    transition: all 0.3s ease;
}

.st-btn-discover:hover {
    color: var(--white);
    text-decoration: none;
}

@media (max-width: 1024px) {
    .st-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .st-feat-card {
        padding: 20px;
    }
}

@media (max-width: 479px) {
    .st-featured-grid {
        grid-template-columns: 1fr;
    }

}









/* =========================================
    Catalog Section
   ========================================= */
.st-catalog-section {
    background: var(--white);
}

.st-catalog-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.st-catalog-content {
    flex: 0 0 calc(60% - 25px);
    max-width: calc(60% - 25px);
}

.st-catalog-section .st-section-title {
    font-size: clamp(20px, 4vw, 40px);
}

.st-catalog-content .st-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.25;
    font-weight: 400;
    color: var(--st-text-black);
    margin-top: 10px;
    display: block;
    padding: 0;
}

.st-catalog-content p {
    font-size: clamp(12px, 1vw, 16px);
    line-height: 1.6;
    font-weight: 400;
    color: var(--st-text-black);
    margin: 20px 0;
    padding: 0;
}

.st-btn-catalog {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--st-gradient);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.st-btn-catalog:hover {
    color: var(--white);
    text-decoration: none;
}

.st-catalog-image {
    flex: 0 0 calc(40% - 25px);
    max-width: calc(40% - 25px);
    border-radius: 20px;
}

.st-catalog-image img {
    height: auto;
    width: 100%;
    max-height: 600px;
    border-radius: 20px;
}

@media (max-width: 768px) {

    .st-catalog-content {
        padding-right: 0;
    }

    .st-catalog-content p {
        margin: 0 auto 30px;
    }

}

@media (max-width: 479px) {
    .st-catalog-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .st-catalog-content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .st-catalog-image {
        flex: 0 0 100%;
        max-width: 100%;
    }

}







/* =========================================
    Recently Viewed Products Section
   ========================================= */
.st-recently-viewed-section {
    background: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.st-recent-slider-container {
    overflow: hidden;
    padding: 40px 10px;
    /* Add bottom padding for shadow/hover etc */
    position: relative;
}

.st-recent-slider-track {
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    width: 100%;
    /* Important: 100% so calc works correctly */
}

.st-recent-card {
    flex: 0 0 calc(25% - 15px);
    /* 4 items per row */
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0px 0px 5px 0px #00000029;
    transition: all 0.3s ease;
}

.st-recent-card:hover {
    box-shadow: 0 5px 12px rgb(0 74 179 / 30%);
}

.st-recent-img {
    max-height: 250px;
    width: 100%;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.st-recent-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.st-recent-card h3 {
    font-size: clamp(18px, 3vw, 30px);
    line-height: 1.25;
    font-weight: 700;
    color: var(--st-text-black);
    margin-top: 15px;
    padding: 0;
    min-height: 75px;
}

.st-timestamp {
    font-size: 12px;
    line-height: 1.25;
    font-weight: 400;
    color: var(--st-timestamp);
    margin: 20px 0;
    flex-grow: 1;
}

.st-recent-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.st-recent-nav .st-btn-primary:disabled,
.st-recent-nav .st-btn-primary[disabled] {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

@media (max-width: 1280px) {
    .st-recent-card {
        flex: 0 0 calc(33.33% - 13.33px);
        /* 3 items */
    }
}

@media (max-width: 1024px) {
    .st-recent-card {
        flex: 0 0 calc(50% - 10px);
        /* 2 items */
    }
}

@media (max-width: 576px) {
    .st-recent-card {
        flex: 0 0 calc(100% - 10px);
        /* 1 item */
    }
}






/* =========================================
    Newsletter Section
   ========================================= */
.st-newsletter-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.st-newsletter-box {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    max-width: 550px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.st-newsletter-box p {
    font-size: clamp(16px, 2vw, 24px);
    line-height: 1.25;
    font-weight: 400;
    color: var(--st-text-black);
    margin-top: 10px;
    padding: 0;
}

.st-newsletter-form {
    margin-top: 10px;
}

.st-newsletter-form .tnp-subscription {
    margin: 0;
    max-width: 100%;
}

.st-newsletter-form .tnp-subscription input,
.st-newsletter-form .tnp-subscription input:focus{
    outline: none;
}

.st-newsletter-form .tnp-subscription label{
    margin: 0;
}

.st-newsletter-form .tnp-subscription input::placeholder {
    color: #4B5563;
}

.st-newsletter-form .tnp-subscription .tnp-field-email label{
    display: none;
}

.st-newsletter-form .tnp-subscription .tnp-field-email .tnp-email{
    padding: 0;
    background-color: transparent;
}

.st-newsletter-form .tnp-subscription .tnp-field-email,
.st-newsletter-form .tnp-subscription .tnp-field-checkbox {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #DCDCDC;
    border-radius: 10px;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.25;
    font-weight: 400;
    color: #4B5563;
    background: #F9F9F9;
    outline: none;
}

.st-newsletter-form .tnp-subscription .tnp-field-checkbox {
    width: 50%;
}

.st-newsletter-form .tnp-subscription .tnp-lists{
    display: flex;
    gap: 10px;
}

.st-newsletter-form .tnp-subscription .tnp-lists .tnp-field-checkbox label{
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.25;
    font-weight: 400;
    color: #4B5563;
}

.st-newsletter-form .tnp-subscription .tnp-lists .tnp-field-checkbox label input{
    width: 15px;
    height: 15px;
}


.st-newsletter-form .tnp-subscription .tnp-field-button{
    margin: 0;  
    width: fit-content;
    position: relative;
}

.st-newsletter-form .tnp-subscription .tnp-field-button::before{
    content: url('/wp-content/uploads/2025/12/arrow-icon.svg');
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0,-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.st-newsletter-form .tnp-subscription .tnp-field-button:hover::before{
    transform: translate(5px,-50%);
}

.st-newsletter-form .tnp-subscription .tnp-submit{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--st-gradient);
    color: var(--white);
    padding: 12px 50px 12px 15px;
    border-radius: 30px;
    font-size: clamp(16px, 1vw, 18px);
    line-height: 1;
    font-weight: 400;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 74, 179, 0.3);
}

@media (max-width: 768px) {
    .st-newsletter-box {
        max-width: 100%;
        background: #FFFFFFB2;
        padding: 20px;
    }
    .st-newsletter-box .st-section-title {
        font-size: 28px;
    }

    .st-newsletter-form .tnp-subscription .tnp-submit{
        padding: 8px 40px 8px 12px;
    }

    .st-newsletter-form .tnp-subscription .tnp-field-button::before{
        width: 20px;
        height: 20px;
    }
}


@media (max-width: 479px){
    .st-newsletter-form .tnp-subscription .tnp-field-email,
    .st-newsletter-form .tnp-subscription .tnp-field-checkbox{
        padding: 10px 20px;
        width: 100%;
    }

    .st-newsletter-form .tnp-subscription .tnp-lists{
        flex-wrap: wrap;
        gap: 0px;
    }
    .st-newsletter-form .tnp-subscription .tnp-lists .tnp-field-checkbox label{
        gap: 5px;
    }
}




/* =========================================
     Info Cards Section (Custom/About/Marketing)
   ========================================= */
.st-info-section {
    background: var(--white);
}

.st-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.st-info-card {
    background: #F4F4F4;
    /* Default Background */
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: 100%;
}

/* Hover State - Gradient Background */
.st-info-card:hover {
    background: linear-gradient(180deg, #1AC6FF 0%, #004AB3 100%);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 74, 179, 0.2);
}

.st-info-img {
    max-height: 250px;
    width: 100%;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.st-info-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.st-info-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.st-info-card h3 {
    margin: 0 0 10px;
    font-size: clamp(18px, 3vw, 30px);
    line-height: 1.25;
    font-weight: 700;
    color: var(--st-text-black);
    padding: 0;
    min-height: 75px;
}

.st-info-card:hover h3 {
    color: var(--white);
    /* Updated target from h3 */
}

.st-info-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    flex-grow: 1;
    margin-bottom: 10px;
    padding: 0;
    transition: all 0.3s ease;
}

.st-info-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}


/* Button Hover State (When Card is Hovered) */
.st-info-card:hover .st-btn-primary {
    background: var(--white);
    /* White button on hover */
    color: var(--st-blue-dark);
}

/* Arrow Icon Handling on Hover */
.st-info-card:hover .st-btn-primary .st-arrow-icon {
    background: var(--st-gradient);
    /* Gradient circle inside white button */
}

.st-info-card:hover .st-btn-primary .st-arrow-icon img {
    filter: brightness(0) invert(1);
}

.st-no-features {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
    grid-column: 1 / -1;
}

@media (max-width: 1024px) {
    .st-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .st-info-section,
    .st-info-section .st-container {
        padding: 0;
    }

    .st-info-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .st-info-card {
        padding: 20px;
        flex-direction: row;
        border-radius: 0;
        gap: 10px;
    }

    .st-info-card:nth-child(even) {
        background: linear-gradient(180deg, #1AC6FF 0%, #004AB3 100%);
        color: var(--white);
        flex-direction: row-reverse;
    }

    .st-info-img {
        flex: 0 0 calc(40% - 5px);
        margin: 0;
    }

    .st-info-content {
        flex: 0 0 calc(60% - 5px);
    }

    .st-info-card:nth-child(even) h3 {
        color: var(--white);
    }

    .st-info-card:nth-child(even) p {
        color: rgba(255, 255, 255, 0.9);
    }

    .st-info-card:nth-child(even) .st-btn-primary {
        background: var(--white);
        color: var(--st-blue-dark);
    }

    .st-info-card:nth-child(even) .st-btn-primary .st-arrow-icon {
        background: var(--st-gradient);
    }

    .st-info-card:nth-child(even) .st-btn-primary .st-arrow-icon img {
        filter: brightness(0) invert(1);
    }
}

@media (max-width: 479px) {

    .st-info-card,
    .st-info-card:nth-child(even) {
        flex-direction: column;
    }

    .st-info-img,
    .st-info-content {
        flex: inherit;
    }
}


