/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #173775;
    --text-dark: #252525;
    --text-light: #575855;
    --bg-light: #f2f5f8;
    --white: #ffffff;
    --font-family: 'Onest', sans-serif;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.4;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container - Fluid with max-width */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 2.5vw, 3.125rem);
    min-width: 0;
}

/* Typography - Fluid with clamp */
h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.2;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.section-title {
    font-size: clamp(1.875rem, 0.5rem + 2vw, 3.75rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: clamp(0.1rem, 0.15vw, 0.1875rem);
    margin-bottom: clamp(1.5rem, 3vw, 3rem);
}

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

/* Header */
.header {
    background: var(--white);
    padding: clamp(0.75rem, 1.5vw, 1.5rem) 0 0 0;
    margin-bottom: 0;
    position: relative;
    z-index: 100;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.header .container {
    width: 100%;
    max-width: 100%;
    padding: 0 clamp(1rem, 2.5vw, 3.125rem);
    min-width: 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: clamp(5rem, 6vw, 5.5rem);
    width: 100%;
    min-width: 0;
    padding: 0;
    margin: 0;
}

.logo {
    max-width: clamp(150px, 15vw, 241px);
    min-width: 0;
    margin-top: -1.5%;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(3rem, 2vw, 2.5rem);
    min-width: 0;
}

.nav-link {
    font-size: clamp(0.78125rem, 0.3rem + 1.2vw, 1.5625rem);
    font-weight: 500;
    text-transform: none;
    color: var(--text-dark);
    overflow-wrap: break-word;
    word-wrap: break-word;
    min-width: 0;
}

@media (max-width: 640px) {
    .nav-link {
        font-size: clamp(0.4375rem, 0.3rem + 0.7vw, 0.875rem);
    }
}

.header-line {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin: 0;
}

/* Burger menu - hidden on desktop */
.burger-menu {
    display: none;
}

/* Hero Section */
.hero {
    background: var(--bg-light);
    height: 91vh;
    width: 100%;
    max-width: 100vw;
    padding: 0;
    overflow-x: hidden;
    overflow-y: visible;
    margin-top: 0;
    margin-bottom: clamp(8rem, 10vw, 10rem);
    display: flex;
    align-items: center;
    position: relative;
}

.hero .container {
    width: 100%;
    max-width: 100%;
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 2.5vw, 3.125rem) 0 clamp(1rem, 2.5vw, 3.125rem);
    height: 100%;
    display: flex;
    align-items: flex-end;
    position: relative;
}

@media (min-width: 1024px) {
    .hero .container {
        padding-left: clamp(1rem, 2.5vw, 3.125rem);
        padding-right: clamp(8rem, 12vw, 15rem);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: stretch;
    height: 100%;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }
}

.hero-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1.5rem);
    justify-content: flex-start;
    padding-top: clamp(2rem, 4vw, 4rem);
    position: relative;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

.hero-title-line {
    font-size: clamp(3.125rem, 0.5rem + 3.5vw, 6.25rem);
    font-weight: 900;
    line-height: 1;
    color: var(--primary-color);
    letter-spacing: clamp(0.15rem, 0.25vw, 0.3125rem);
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 0.3rem + 1.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: clamp(0.0625rem, 0.1vw, 0.125rem);
    margin-top: 0;
    line-height: 1.31;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 1023px) {
    .hero-subtitle {
        white-space: normal;
    }
}

.hero-description {
    font-size: clamp(0.9375rem, 0.3rem + 1vw, 1.875rem);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.4;
    letter-spacing: clamp(0.05rem, 0.075vw, 0.09375rem);
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1rem, 1vw, 1.25rem);
    position: relative;
    width: 100%;
    margin-top: clamp(1.5rem, 2vw, 2.5rem);
}

/* Butoane mobile - invizibile pe desktop */
.hero-buttons-mobile {
    display: none;
}

.btn {
    padding: clamp(0.875rem, 1.5vw, 1.5rem) clamp(1.5rem, 3vw, 2.5rem);
    font-size: clamp(0.889rem, 0.3rem + 0.8vw, 1.778rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: clamp(0.05rem, 0.075vw, 0.089rem);
    border-radius: 0;
    transition: all 0.3s ease;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    min-height: clamp(3.5rem, 5vw, 5.46875rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.btn-large {
    padding: clamp(1rem, 2vw, 1.5rem) clamp(2rem, 4vw, 3rem);
    font-size: clamp(0.889rem, 0.3rem + 1vw, 1.778rem);
}

.hero-image-wrapper {
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    justify-self: end;
    margin-right: calc(-1 * clamp(1rem, 2.5vw, 3.125rem));
    width: calc(100% + clamp(1rem, 2.5vw, 3.125rem));
    max-width: min(100vw, calc(100% + clamp(1rem, 2.5vw, 3.125rem)));
    align-self: flex-end;
    margin-bottom: 0;
    padding-bottom: 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero-image-wrapper {
        justify-self: end;
        margin-right: calc(-1 * clamp(8rem, 12vw, 15rem));
        width: calc(100% + clamp(8rem, 12vw, 15rem));
        max-width: 100vw;
    }
}

.hero-image {
    transform: scale(0.90);
    transform-origin: right bottom;
    margin-left: auto;
}

/* About Section */
.about {
    background: var(--bg-light);
    padding: clamp(4.25rem, 8vw, 6.25rem) 0 0 0;
    margin-bottom: clamp(6.25rem, 8vw, 6.25rem);
    position: relative;
    overflow-x: visible;
    overflow-y: visible;
    width: 100%;
    max-width: 100vw;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: end;
    position: relative;
    z-index: 2;
    overflow: visible;
    padding-bottom: 0;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

.about-image-wrapper {
    min-width: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-left: calc(-1 * clamp(1.1rem, 2.75vw, 3.4375rem));
    width: calc(100% + clamp(1.1rem, 2.75vw, 3.4375rem));
    max-width: none;
    position: relative;
    z-index: 1;
    margin-top: clamp(-12.375rem, -12vw, -9.375rem);
    margin-bottom: 0;
    overflow-x: visible;
    overflow-y: visible;
}

.about-image {
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
    align-self: flex-end;
    object-position: bottom;
}

.about-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 2.5rem);
    align-items: flex-end;
    text-align: right;
    position: relative;
    z-index: 2;
    margin-top: clamp(-2.75rem, -4vw, -6.25rem);
    align-self: flex-start;
    padding-bottom: clamp(1rem, 2vw, 2rem);
}

@media (max-width: 1023px) {
    .about-content {
        align-items: flex-start;
        text-align: left;
    }
    
    /* Mută imaginea sub text doar pe mobile */
    .about-image-wrapper {
        order: 2;
    }
    
    .about-content {
        order: 1;
    }
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: clamp(0.25rem, 0.5vw, 1rem);
    flex-wrap: wrap;
    justify-content: flex-start;
}

@media (min-width: 768px) {
    .section-header {
        flex-wrap: nowrap;
    }
}


.section-header .section-title {
    white-space: nowrap;
    flex-shrink: 1;
    margin-bottom: 0;
    line-height: 1;
    display: inline-block;
    vertical-align: baseline;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.section-accent {
    display: inline-block;
    vertical-align: baseline;
    align-self: center;
}

.section-accent {
    width: clamp(1.5rem, 2.5vw, 2.6875rem);
    height: clamp(1.5rem, 2.5vw, 2.6875rem);
    background: var(--primary-color);
    flex-shrink: 0;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 1.5rem);
    min-width: 0;
}

.about-text p {
    font-size: clamp(0.65rem, 0.2rem + 1vw, 1.625rem);
    font-weight: 400;
    line-height: 140%;
    color: #252525;
    letter-spacing: clamp(0.5px, 0.65vw, 1.3px);
    overflow-wrap: break-word;
    word-wrap: break-word;
    text-align: right;
    min-width: 0;
}

@media (max-width: 1023px) {
    .about-text p {
        text-align: left;
    }
}

.about-highlight {
    font-size: clamp(0.65rem, 0.2rem + 1vw, 1.625rem);
    font-weight: 800;
    color: #173775 !important;
    line-height: 140%;
    letter-spacing: clamp(0.5px, 0.65vw, 1.3px);
    text-align: right;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.about-highlight strong {
    color: #173775 !important;
    font-weight: 800;
}

@media (max-width: 1023px) {
    .about-highlight {
        text-align: left;
    }
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.25rem, 0.5vw, 1rem);
    align-items: center;
}

@media (min-width: 768px) {
    .about-badges {
        flex-wrap: nowrap;
        gap: 0;
    }
}

.badge-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
}

.badge {
    padding: clamp(0.75rem, 1vw, 0.875rem) clamp(1rem, 1.5vw, 1.625rem);
    border: 1px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    font-size: clamp(0.625rem, 0.3rem + 0.8vw, 1.25rem);
    font-weight: 800;
    text-transform: none;
    letter-spacing: clamp(0.05rem, 0.05vw, 0.0625rem);
    overflow-wrap: break-word;
    word-wrap: break-word;
    height: clamp(2.5rem, 3vw, 2.9375rem);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    line-height: 1.4;
}

.badge-divider {
    width: clamp(0.5rem, 0.7vw, 0.65625rem);
    height: 1px;
    background: var(--primary-color);
    flex-shrink: 0;
    margin: 0;
    display: block;
}

/* Why Choose Section */
.why-choose {
    background: url('images/Rectangle 5.jpg') center/cover no-repeat;
    padding: clamp(2rem, 5vw, 4rem) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: clamp(33.75rem, 45vw, 33.75rem);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: clamp(33.75rem, 45vw, 33.75rem);
    }
}

