/* Main container */
.suprema-tabs {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}

/* Hero Section Styles */
.hero {
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px;
}

.hero-content {
    display: flex;
    align-items: center;
    row-gap: 60px;
    column-gap: 160px;
}

.hero-text {
    width: 50%;
}

.hero-text h1 {
    font-size: 36px;
    line-height: 43px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    color: red;
}

.hero-text p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: grey;
    margin-bottom: 40px;
    padding-right: 90px;
}

.hero-button {
    display: inline-block;
    background-color: red;
    color: #fff;
    padding: 10px 12px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-button:hover {
    box-shadow: 0 0 0 0.25rem rgb(255 0 0 / 50%);
    color: #fff;
}

.hero-image {
    width: 50%;
    text-align: right;
    padding-left: 70px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    width: 100%;
}

/* Tab Navigation Styles */
.iconSupremaBtn {
    border-width: 0;
    background-color: unset;
    outline: none;
    position: relative;
    right: 80px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.iconSuprema {
    position: relative;
}

.iconSuprema img {
    width: 75px;
    height: 75px;
}

.iconTextDivSuprema {
    position: relative;
    bottom: 50px;
    left: 50px;
    width: 170px;
}

#supremaContentLink {
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-bottom: 0px !important;
    list-style: none;
    padding: 0;
    margin: 0;
}

#supremaContentLink li {
    list-style: none;
    margin: 0;
    padding: 0;
}

#supremaContentLink li button.active {
    border: none !important;
    outline: none !important;
}

.nav-tabs .nav-link {
    border: none;
}

.iconTextSuprema {
    font-size: 27px;
    font-weight: 450;
    width: 265px;
    color: gray;
    display: inline-block;
    position: relative;
}

.iconTextSuprema:after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: -8px;
    left: 0;
    background-color: red;
    transform-origin: bottom center;
    transition: transform 0.25s ease-out;
}

.iconTextSuprema:hover:after {
    transform: scaleX(1);
    transform-origin: bottom center;
}

#supremaContentLink li button.active .iconTextSuprema {
    color: red !important;
}

#supremaContentLink li button.active .iconTextSuprema:after {
    transform: scaleX(1);
    transform-origin: bottom center;
}

#supremaContentLink li button.active .iconSuprema svg path {
    fill: red;
}

/* SVG Icon Styles */
.svg-icon-suprema {
    width: 75px;
    height: 75px;
    color: gray;
}

/* Product Section Styles */
.product-section {
    padding: 40px 0;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    padding: 20px;
}

.product-image {
    flex: 0 0 400px;
    padding-right: 50px;
}

.product-item:nth-child(even) .product-image {
    padding-right: 0;
    padding-left: 50px;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-info {
    flex: 1;
    padding-right: 90px;
}

.product-info h3 {
    color: red;
    font-size: 36px;
    line-height: 43px;
    font-weight: 500;
    margin-bottom: 20px;
}

.product-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: grey;
    font-weight: 400;
}

.product-features {
    display: flex;
    gap: 10px;
}

.product-features img {
    width: 30px;
    height: 30px;
}

.cta-button {
    display: inline-block;
    color: #fff;
    background-color: red;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-top: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    box-shadow: 0 0 0 0.25rem rgb(255 0 0 / 50%);
    text-decoration: none;
    color: #fff;
}

/* Tab Content Styles */
.tab-content {
    padding: 20px 0;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .product-item {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .product-image {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
    }
    
    .product-features {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .iconTextSuprema {
        font-size: 21px;
        font-weight: 400;
        width: 200px;
    }

    .svg-icon-suprema {
        width: 50px;
        height: 50px;
    }

    .iconTextDivSuprema {
        width: 172px;
        bottom: 30px;
    }
}

@media (max-width: 1200px) {
    .suprema-tabs {
        padding: 0 50px;
    }
    
    .hero {
        padding: 50px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-text,
    .hero-image {
        width: 100%;
    }
    
    .hero-image {
        padding-left: 0;
    }
    
    .hero-text h1 {
        font-size: 24px;
        line-height: 28px;
    }
    
    .hero-text p {
        padding-right: 0;
    }
    
    .product-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .product-image {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
        order: 1;
    }
    
    .product-info {
        flex: none;
        width: 100%;
        padding-right: 0;
        order: 2;
    }
    
    .product-info h3 {
        font-size: 24px;
        line-height: 28px;
        font-weight: 500;
        margin-top: 40px;
    }
    
    .product-features {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 20px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
}

@media (max-width: 765px) {
    .suprema-tabs {
        padding: 0 24px;
    }
    
    #supremaContentLink {
        flex-direction: column;
        gap: 15px;
    }
    
    .iconSupremaBtn {
        width: 100%;
        right: 0;
        position: relative;
    }
    
    .iconSuprema {
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .iconTextSuprema {
        font-size: 21px;
        width: 200px;
        text-align: center;
    }
    
    .iconTextDivSuprema {
        width: auto;
        bottom: 30px;
        left: 0;
        text-align: center;
        position: relative;
        padding-top: 60px;
    }
    
    .suprema-features {
        justify-content: center;
    }
}