.feature-card {
    background: var(--bg-light);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    min-width: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: clamp(3.5rem, 4.5vw, 4.375rem);
    height: clamp(3.5rem, 4.5vw, 4.375rem);
    flex-shrink: 0;
    display: inline-block;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.5rem);
    flex-wrap: wrap;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    font-size: clamp(0.75rem, 0.3rem + 1vw, 1.5rem);
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: clamp(0.05rem, 0.075vw, 0.09375rem);
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    margin: 0;
    flex: 1;
}

.feature-text {
    font-size: clamp(0.71875rem, 0.3rem + 0.8vw, 1.4375rem);
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.44;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Product Lines Section */
.product-lines {
    background: var(--bg-light);
    padding: 0;
    margin-top: clamp(3.75rem, 5vw, 3.75rem);
    position: relative;
    overflow: visible;
}

.product-lines .container {
    padding-top: clamp(-3.75rem, -4.5vw, -3.75rem);
}

.product-lines-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .product-lines-grid {
        grid-template-columns: 5.5fr 1fr;
        gap: clamp(1.5rem, 2.8vw, 2.8rem);
    }
}

.product-lines-content {
    min-width: 0;
    position: relative;
    z-index: 2;
    text-align: left;
}

.product-lines-header {
    position: relative;
    z-index: 2;
    margin-bottom: clamp(0.7rem, 1.4vw, 1.05rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-lines-header .section-header {
    margin-bottom: 0;
}

.product-lines-header .product-lines-subtitle {
    margin-left: calc(clamp(1.5rem, 2.5vw, 1.6875rem) + clamp(0.5rem, 1vw, 1rem));
}

.product-lines-subtitle {
    font-size: clamp(1.875rem, 0.5rem + 2vw, 3.75rem);
    font-weight: 400;
    color: #173775;
    margin-top: 0;
    text-transform: uppercase;
    line-height: normal;
    letter-spacing: clamp(0.15rem, 0.15vw, 0.1875rem);
    white-space: nowrap;
    font-family: var(--font-family);
    display: inline-block;
    vertical-align: baseline;
}

.product-lines-description {
    font-size: clamp(0.9375rem, 0.3rem + 1vw, 1.875rem);
    font-weight: 400;
    color: #252525;
    line-height: 140%;
    letter-spacing: clamp(0.05rem, 0.075vw, 0.09375rem);
    max-width: none;
    width: 100%;
    margin: clamp(1.05rem, 0.1vw, 1.4rem) 0 0 0;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    position: relative;
    z-index: 2;
    font-family: var(--font-family);
}

.product-lines-image {
    position: relative;
    z-index: 2;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: calc(-1 * clamp(1rem, 2.5vw, 3.125rem));
    width: calc(100% + clamp(1rem, 2.5vw, 3.125rem));
    max-width: min(100vw, calc(100% + clamp(1rem, 2.5vw, 3.125rem)));
    margin-top: clamp(-4.25rem, -7.5vw, -6.25rem);
    overflow: hidden;
}

/* Imaginile pentru desktop și mobile */
.product-lines-image-desktop {
    display: block;
}

.product-lines-image-mobile {
    display: none;
}

.product-lines-image img {
    max-width: 100%;
    object-fit: contain;
    margin-left: auto;
}

/* Product Items */
.product-items {
    background: var(--white);
    padding: clamp(1rem, 2vw, 2rem) 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.product-item {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    min-width: 0;
}

.product-item-content {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    flex-wrap: wrap;
    min-width: 0;
}

.product-item-letter {
    width: clamp(4rem, 5vw, 5.375rem);
    height: auto;
    min-height: clamp(4rem, 5vw, 5.375rem);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2.1875rem, 0.5rem + 2.8vw, 4.375rem);
    font-weight: 900;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: clamp(0.125rem, 0.2vw, 0.21875rem);
    padding: clamp(0.5rem, 1vw, 1rem) 0;
    align-self: stretch;
}

.product-item[style*="background-color: #27bdbe"] .product-item-letter {
    color: #27bdbe;
}

.product-item[style*="background-color: #007fc5"] .product-item-letter {
    color: #007fc5;
}

.product-item[style*="background-color: #00461a"] .product-item-letter {
    color: #00461a;
}

.product-item[style*="background-color: #62bc46"] .product-item-letter {
    color: #62bc46;
}

.product-item[style*="background-color: #8266ac"] .product-item-letter {
    color: #8266ac;
}

.product-item[style*="background-color: #f05674"] .product-item-letter {
    color: #f05674;
}

.product-item[style*="background-color: #896e4b"] .product-item-letter {
    color: #896e4b;
}

.product-item[style*="background-color: #a72245"] .product-item-letter {
    color: #a72245;
}

.product-item[style*="background-color: #fdcba1"] .product-item-letter {
    color: #fdcba1;
}

.product-item[style*="background-color: #364d5e"] .product-item-letter {
    color: #364d5e;
}

.product-item[style*="background-color: #f7922a"] .product-item-letter {
    color: #f7922a;
}

.product-item[style*="background-color: #EB802E"] .product-item-letter {
    color: #EB802E;
}

.product-item[style*="background-color: #df2785"] .product-item-letter {
    color: #df2785;
}

.product-item[style*="background-color: #9CA6AB"] .product-item-letter {
    color: #9CA6AB;
}

/* Titluri produse - aceeași culoare cu literele categoriilor */
.product-item[style*="background-color: #27bdbe"] .product-item-title {
    color: #27bdbe;
}

.product-item[style*="background-color: #007fc5"] .product-item-title {
    color: #007fc5;
}

.product-item[style*="background-color: #00461a"] .product-item-title {
    color: #00461a;
}

.product-item[style*="background-color: #62bc46"] .product-item-title {
    color: #62bc46;
}

.product-item[style*="background-color: #8266ac"] .product-item-title {
    color: #8266ac;
}

.product-item[style*="background-color: #f05674"] .product-item-title {
    color: #f05674;
}

.product-item[style*="background-color: #896e4b"] .product-item-title {
    color: #896e4b;
}

.product-item[style*="background-color: #a72245"] .product-item-title {
    color: #a72245;
}

.product-item[style*="background-color: #fdcba1"] .product-item-title {
    color: #fdcba1;
}

.product-item[style*="background-color: #364d5e"] .product-item-title {
    color: #364d5e;
}

.product-item[style*="background-color: #f7922a"] .product-item-title {
    color: #f7922a;
}

.product-item[style*="background-color: #EB802E"] .product-item-title {
    color: #EB802E;
}

.product-item[style*="background-color: #df2785"] .product-item-title {
    color: #df2785;
}

.product-item[style*="background-color: #9CA6AB"] .product-item-title {
    color: #9CA6AB;
}

.product-item-text {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 0;
}

.product-item-title {
    font-size: clamp(1.117rem, 0.3rem + 1.3vw, 2.234rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: clamp(0.0625rem, 0.1vw, 0.11175rem);
    line-height: 1.2;
    margin: 0;
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.product-item-description {
    font-size: clamp(0.9375rem, 0.3rem + 1vw, 1.875rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.4;
    letter-spacing: clamp(0.09375rem, 0.15vw, 0.09375rem);
    overflow-wrap: break-word;
    word-wrap: break-word;
    font-family: var(--font-family);
}

.product-item-arrow {
    width: clamp(2rem, 3vw, 3.3125rem);
    height: clamp(2rem, 3vw, 3.3125rem);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-item-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-item-arrow-up img {
    transform: rotate(180deg);
}

/* Product Slider Wrapper - Fixed viewport container */
.product-item-products-wrapper {
    position: relative;
    max-height: 0;
    overflow: hidden !important;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out, margin-top 0.3s ease-out;
    /* Padding zero - spațiul lateral e dat de banda internă */
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    /* Ensure wrapper has fixed width and doesn't stretch with content */
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .product-item-products-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .product-item-products {
        /* Gap puțin mai mic ca să încapă 4 carduri fără să fie tăiate */
        gap: 50px;
    }
}

@media (max-width: 767px) {
    .product-item-products-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .product-item-products {
        /* Și mai mic pe mobile, pentru a evita tăierea cardurilor */
        gap: 40px;
    }
}

.product-item.active .product-item-products-wrapper {
    max-height: 5000px;
    opacity: 1;
    margin-top: clamp(1rem, 2vw, 1.5rem);
    overflow: hidden;
    position: relative;
    /* Ensure wrapper maintains fixed width and clips content */
    /* Micșorează viewport-ul din dreapta cu 50px pentru a ascunde al 6-lea produs */
    width: calc(100% - 50px);
    box-sizing: border-box;
    /* Ensure wrapper doesn't expand with content */
    min-width: 0;
    max-width: calc(100% - 50px);
    /* Force wrapper to clip children - don't let content expand it */
    display: block;
}

/* Product cards container - translatable strip */
.product-item-products {
    display: flex;
    align-items: stretch;
    gap: 70px;
    will-change: transform;
    transition: transform 0.35s ease;
    box-sizing: border-box;
    flex-shrink: 0;
    /* Padding-left de 120px - menține produsele în locația exactă */
    padding: 0 0 0 120px;
    margin: 0;
    position: relative;
    width: 100%;
    min-width: 0;
}

.product-item-arrow {
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Product Slider Arrows */
.product-item-products-wrapper .product-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30 !important;
    width: clamp(2.5rem, 3.5vw, 3.5625rem);
    height: clamp(2rem, 2.8vw, 3rem);
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
    box-shadow: none;
    pointer-events: auto !important;
    /* Asigură că săgețile sunt vizibile peste viewport */
    visibility: visible !important;
    opacity: 1 !important;
}

.product-item-products-wrapper .product-slider-arrow-prev {
    left: calc(clamp(0.5rem, 1vw, 1rem) + 35px);
}

.product-item-products-wrapper .product-slider-arrow-next {
    right: calc(clamp(0.5rem, 1vw, 1rem) + 30px);
}

.product-item-products-wrapper .product-slider-arrow:hover {
    opacity: 0.8;
}

.product-item-products-wrapper .product-slider-arrow:disabled,
.product-item-products-wrapper .product-slider-arrow.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.product-item-products-wrapper .product-slider-arrow::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='57' height='48' viewBox='0 0 57 48' fill='none'%3E%3Cpath d='M55.2715 25.9278C56.5261 24.6732 56.5261 22.6393 55.2715 21.3847L34.8277 0.940935C33.5732 -0.313598 31.5392 -0.313598 30.2847 0.940935C29.0301 2.19547 29.0301 4.22947 30.2847 5.484L48.4569 23.6562L30.2847 41.8285C29.0301 43.083 29.0301 45.117 30.2847 46.3716C31.5392 47.6261 33.5732 47.6261 34.8277 46.3716L55.2715 25.9278ZM0 23.6562V26.8687H53V23.6562V20.4438H0V23.6562Z' fill='white'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.product-item-products-wrapper .product-slider-arrow-prev::after {
    transform: scaleX(-1);
}

.product-item-products-wrapper .product-slider-arrow-next::after {
    transform: scaleX(1);
}

/* Padding removed from .product-item-products to allow proper centering */

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    /* Scalare puțin mai pronunțată (~5% în plus) în funcție de ecran */
    gap: clamp(12px, 0.7vw, 15px);
    padding: clamp(14px, 0.9vw, 18px) clamp(8px, 0.6vw, 11px);
    background: var(--white);
    flex-shrink: 0;
    box-sizing: border-box;
    /* Lățime aproape fixă: 225–265px, cu ~5% variație în plus */
    width: clamp(225px, 12.8vw, 265px);
    max-width: clamp(225px, 12.8vw, 265px);
    height: 100%;
}

.product-card img {
    /* Scalare foarte blândă pentru imagini, ușor mai dinamică (~5%) */
    width: clamp(108px, 6.3vw, 132px);
    height: clamp(148px, 8.7vw, 176px);
    max-width: clamp(108px, 6.3vw, 132px);
    max-height: clamp(148px, 8.7vw, 176px);
    object-fit: contain;
    object-position: center;
}

.product-card-brand {
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    overflow-wrap: break-word;
    word-wrap: break-word;
    line-height: normal;
    margin: 0;
}

/* Brand colors based on parent section background */
.product-item[style*="background-color: #27bdbe"] .product-card-brand {
    color: #27bdbe;
}

.product-item[style*="background-color: #007fc5"] .product-card-brand {
    color: #007fc5;
}

.product-item[style*="background-color: #00461a"] .product-card-brand {
    color: #00461a;
}

.product-item[style*="background-color: #62bc46"] .product-card-brand {
    color: #62bc46;
}

.product-item[style*="background-color: #8266ac"] .product-card-brand {
    color: #8266ac;
}

.product-item[style*="background-color: #f05674"] .product-card-brand {
    color: #f05674;
}

.product-item[style*="background-color: #896e4b"] .product-card-brand {
    color: #896e4b;
}

.product-item[style*="background-color: #a72245"] .product-card-brand {
    color: #a72245;
}

.product-item[style*="background-color: #fdcba1"] .product-card-brand {
    color: #fdcba1;
}

.product-item[style*="background-color: #364d5e"] .product-card-brand {
    color: #364d5e;
}

.product-item[style*="background-color: #f7922a"] .product-card-brand {
    color: #f7922a;
}

.product-item[style*="background-color: #df2785"] .product-card-brand {
    color: #df2785;
}

.product-item[style*="background-color: #EB802E"] .product-card-brand {
    color: #EB802E;
}

.product-item[style*="background-color: #9CA6AB"] .product-card-brand {
    color: #9CA6AB;
}

.product-card-name {
    font-size: clamp(0.53125rem, 0.3rem + 0.8vw, 1.0625rem);
    font-weight: 700;
    color: #173775;
    text-transform: uppercase;
    text-align: center;
    overflow-wrap: break-word;
    word-wrap: break-word;
    line-height: normal;
    margin: 0;
}

.product-card-details {
    font-size: clamp(0.46875rem, 0.3rem + 0.7vw, 0.9375rem);
    font-weight: 300;
    color: #575855;
    text-align: center;
    line-height: 1.44;
    overflow-wrap: break-word;
    word-wrap: break-word;
    margin: 0;
}

.product-card-btn {
    padding: clamp(0.5rem, 0.7vw, 0.75rem) clamp(1rem, 1.5vw, 1.5rem);
    border: 0.766px solid #173775;
    background: var(--white);
    color: #173775;
    font-size: clamp(0.3405rem, 0.2rem + 0.5vw, 0.681rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: clamp(0.034rem, 0.04vw, 0.034rem);
    overflow-wrap: break-word;
    word-wrap: break-word;
    line-height: 1.4;
    cursor: pointer;
    font-family: var(--font-family);
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
}

/* Desktop: Hide product name, details and button, show only brand and image */
/* Cards are closed by default, open only on hover of individual card */
@media (min-width: 1024px) {
    .product-card-name,
    .product-card-details,
    .product-card-btn {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
        margin: 0;
    }
    
    /* Show only on hover of the specific card */
    .product-card:hover .product-card-name,
    .product-card:hover .product-card-details,
    .product-card:hover .product-card-btn {
        opacity: 1;
        max-height: 200px;
        transform: translateY(0);
    }
}

/* Innovation Section */
.innovation {
    background: var(--bg-light);
    padding: clamp(2rem, 5vw, 4rem) 0;
    position: relative;
    overflow: hidden;
}

.innovation-title {
    text-align: center;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.innovation-description {
    font-size: clamp(0.8125rem, 0.3rem + 0.85vw, 1.625rem);
    font-weight: 400;
    color: #252525;
    line-height: 140%;
    letter-spacing: clamp(0.05rem, 0.065vw, 0.08125rem);
    text-align: center;
    max-width: clamp(55rem, 85vw, 140rem);
    margin: clamp(1.5rem, 3vw, 2rem) auto;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    position: relative;
    z-index: 2;
    font-family: var(--font-family);
    font-style: normal;
}

.innovation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(2rem, 4vw, 3rem);
    position: relative;
    z-index: 2;
}

@media (min-width: 640px) {
    .innovation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .innovation-grid {
        grid-template-columns: repeat(5, 1fr);
        grid-auto-rows: auto;
        align-items: start;
    }
    
    .innovation-card:nth-child(2),
    .innovation-card:nth-child(4) {
        margin-top: 50%;
    }
    
    .product-item-products-wrapper {
        overflow: hidden !important;
    }
}

.innovation-card {
    padding: clamp(1rem, 1.5vw, 1.5rem);
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    min-width: 0;
    position: relative;
    min-height: clamp(25rem, 30vw, 25.75rem);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.innovation-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.innovation-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: clamp(4rem, 6vw, 6.1875rem);
    background-color: #9F9F9F;
    z-index: 1;
}

.innovation-card-header {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    flex-wrap: wrap;
}

.innovation-letter {
    width: clamp(4.3125rem, 5vw, 4.3125rem);
    height: clamp(4.3125rem, 5vw, 4.3125rem);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: clamp(1.875rem, 0.5rem + 2.3vw, 3.75rem);
    font-weight: 900;
    text-transform: uppercase;
}

.innovation-card[style*="background-color: #62bc46"] .innovation-letter {
    color: #62bc46;
}

.innovation-card[style*="background-color: #896e4b"] .innovation-letter {
    color: #896e4b;
}

.innovation-card[style*="background-color: #364d5e"] .innovation-letter {
    color: #364d5e;
}

.innovation-card[style*="background-color: #f05674"] .innovation-letter {
    color: #f05674;
}

.innovation-card[style*="background-color: #a72245"] .innovation-letter {
    color: #a72245;
}

.innovation-card-title {
    font-size: clamp(0.78125rem, 0.3rem + 0.85vw, 1.5625rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: clamp(0.05rem, 0.065vw, 0.078125rem);
    line-height: 1.2;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.innovation-card-text {
    font-size: clamp(0.625rem, 0.3rem + 0.8vw, 1.25rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.18;
    letter-spacing: clamp(0.05rem, 0.06vw, 0.0625rem);
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.innovation-products {
    display: flex;
    gap: clamp(0.5rem, 1vw, 1rem);
    flex-wrap: wrap;
    margin-top: auto;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    padding-bottom: clamp(1rem, 1.5vw, 1.5rem);
}

.innovation-products img {
    width: clamp(7.8rem, 10.4vw, 11.05rem);
    height: clamp(8.45rem, 11.7vw, 12.35rem);
    max-width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* Testimonials Section */
.testimonials {
    background: var(--white);
    padding: clamp(2rem, 5vw, 4rem) 0;
}

.testimonials {
    overflow: hidden;
}

.testimonials-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: clamp(2rem, 4vw, 3rem);
}

.testimonials-grid {
    display: flex;
    gap: clamp(1.5rem, 3vw, 2rem);
    position: relative;
    width: 100%;
    transition: transform 0.5s ease;
    will-change: transform;
}

.testimonial-card {
    flex-shrink: 0;
    background: var(--bg-light);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    position: relative;
    height: clamp(24rem, 32vw, 32rem);
    opacity: 1;
    visibility: visible;
}

@media (min-width: 768px) {
    .testimonial-card {
        width: calc(50% - clamp(0.75rem, 1.5vw, 1rem));
        min-width: calc(50% - clamp(0.75rem, 1.5vw, 1rem));
        max-width: calc(50% - clamp(0.75rem, 1.5vw, 1rem));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        width: calc(33.333% - clamp(1rem, 2vw, 1.33rem));
        min-width: calc(33.333% - clamp(1rem, 2vw, 1.33rem));
        max-width: calc(33.333% - clamp(1rem, 2vw, 1.33rem));
    }
}

.testimonial-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: clamp(5.5rem, 7vw, 9.625rem);
    height: clamp(5.5rem, 7vw, 9.625rem);
    border-radius: 0;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-info {
    min-width: 0;
    flex: 1;
}

.testimonial-name {
    font-size: clamp(0.75rem, 0.3rem + 1vw, 1.5rem);
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: clamp(0.25rem, 0.5vw, 0.5rem);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.testimonial-location {
    font-size: clamp(0.71875rem, 0.3rem + 0.8vw, 1.4375rem);
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.44;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.testimonial-text {
    font-size: clamp(0.8125rem, 0.3rem + 0.85vw, 1.625rem);
    font-weight: 400;
    color: #252525;
    line-height: 140%;
    letter-spacing: clamp(0.05rem, 0.065vw, 0.08125rem);
    font-style: normal;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    min-width: 0;
    max-width: 60%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    font-family: var(--font-family);
}

.testimonial-rating {
    display: flex;
    gap: clamp(0.25rem, 0.5vw, 0.5rem);
    flex-wrap: wrap;
    align-items: flex-end;
}

.testimonial-rating img {
    width: clamp(1.5rem, 2.5vw, 2.675rem);
    height: clamp(1.5rem, 2.5vw, 2.675rem);
    object-fit: contain;
}

.testimonial-products {
    display: flex;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: flex-end;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-top: -45%;
    margin-bottom: clamp(0rem, -3vw, -1.5rem);
    position: relative;
    width: 100%;
}

.testimonial-rating {
    display: flex;
    gap: clamp(0.25rem, 0.5vw, 0.5rem);
    flex-wrap: nowrap;
    align-items: flex-end;
    flex-shrink: 0;
}

.testimonial-products img {
    width: auto;
    max-width: 50%;
    min-width: 0;
    object-fit: contain;
    align-self: flex-end;
    flex-shrink: 0;
    margin-left: -0.5rem;
}

.testimonial-product-badge {
    width: clamp(2.5rem, 3.5vw, 4.3125rem);
    height: clamp(2.5rem, 3.5vw, 4.3125rem);
    background: #a72245;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.875rem, 0.5rem + 2.3vw, 3.75rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    flex-shrink: 0;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: clamp(0.5rem, 1vw, 0.75rem);
    margin-top: clamp(2rem, 4vw, 3rem);
}

.dot {
    width: clamp(1rem, 1.5vw, 1.875rem);
    height: clamp(1rem, 1.5vw, 1.875rem);
    border-radius: 0;
    background: var(--bg-light);
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

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

/* Where to Find Section */
.where-to-find {
    background: var(--primary-color);
    padding: clamp(3rem, 7vw, 5rem) 0;
    width: 100%;
}

.where-to-find .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4vw, 3.5rem);
}

.where-to-find-title {
    font-size: clamp(1.5rem, 0.5rem + 2vw, 2.44rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: clamp(0.1rem, 0.15vw, 0.12rem);
    color: var(--white);
    text-align: center;
    margin: 0;
    line-height: 1.2;
}

.where-to-find-logos {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(3rem, 8vw, 8rem);
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .where-to-find-logos {
        gap: calc(clamp(3rem, 8vw, 8rem) + 300px);
    }
}

.where-to-find-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.5rem);
    flex: 0 1 auto;
}

.where-to-find-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 276px;
    height: auto;
}

.where-to-find-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.where-to-find-location {
    font-size: clamp(1rem, 0.3rem + 1.5vw, 1.9375rem);
    font-weight: 400;
    color: var(--white);
    text-align: center;
    text-transform: capitalize;
    margin: 0;
    line-height: 1.2;
}

/* Tablet/Medium screens - smaller logos */
@media (min-width: 768px) and (max-width: 1023px) {
    .where-to-find-logo-wrapper {
        max-width: 200px;
    }
}

/* Mobile adjustments for Where to Find section - 2 logos per row, 25% smaller */
@media (max-width: 767px) {
    .where-to-find {
        padding: clamp(2.5rem, 6vw, 4rem) 0;
    }

    .where-to-find-logos {
        flex-direction: row;
        gap: clamp(1rem, 3vw, 2rem);
        justify-content: center;
        flex-wrap: wrap;
    }

    .where-to-find-item {
        width: auto;
        flex: 0 1 calc(50% - 1rem);
        min-width: 0;
    }

    .where-to-find-logo-wrapper {
        max-width: 75%; /* 25% smaller = 75% of original */
    }

    .where-to-find-logo {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
}

/* Tablet/Medium screens - smaller logos */
@media (min-width: 768px) and (max-width: 1023px) {
    .where-to-find-logo-wrapper {
        max-width: 200px;
    }

    .where-to-find-logos {
        gap: clamp(2rem, 5vw, 4rem);
    }
}

.cta {
    background: linear-gradient(0deg, #F2F5F8 0%, #F2F5F8 100%), linear-gradient(270deg, rgba(0, 0, 0, 0.00) 58.7%, rgba(0, 0, 0, 0.70) 115.79%);
    padding: 0;
    padding-top: clamp(2.6rem, 6.5vw, 5.2rem);
    margin-top: clamp(4rem, 6.25vw, 6.25rem);
    position: relative;
    overflow-x: visible;
    overflow-y: visible;
    width: 100%;
    max-width: 100vw;
}

.cta-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 2rem);
    align-items: flex-start;
    position: relative;
}

@media (max-width: 1200px) {
    .product-item-products {
        gap: 70px;
    }
}

@media (max-width: 767px) {
    .product-item-products {
        gap: 70px;
    }
}

@media (min-width: 768px) {
    .cta-grid {
        flex-direction: row;
        align-items: flex-end;
        gap: clamp(1rem, 2vw, 2rem);
    }
}

.cta-image-wrapper {
    min-width: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: none;
    display: flex;
    align-items: flex-end;
    overflow: visible;
    margin-left: calc(-1 * clamp(1.1rem, 2.75vw, 3.4375rem));
    width: calc(100% + clamp(1.1rem, 2.75vw, 3.4375rem));
}

@media (min-width: 768px) {
    .cta-image-wrapper {
        width: clamp(20rem, 30vw, 36.6875rem);
        max-width: clamp(20rem, 30vw, 36.6875rem);
        height: clamp(20rem, 30vw, 36.125rem);
        align-self: flex-end;
        margin-top: clamp(-28.125rem, -23.4375vw, -28.125rem);
    }
}

.cta-image {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.cta-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(1.1475rem, 2.199375vw, 2.199375rem);
    padding: clamp(1.5rem, 2.75vw, 2.75rem) 0;
    align-items: flex-end;
    text-align: right;
}

@media (min-width: 768px) {
    .cta-content {
        width: 90%;
        max-width: 90%;
        margin-left: -10%;
        position: relative;
        z-index: 2;
    }
}

.cta-title {
    font-size: clamp(1.2225rem, 0.3rem + 1.6vw, 2.445rem);
    font-weight: 900;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: clamp(0.1rem, 0.122vw, 0.12225rem);
    line-height: normal;
    text-align: right;
    overflow-wrap: break-word;
    word-wrap: break-word;
    font-family: var(--font-family);
}

@media (max-width: 767px) {
    .cta-title {
        text-align: left;
    }
}

.cta-description {
    font-size: clamp(0.96875rem, 0.3rem + 1.3vw, 1.9375rem);
    font-weight: 400;
    color: #252525;
    line-height: 1.4;
    letter-spacing: clamp(0.05rem, 0.096875vw, 0.096875rem);
    text-align: right;
    overflow-wrap: break-word;
    word-wrap: break-word;
    font-family: var(--font-family);
}

@media (max-width: 767px) {
    .cta-description {
        text-align: left;
    }
}

.cta-button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0;
    width: clamp(15rem, 21.375vw, 21.375rem);
    height: clamp(3.5rem, 5.4375vw, 5.4375rem);
    font-family: var(--font-family);
    font-size: clamp(0.889rem, 0.3rem + 1.2vw, 1.778rem);
    font-weight: 800;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: clamp(0.05rem, 0.071vw, 0.071rem);
    text-align: center;
    text-transform: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    align-self: flex-end;
}

.cta-button:hover {
    opacity: 0.9;
}

/* Footer */
.footer {
    background: rgba(117, 117, 117, 0.2);
    padding: clamp(2rem, 5vw, 4rem) 0 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-nav-wrapper {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
}

/* Mobile: footer-nav columns side by side, 50% each */
@media (max-width: 767px) {
    .footer-nav-wrapper {
        flex-direction: row;
        gap: clamp(1rem, 3vw, 2rem);
        width: 100%;
    }

    .footer-nav-wrapper .footer-column {
        flex: 0 1 50%;
        width: 50%;
        min-width: 0;
    }
}

@media (min-width: 640px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-nav-wrapper {
        display: contents;
    }
}

.footer-column {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.footer-logo {
    max-width: clamp(150px, 15vw, 298px);
    min-width: 0;
    margin-top: -5%;
}

.footer-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    min-width: 0;
    align-self: flex-start;
    width: 100%;
}

.footer-social-title {
    font-size: clamp(0.4875rem, 0.3rem + 0.7vw, 0.975rem);
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: clamp(0.15rem, 0.2vw, 0.195rem);
    margin-left: 2%;
}

.footer-social-icons {
    display: flex;
    gap: clamp(0.75rem, 1.5vw, 1.3rem);
    flex-wrap: nowrap;
}

.social-icon {
    width: clamp(1rem, 1.5vw, 1.5rem);
    height: clamp(1rem, 1.5vw, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    min-width: 0;
}

.footer-link {
    font-size: clamp(0.7675rem, 0.3rem + 0.8vw, 1.535rem);
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.footer-bottom {
    background: var(--primary-color);
    padding: clamp(1rem, 2vw, 1.5rem) 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

@media (min-width: 768px) {
    .footer-bottom .container {
        flex-direction: row;
    }
}

.footer-copyright {
    font-size: clamp(0.4375rem, 0.3rem + 0.7vw, 0.875rem);
    font-weight: 400;
    color: var(--white);
    text-transform: capitalize;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.footer-links {
    display: flex;
    gap: clamp(1.5rem, 3vw, 3.125rem);
    flex-wrap: wrap;
}

.footer-link-small {
    font-size: clamp(0.4375rem, 0.3rem + 0.7vw, 0.875rem);
    font-weight: 400;
    color: var(--white);
    text-transform: capitalize;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Utility Classes */
@media (max-width: 639px) {
    .hide-mobile {
        display: none;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .hide-tablet {
        display: none;
    }
}

@media (min-width: 1024px) {
    .hide-desktop {
        display: none;
    }
}

/* Mobile Styles - All fixes inside this media query */
@media (max-width: 740px) {
    /* Mobile safety rules - prevent all overflow */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }

    /* Fix body overflow */
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Fix container overflow */
    .container {
        max-width: 100%;
        padding: 0 clamp(1rem, 3vw, 1.5rem);
    }

    /* Header fixes - restore desktop behavior on mobile */
    .header {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
        background: var(--white) !important;
        padding: clamp(0.75rem, 1.5vw, 1.5rem) 0 0 0 !important;
        margin-bottom: 0 !important;
        position: relative !important;
        z-index: 100 !important;
    }

    .header .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 clamp(1rem, 3vw, 1.5rem) !important;
        min-width: 0 !important;
        margin: 0 auto !important;
    }

    .header-content {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        gap: 1rem !important;
        width: 100% !important;
        min-width: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .logo {
        max-width: clamp(120px, 30vw, 180px) !important;
        min-width: 0 !important;
        flex-shrink: 0 !important;
        width: auto !important;
    }

    /* Burger Menu Button */
    .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 30px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 101;
        flex-shrink: 0;
    }

    .burger-menu span {
        width: 100%;
        height: 3px;
        background-color: var(--primary-color);
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    /* Hide desktop nav, show mobile dropdown */
    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100vw;
        background: var(--white);
        flex-direction: column;
        padding: clamp(4rem, 8vw, 5rem) clamp(1.5rem, 4vw, 2rem) clamp(2rem, 4vw, 3rem);
        gap: 1.5rem;
        z-index: 100;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        max-height: 100vh;
    }

    .nav.open {
        display: flex;
    }

    .nav-link {
        font-size: clamp(1rem, 3vw, 1.2rem);
        padding: 0.75rem 0;
        border-bottom: 1px solid #e0e0e0;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    /* Hero Section fixes */
    .hero {
        max-width: 100vw;
        overflow-x: hidden;
        height: auto;
        min-height: 70vh;
    }

    .hero .container {
        max-width: 100%;
        padding: clamp(2rem, 4vw, 3rem) 0 0 clamp(1rem, 3vw, 1.5rem);
        padding-right: 0 !important;
        align-items: flex-end !important;
        overflow-x: visible !important;
    }

    .hero-grid {
        gap: clamp(1.5rem, 4vw, 2rem);
    }

    .hero-content {
        padding-top: clamp(1rem, 3vw, 2rem);
        padding-right: clamp(1rem, 3vw, 1.5rem) !important;
    }

    .hero-title-line {
        font-size: clamp(2rem, 6vw, 3.5rem) !important;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.5rem) !important;
        white-space: normal !important;
    }

    .hero-description {
        font-size: clamp(0.75rem, 2.5vw, 1rem) !important;
    }

    /* Ascunde butoanele desktop pe mobile */
    .hero-buttons {
        display: none !important;
    }

    /* Butoane mobile - vizibile și poziționate peste imagine */
    .hero-buttons-mobile {
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap !important;
        gap: clamp(1rem, 1vw, 1.25rem);
        position: absolute;
        bottom: clamp(2rem, 5vw, 4rem);
        left: clamp(1rem, 2.5vw, 3.125rem);
        right: clamp(1rem, 2.5vw, 3.125rem);
        width: auto;
        z-index: 30 !important;
        margin-top: 0;
    }

    .hero-buttons-mobile .btn {
        flex: 1 1 auto;
        min-width: 0;
        white-space: nowrap;
    }

    .hero-image-wrapper {
        position: relative;
        z-index: 1;
    }

    .hero-image {
        position: relative;
        z-index: 1;
    }

    .btn {
        flex: 1 1 auto;
        min-width: calc(50% - 0.5rem);
        max-width: 100%;
        font-size: clamp(0.75rem, 2.5vw, 1rem) !important;
        padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
    }

    .hero-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: flex-end !important;
        margin-right: 0 !important;
    }

    .hero-image {
        width: auto !important;
        max-width: none !important;
        height: auto !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        margin-right: 0 !important;
    }

    /* About Section fixes */
    .about {
        max-width: 100vw !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        overflow: visible !important;
        padding: clamp(2rem, 4vw, 3rem) 0 0 0;
        position: relative !important;
        z-index: 1 !important;
    }

    .about .container {
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .about-grid {
        gap: clamp(1rem, 3vw, 1.5rem);
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        position: relative !important;
        z-index: 1 !important;
        isolation: auto !important;
    }

    .about-image-wrapper {
        margin-left: calc(-1 * clamp(1rem, 3vw, 1.5rem)) !important;
        width: calc(100% + clamp(1rem, 3vw, 1.5rem)) !important;
        max-width: calc(100% + clamp(1rem, 3vw, 1.5rem)) !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        position: relative !important;
        z-index: 20 !important;
        /* Tăie partea de jos cu 10% */
        overflow: hidden !important;
        overflow-x: visible !important;
        overflow-y: hidden !important;
        /* Limitează înălțimea pentru a tăia 10% din partea de jos */
        max-height: 90% !important;
        order: 2 !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }

    .about-image {
        max-width: 80% !important;
        width: 80% !important;
        height: auto !important;
        display: block !important;
        position: relative !important;
        z-index: 20 !important;
        margin-left: 0 !important;
        margin-right: auto !important;
        /* Mută imaginea mai jos și taie 10% din partea de jos */
        transform: translateY(10%) !important;
    }

    .about-content {
        margin-top: 0 !important;
        gap: clamp(0.75rem, 2vw, 1rem);
        position: relative !important;
        z-index: 1 !important;
        order: 1 !important;
    }

    .about-text p {
        font-size: clamp(0.7rem, 2.5vw, 0.9rem) !important;
    }

    .about-highlight {
        font-size: clamp(0.7rem, 2.5vw, 0.9rem) !important;
    }

    .about-badges {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: clamp(0.75rem, 2vw, 1rem) !important;
        align-items: stretch !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .badge-wrapper {
        flex: 0 0 auto !important;
        min-width: 0 !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .badge {
        white-space: normal !important;
        font-size: clamp(0.6rem, 1.8vw, 0.85rem) !important;
        padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem) !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }

    .badge-divider {
        flex-shrink: 0 !important;
        width: clamp(1rem, 3vw, 2rem) !important;
        height: 1px !important;
        align-self: center !important;
        margin: 0 !important;
    }

    /* Product Lines fixes */
    .product-lines {
        max-width: 100vw !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        overflow: visible !important;
        position: relative !important;
        z-index: 1 !important;
        padding-top: clamp(0.625rem, 2.5vw, 1.25rem) !important;
    }

    .product-lines .container {
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .product-lines-grid {
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .product-lines-header {
        margin-bottom: clamp(0.5rem, 1.5vw, 1rem) !important;
    }

    .product-lines-header .section-header {
        flex-wrap: nowrap !important;
        gap: clamp(0.25rem, 1vw, 0.5rem) !important;
        align-items: center !important;
    }

    .product-lines-header .section-title {
        font-size: clamp(1.2rem, 3vw, 1.5rem) !important;
        white-space: normal !important;
        line-height: 1.2 !important;
    }

    .product-lines-header .section-accent {
        flex-shrink: 0 !important;
        width: clamp(1rem, 2vw, 1.5rem) !important;
        height: clamp(1rem, 2vw, 1.5rem) !important;
    }

    .product-lines-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.2rem) !important;
        margin-top: clamp(0.5rem, 1.5vw, 0.75rem) !important;
        white-space: normal !important;
    }

    .product-lines-header .product-lines-subtitle {
        margin-left: calc(clamp(0.5rem, 2.5vw, 2.6875rem) + clamp(0.5rem, 1vw, 1rem));
    }

    .product-lines-image {
        margin-right: auto !important;
        margin-left: -20px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: clamp(1rem, 3vw, 2rem);
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        position: relative !important;
        z-index: 20 !important;
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
    }

    /* Ascunde imaginea desktop și afișează imaginea mobile */
    .product-lines-image-desktop {
        display: none !important;
    }

    .product-lines-image-mobile {
        display: block !important;
    }

    .product-lines-image img {
        max-width: 80% !important;
        width: 80% !important;
        height: auto !important;
        object-fit: contain !important;
        position: relative !important;
        z-index: 10 !important;
    }


    
    /* Product Items fixes */
    .product-items {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .product-item {
        padding: clamp(1rem, 3vw, 1.5rem);
        max-width: 100%;
    }

    .product-item-content {
        gap: clamp(0.75rem, 2vw, 1rem);
        flex-wrap: wrap;
    }

    .product-item-products {
        padding-left: 70px !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
    }

    /* Mută săgețile cu 10% prin părți pe mobile */
    .product-item-products-wrapper .product-slider-arrow-prev {
        left: calc(clamp(0.5rem, 1vw, 1rem) + 35px - 8vw) !important;
    }

    /* Mută săgeata next cu 20px la dreapta pe mobile */
    .product-item-products-wrapper .product-slider-arrow-next {
        right: calc(clamp(0.5rem, 1vw, 1rem) + 30px - 8vw) !important;
        left: calc(320px + 20px) !important;
    }

    /* Innovation Section fixes */
    .innovation {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Mărește imaginile din innovation-products cu 50% pe mobile */
    .innovation-products img {
        width: 90% !important;
        height: 90% !important;
        max-width: 90% !important;
        max-height: 90% !important;
        transform: scale(0.9) !important;
    }

    /* Mărește textul din innovation-card-text cu 20% pe mobile */
    .innovation-card-text {
        font-size: calc(clamp(0.625rem, 0.3rem + 0.8vw, 1.25rem) * 1.2) !important;
    }

    .innovation-grid {
        gap: clamp(1rem, 3vw, 1.5rem);
    }

    /* Testimonials Section fixes */
    .testimonials {
        max-width: 100vw;
        overflow-x: visible !important;
        overflow-y: visible !important;
    }

    .testimonials-wrapper {
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .testimonials-wrapper::-webkit-scrollbar {
        display: none;
    }

    /* Allow grid to extend horizontally for slide translation */
    .testimonials-grid {
        overflow: visible !important;
        width: max-content !important;
    }

    .testimonial-card {
        height: auto !important;
        min-height: auto !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        padding: clamp(1rem, 3vw, 1.5rem) !important;
        display: flex !important;
        flex-direction: column !important;
        gap: clamp(1rem, 2vw, 1.5rem) !important;
    }

    .testimonial-content {
        flex: 1 1 auto !important;
        min-height: 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .testimonial-text {
        max-width: 60% !important;
        width: 60% !important;
        margin-bottom: clamp(0.75rem, 2vw, 1rem) !important;
        flex: 1 !important;
    }

    .testimonial-products {
        margin-top: clamp(-8rem, -10vw, -2rem) !important;
        margin-bottom: 0 !important;
        gap: clamp(1rem, 2vw, 1.5rem) !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: flex-end !important;
        display: flex !important;
        width: 100% !important;
    }

    .testimonial-rating {
        flex-wrap: nowrap !important;
        gap: clamp(0.15rem, 0.5vw, 0.35rem) !important;
        align-items: flex-end !important;
        align-self: flex-end !important;
        display: flex !important;
        flex-shrink: 0 !important;
    }

    .testimonial-rating img {
        width: clamp(0.9rem, 1.8vw, 1.35rem) !important;
        height: clamp(0.9rem, 1.8vw, 1.35rem) !important;
    }

    .testimonial-products img {
        max-width: 36% !important;
        width: auto !important;
        height: auto !important;
        margin-left: auto !important;
        flex-shrink: 0 !important;
        align-self: flex-end !important;
        position: relative !important;
        z-index: 10 !important;
    }

    .testimonial-header {
        gap: clamp(0.5rem, 1.5vw, 0.75rem) !important;
        margin-bottom: clamp(0.75rem, 2vw, 1rem) !important;
        display: flex !important;
        align-items: center !important;
    }

    .testimonial-avatar {
        width: clamp(5.2rem, 10.4vw, 6.5rem) !important;
        height: clamp(5.55rem, 10.4vw, 6.5rem) !important;
        flex-shrink: 0 !important;
    }

    /* CTA Section fixes */
    .cta {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .cta-grid {
        display: flex !important;
        flex-direction: column !important;
    }

    .cta-content {
        order: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
    }

    .cta-image-wrapper {
        order: 2 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        height: auto !important;
    }

    .cta-image {
        max-width: 100%;
        width: 100%;
    }

    .cta-button {
        align-self: flex-start !important;
    }

    /* Footer fixes */
    .footer {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .footer-content {
        gap: clamp(1.5rem, 4vw, 2rem);
    }

    /* General fixes for all sections */
    section {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Comprehensive overflow fixes - prevent all horizontal overflow */
    /* Fix all sections (except header, about and product-lines) */
    section:not(.header):not(.about):not(.product-lines) {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    /* Fix all containers and wrappers (exclude header, about and product-lines elements) */
    .container:not(.header .container):not(.header):not(.about .container):not(.product-lines .container),
    [class*="wrapper"]:not(.header-wrapper):not(.header *):not(.about-image-wrapper):not(.product-lines-image),
    [class*="content"]:not(.header-content):not(.header *):not(.about-content):not(.product-lines-content),
    [class*="grid"]:not(.header-grid):not(.header *):not(.about-grid):not(.product-lines-grid) {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    /* Fix all flex and grid items (exclude header) */
    [class*="flex"]:not(.header *):not(.header),
    [class*="grid"]:not(.header *):not(.header),
    .flex:not(.header *):not(.header),
    .grid:not(.header *):not(.header) {
        min-width: 0 !important;
    }

    /* Fix all images (exclude header logo and testimonial product image) */
    img:not(.logo img):not(.header img):not(.testimonial-products img) {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Ensure no horizontal scroll */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
}
