body {
    background-color: var(--primary-bg) !important;
    margin: 0;
    padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Header sekcia */
header {
    width: 100%;
    background-color: var(--hero-bg-color);
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.header-container {
    max-width: 1440px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5rem;
    z-index: 1000;
}

.logo {
    font-family: var(--hero-title-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-bg-title-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--hero-secondary-color);
    transform: scale(1.05);
}

.logo img {
    height: 40px;
    width: auto;
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.navigation li {
    position: relative;
}

.navigation a {
    font-family: var(--text-font);
    font-size: 1rem;
    color: var(--hero-title-color);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    font-weight: 500;
}

.navigation a:hover {
    color: var(--hero-subtitle-color);
}

.navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--third-bg);
    transition: width 0.3s ease;
}

.navigation a:hover::after {
    width: 100%;
}

.ritght-section .navbar-button {
    background-color: var(--third-bg);
    color: var(--third-bg-text-color);
    font-family: var(--text-font);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ritght-section .navbar-button:hover {
    background-color: var(--secondary-bg-title-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}



/* Hero sekcia */
.hero {
    min-height: 100vh;
    background-color: var(--hero-bg-color);
    color: var(--hero-text-color);
    text-align: center;
    display: flex;
    position: relative;
    overflow: hidden;
    margin-top: -5rem;
    z-index: 999;
}

.hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    cursor: default;
}

.hero-content {
    max-width: 700px;
    text-align: left;
}

.hero-badge {
    font-family: var(--text-font);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--hero-subtitle-color);
    margin-bottom: 0.5rem;
}

.hero h1 {
    font-family: var(--hero-title-font);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--secondary-bg-title-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    margin-top: 0rem;
    transition: all 0.7s ease;

}

.hero h1:hover {
    scale: 1.02;
}

.hero-subtitle {
    font-family: var(--hero-title-font);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--hero-subtitle-color);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.hero-description {
    font-family: var(--text-font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--hero-text-color);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-button {
    background-color: var(--third-bg);
    color: var(--third-bg-text-color);
    font-family: var(--text-font);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.hero-button:hover {
    background-color: var(--secondary-bg-title-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-button::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.hero-button:hover::after {
    transform: translateX(3px);
}

.hero-background-text{
  position: absolute;
  right: -310px;
  top: 0;
  height: 100%;
  transform: rotate(-90deg);
  text-orientation: upright;
  display: flex;
  align-items: center;
  font-size: 13rem;
  font-family: var(--hero-title-font);
  font-style: uppercase;
  opacity: 0.5;
  font-weight: 700;
  cursor: default;
}

/* Pravá strana - Obrázok produktu */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 740px;
    height: auto;
}

.product-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    transition: all 0.8s ease;
}

.product-showcase img {
    width: 100%;
    max-width: 740px;
    z-index: 1000;
    transition: all 0.8s ease;
    filter: drop-shadow(5px 15px 10px rgba(0,0,0,0.5));
    height: auto;
    object-fit: contain;
}

.product-showcase:hover {
    color: var(--hero-secondary-color);
    transform: scale(1.02);
    z-index: 1000;
}


/* Produktové bannery */
.product-banner {
    width: 100%;
    background-color: #616a57;
    color: var(--third-bg-text-color);
    text-align: center;
    display: flex;
    position: relative;
    overflow: hidden;
    font-family: var(--hero-title-font);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.product-banner-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5rem;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
    cursor: default;
    width: 120%;    
}


.product-banner-content {
    font-size: 1.4rem;
    font-weight: 400;
    text-align: left;
    width: 70%;
    margin-left: 3rem;
    padding-right: -15rem;
}

.product-banner-stats {
    border: 1px solid var(--hero-secondary-color);
    text-align: left;
    padding: 1rem;  
    width: 8rem;
    height: 8rem;
    display: flex;
    align-items: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    margin-top: -0.2rem;
    margin-bottom: -0.2rem;
}

.stat-item p {
    font-size: 1rem;
    font-weight: 300;
    margin: 0;  
    margin-bottom: -0.2rem;
}

.stat-item span {
    color: gold;
    margin: 0;  
    font-size: 1.5rem;
    font-weight: 300;
}




/* produkt list benefits */

.product-benefits {
    background-color: var(--secondary-bg);
    padding: 3rem 0;
    text-align: center;
    color: var(--hero-text-color);
    text-align: center;
    display: flex;
    position: relative;
    overflow: hidden;
    z-index: 1000;
}

.product-benefits-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5rem;
    display: block;
    gap: 4rem;
    align-items: center;
    justify-items: center;
    cursor: default;
}

.product-benefits-content {
    max-width: 100%;
    text-align: left;
}

.badge {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-size: 1.0rem;
  font-weight: 600;
  color: #49504a;
  font-family: var(--hero-title-font);
  width: 100%;
}

.title h2{
    font-family: var(--hero-title-font);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--secondary-bg-title-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    margin-top: 0rem;
    justify-content: center;
    text-align: center;
    text-wrap: balance;
    padding-bottom: 2rem;
}

.badge::before,
.badge::after {
  content: "";
  border-bottom: 1px solid #49504a; 
  margin: 0 1rem; 
  width: 30px;
}

.photo-text-grid-container{
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    cursor: default;
}

.photo-product{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    transition: all 0.7s ease;
}

.photo-product:hover {
    scale: 1.02;
}


.benefits-list{
    gap: 2rem;
}

.photo-product img {
    max-width: 500px;
    z-index: 1000;
    transition: all 0.8s ease;
    filter: drop-shadow(5px 15px 10px rgba(0,0,0,0.5));
}

.text-product-list {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 0.5rem;                       
  align-items: center;
  padding: 1rem;           
}

.text-product-list-icon {
  grid-row: 1 / span 2;          
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  background-color: var(--third-bg); 
  border-radius: 12px;   
  max-width: 50px; 
  padding: 1rem;
}

.text-product-list-icon img {
  max-width: 40px;
  align-items: center;
}

.text-product-list-title h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary-bg-title-color);
  font-family: var(--hero-title-font);
  padding-left: 1rem;
}

.text-product-list-description p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--hero-text-color);
  font-family: var(--text-font);
  padding-left: 1rem;
}


/*Other products section*/
.other-products{
    background-color: #fefefe;
    padding: 3rem 0;
    text-align: center;
    color: var(--hero-text-color);
    text-align: center;
    display: flex;
    position: relative;
    overflow: hidden;
    z-index: 1000;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.other-products-container{
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5rem;
    display: block;
    gap: 4rem;
    align-items: center;
    justify-items: center;
    cursor: default;
}

.icon-category-product-list{
  display: flex;
  gap: 3rem;
}

.icon-category-product{
  display: inline-block;
  justify-content: center;
  align-items: center;
  align-content: center;
  background-color: #dfe7db; 
  border-radius: 90px;   
  width: 100px; 
  height: 100px;
  padding: 1rem;
  gap: 3rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.icon-category-product:hover {
    color: var(--hero-secondary-color);
    transform: scale(1.03);
    z-index: 1000;
}

.icon-category-product img {
    max-width: 100px;
    z-index: 1000;
    transition: all 0.8s ease;
    gap:3rem;
}

.icon-category-product h4 {
    font-family: var(--hero-title-font);
    font-size: 1.0rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--secondary-bg-title-color);
    letter-spacing: -0.02em;
    justify-content: center;
    text-align: center;
    padding-top: 1rem;
    transition: all 0.3s ease;
}

.icon-category-product:hover h4 {
    color: var(--hero-secondary-color);
}

.other-products-button{
    margin-top: 6rem;
}

.product-button {
    background-color: var(--third-bg);
    color: var(--third-bg-text-color);
    font-family: var(--text-font);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.product-button:hover {
    background-color: var(--secondary-bg-title-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


/*about us*/
.about-containter{
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5rem;
    display: block;
    gap: 4rem;
    align-items: center;
    justify-items: center;
    cursor: default;
}

.about-content{
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    cursor: default;
    justify-content: space-around;
    align-content: center;
    justify-items: end;
}

.benefits-list h2 {
    transition: all 0.7s ease;
}

.benefits-list h2:hover {
    scale: 1.02;
}

.text{
    font-family: var(--text-font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--hero-text-color);
    margin-bottom: 2.5rem;
    max-width: 600px;
}


/*recenzie*/
.review-section{
    background-color: #fefefe;
    padding: 3rem 0;
    text-align: center;
    color: var(--hero-text-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1000;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.review{
    display: grid;
    flex: 0 0 25%;
    box-sizing: border-box;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    max-width: none;
    padding: 2rem;
    border: 1px solid var(--hero-secondary-color);
    border-radius: 1rem;
    background: #fff; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 1rem;
}

.review:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.review-list {
  position: relative;
  overflow: hidden; /* skryje všetko mimo */
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem 0rem;
  display: flex;     
  justify-content: center;
}

/* fade-out efekt na krajoch */
.review-list::before,
.review-list::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;      /* šírka fade-outu */
  height: 100%;
  z-index: 2;
  pointer-events: none; /* kliky prejdú cez */
}

.review-list::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.review-list::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}


.reviews-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.review img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    justify-content: left;
    align-items: center;
}

.name{
    grid-area: 1 / 1 / 2 / 2;
    display: flex;
    gap: 1rem;
    justify-content: left;
    align-items: center;

    font-family: var(--hero-title-font);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--secondary-bg-title-color);
}

.stars{
    grid-area: 1 / 2 / 2 / 3;
    display: flex;
    align-items: center;
    justify-content: right;

    color: var(--secondary-bg-title-color);
    font-size: 1.5rem;
    font-weight: 300;
}

.review-text{
    grid-area: 2 / 1 / 3 / 3;
    text-align: left;
    font-family: var(--text-font);
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--hero-text-color);
}

.review-button {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    cursor: pointer;
}

.slider-btn{
    border-radius: 90px;
    border: 1px solid var(--hero-secondary-color);
    background-color: var(--secondary-bg);
    color: var(--hero-text-color);
    font-family: var(--text-font);
    font-size: 0.95rem;
    font-weight: 500;  
    width: 35px;
    height: 35px;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    scale: 1.05;
    background-color: var(--secondary-bg-title-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}


/* Cplne sekcie */
.contact {
    background-color: var(--secondary-bg);
    padding: 3rem 0;
    text-align: center;
    color: var(--hero-text-color);
    text-align: center;
    display: flex;
    position: relative;
    overflow: hidden;
    z-index: 1000;
}

.contact-container{
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5rem;
    display: block;
    gap: 4rem;
    align-items: center;
    justify-items: center;
    cursor: default;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-size: 1.0rem;
    font-weight: 600;
    color: #49504a;
    font-family: var(--hero-title-font);
    width: 100%;
    margin-bottom: 1rem;
}

.badge::before,
.badge::after {
    content: "";
    border-bottom: 1px solid #49504a; 
    margin: 0 1rem; 
    width: 30px;
}

.title h2 {
    font-family: var(--hero-title-font);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--secondary-bg-title-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    justify-content: center;
    text-align: center;
    text-wrap: balance;
    transition: all 0.7s ease;
}

.title h2:hover {
    scale: 1.02;
}

.contact-description {
    font-family: var(--text-font);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--hero-text-color);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact form styles */
.contact-form {
    display: grid;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--hero-title-font);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-bg-title-color);
    margin-bottom: 0.3rem;
}

.contact-form input,
.contact-form textarea {
    font-family: var(--text-font);
    font-size: 1rem;
    padding: 1rem 1.2rem;
    border: 2px solid #e1e5e0;
    border-radius: 12px;
    background-color: #ffffff;
    color: var(--hero-text-color);
    transition: all 0.3s ease;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--third-bg);
    box-shadow: 0 0 0 3px rgba(97, 106, 87, 0.1);
    transform: translateY(-1px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a0a6a0;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
    font-family: var(--text-font);
}

.contact-form button {
    background-color: var(--third-bg);
    color: var(--third-bg-text-color);
    font-family: var(--text-font);
    font-size: 1rem;
    font-weight: 500;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-self: center;
}

.contact-form button:hover {
    background-color: var(--secondary-bg-title-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-form button::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.contact-form button:hover::after {
    transform: translateX(3px);
}

/* Contact info grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e8ebe7;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    background-color: var(--third-bg);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    background-color: var(--secondary-bg-title-color);
    transform: scale(1.1);
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--third-bg-text-color);
}

.contact-info-item h3 {
    font-family: var(--hero-title-font);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-bg-title-color);
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    font-family: var(--text-font);
    font-size: 0.95rem;
    color: var(--hero-text-color);
    line-height: 1.5;
}

.contact-info-item a {
    color: var(--third-bg);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--secondary-bg-title-color);
}


/*footer sekcia*/
footer {
    background-color: #616a57;
    padding: 4rem 0 2rem 0;
    color: var(--third-bg-text-color);
    font-family: var(--text-font);
    position: relative;
    overflow: hidden;
    z-index: 1000;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5rem;
    display: grid;
    grid-template-columns: 6fr 1fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-content-1 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    cursor: default;
}

.footer-logo {
    font-family: var(--hero-title-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--third-bg-text-color);
    cursor: default;
    transition: all 0.3s ease;
    margin-bottom: 0rem;
    transform-origin: left center;
}

.footer-logo:hover {
    color: var(--hero-secondary-color);
    transform: scale(1.05);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin: 0;
}

.contact-info p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1rem;
    color: #e4e4e4;
}

.contact-info strong {
    color: #e4e4e4;
    font-weight: 600;
}

.contact-info a {
    color: var(--third-bg-text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #fefefe;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    cursor: default;
}

.footer-title h3 {
    font-family: var(--hero-title-font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--third-bg-text-color);
    margin: 0 0 0rem 0;
}

.footer-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-navigation li {
    margin: 0;
}

.footer-navigation a {
    color: #e4e4e4;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.5s ease;
    opacity: 0.8;
}

.footer-navigation a:hover {
    color: #fefefe;
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 1rem;
    transform: all 0.7s ease;
}

.social-icon{
    color:#a9b0a9;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #fefefe;
    transform: scale(1.1);
}

/* Copyright sekcia */
footer > p {
    text-align: center;
    margin: 3rem 0 0 0;
    padding: 2rem 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--third-bg-text-color);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsívny dizajn pre footer */
/* TABLET LANDSCAPE */
@media (max-width: 1200px) {
    .header-container,
    .hero-container,
    .product-banner-container,
    .photo-text-grid-container,
    .about-content,
    .footer-container {
        padding: 0 3rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-background-text {
        font-size: 10rem;
        right: -250px;
    }

    .product-benefits-container {
        padding: 0 1rem;
        gap: 3rem;
    }

    .photo-text-grid-container{
        padding: 0 2rem;
        gap: 2rem;
    }

    .photo-product {
        width: 100%;
        height: auto;
        transition: all 0.8s ease;
    }

    .photo-product img {
        width: 100%;
        max-width: 400px;
        height: auto;
        object-fit: contain;
        z-index: 1000;
        transition: all 0.8s ease;
        filter: drop-shadow(5px 15px 10px rgba(0,0,0,0.5));
    }

    .text-product-list {
        display: grid;
        grid-template-columns: 60px 1fr;
        gap: 0.5rem;                       
        align-items: center;
        padding: 1rem;           
    }

    .text-product-list-icon {
        grid-row: 1 / span 2;          
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        background-color: var(--third-bg); 
        border-radius: 12px;   
        max-width: 40px; 
        padding: 1rem;
    }

    .text-product-list-icon img {
        max-width: 30px;
        align-items: center;
    }

    .text-product-list-title h3 {
        font-size: 1.1rem;
        font-weight: 600;
        padding-left: 1rem;
    }

    .text-product-list-description p {
        font-size: 0.9rem;
        font-weight: 400;
        padding-left: 1rem;
    }

    .other-products-container {
        padding: 0 0rem;
        gap: 2rem;
    }

    .about-containter{
        padding: 0 0rem;
        gap: 2rem;
    }

    .review {
        flex: 0 0 25%; /* namiesto 25% -> 2 recenzie na riadok */
        padding: 1.5rem; /* trochu menší padding */
        margin: 0 0.5rem; /* menšie medzery medzi nimi */
    }

    .review-list::before,
    .review-list::after {
        width: 90px; /* menší fade efekt, nech nezakrýva polovicu */
    }

    .review-list::after {
        right: 0;
        background: linear-gradient(to left, #fefefe, transparent);
    }

    .name {
        font-size: 1rem;
    }

    .review-text {
        font-size: 0.85rem;
    }

}

/* TABLET PORTRAIT */
@media (max-width: 968px) {
    .header-container {
        padding: 0rem 2rem;
    }
    
    .navigation ul {
        gap: 1.5rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    /* Hero single column */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 7rem 2rem 4rem 2rem;
        justify-content: center;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-description {
        max-width: 100%;
        padding: 0rem 2rem;
    }
    
    .hero-image {
        max-width: 100%;
        height: 400px;
    }
    
    .product-showcase img {
        max-width: 440px;
    }
    
    .hero-background-text {
        display: none;
    }
    
    /* Product banner stack */
    .product-banner-container {
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        width: 100%;
        text-align: center;
        padding: 0 2rem;
    }
    
    .product-banner-content {
        width: 100%;
        margin: 0;
        text-align: center;
        font-size: 1.2rem;
    }
    
    .product-banner-stats {
        margin: 0 auto;
        width: 7rem;
        height: 7rem;
    }
    
    .stat-item h3 {
        font-size: 3.0rem;
    }

    /* Benefits single column */
    .photo-text-grid-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .photo-product {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .photo-product img {
        max-width: 400px;
    }
    
    /* About us flip */
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .benefits-list {
        order: 2;
        text-align: left;
    }
    
    .badge {
        justify-content: center !important;
        margin-left: 0 !important;
    }
    
    .title {
        text-align: center !important;
    }
    
    .photo-product {
        order: 1;
        justify-self: center;
    }
    
    /* Products wrap */
    .icon-category-product-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .icon-category-product{
        width: 70px; 
        height: 70px;
    }

    .icon-category-product img {
        max-width: 70px;
    }

    .about-content{
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .benefits-list h2 {
        text-align: center !important;
    }

    .text{
        text-align: center !important   ;
    }

    .other-products-button{
        text-align: center !important;
    }
    

    /* Footer simplify */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
        justify-content: center;
        text-align: center ;
    }
    
    .footer-container .footer-content:nth-child(n+1) {
        display: none;
    }
}

/* MOBILE LARGE */
@media (max-width: 768px) {
    /* Header stack */
    header {
        height: auto;
        padding: 1rem 0;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .logo {
        font-family: var(--hero-title-font);
        font-size: 1.9rem;
        font-weight: 700;
        color: var(--secondary-bg-title-color);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .navigation ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.3rem 1rem;
    }
    
    .ritght-section .navbar-button {
        display: none;
    }
    
    .hero{
        margin: 0;
        min-height: 85vh;
        align-items: flex-start;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding: 0rem 1rem;
        gap: 3rem;
        margin: 0rem;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-image {
        height: 280px;
        align-items: center;
    }
    
    .product-showcase img {
        max-width: 280px;
    }
    
    /* Product banner stack */
    .product-banner-container {
        grid-template-columns: 45% auto auto;
        gap: 1rem;
        width: 100%;
        text-align: center;
        padding: 0 1rem;
    }
    
    .product-banner-content {
        width: 100%;
        margin: 0;
        text-align: center;
        font-size: 1.0rem;
        margin: 0;
        padding: 0;
    }
    
    .product-banner-stats {
        margin: 0;
        width: 4.8rem;
        height: 4.8rem;
        padding: 0.5rem;
        justify-items: right;
    }

    .stat-item p {
        font-size: 0.70rem;
        font-weight: 300;
        margin: 0;  
        margin-bottom: -0.2rem;
    }

    .stat-item span {
        color: gold;
        margin: 0;  
        font-size: 1.0rem;
        font-weight: 300;
    }
    
    .stat-item h3 {
        font-size: 2.0rem;
    }
    
    /* All containers */
    .product-benefits-container,
    .other-products-container,
    .about-containter,
    .contact-container {
        padding: 0 1rem;
    }
    
    .photo-text-grid-container,
    .about-content {
        padding: 0 1rem;
    }
    
    /* Titles smaller */
    .title h2 {
        font-size: 2.5rem;
        padding: 0;
    }
    
    /* Benefits adjust */
    .photo-product {
        max-width: 300px;
    }
    
    
    .photo-product img {
        max-width: 300px;
    }
    
    /* Products smaller */
    .icon-category-product {
        width: 50px;
        height: 50px;
        margin-top: 2rem;
        gap: 2rem;
    }

    .icon-category-product-list{
        display: flex;
        gap: none;
    }

    
    .icon-category-product img {
        max-width: 50px;
    }
    
    .icon-category-product h4 {
        font-size: 0.9rem;
    }
    
    /* Reviews adjust */
    .review {
        min-width: 280px;
        padding: 1.5rem;
    }
    
    /* Footer simplify more */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-content-1 {
        text-align: center;
        align-items: center;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .footer-content {
        display: none;
    }
    
    .footer-content:first-of-type {
        display: flex;
    }
    
    .social-icons {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact {
        padding: 3rem 0;
    }

    .contact-container {
        padding: 0 1rem;
    }

    .title h2 {
        font-size: 2.2rem;
    }

    .contact-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    .contact-form button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .contact-info-item {
        padding: 1.5rem;
    }

    .contact-info-icon {
        width: 50px;
        height: 50px;
    }

    .contact-info-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* MOBILE STANDARD */
@media (max-width: 480px) {
    /* Hero mobile */
    .hero-container {
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .product-banner-container {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 2rem 1rem 2rem;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        cursor: default;
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .product-showcase img {
        max-width: 280px;
    }
    
    /* Banner mobile */
    .product-banner {
        padding: 1.5rem 0;
    }
    
    .product-banner-content {
        font-size: 1rem;
        grid-area: 1 / 1 / 2 / 3;
        justify-content: center;
        align-items: center;
    }
    
    .product-banner-stats {
        width: 5rem;
        height: 5rem;
        padding: 0.5rem;
        margin: 0 !important;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .stat-item p {
        font-size: 0.8rem;
    }
    
    /* Titles mobile */
    .title h2 {
        font-size: 1.8rem;
    }
    
    /* Benefits mobile */
    .photo-product {
        max-width: 250px;
    }
    
    .photo-product img {
        max-width: 250px;
    }
    
    .text-product-list {
        grid-template-columns: 50px 1fr;
        padding: 0.8rem;
    }
    
    .text-product-list-icon {
        max-width: 40px;
        padding: 0.8rem;
    }
    
    .text-product-list-icon img {
        max-width: 25px;
    }
    
    .text-product-list-title h3 {
        font-size: 1rem;
        padding-left: 0.5rem;
    }
    
    .text-product-list-description p {
        font-size: 0.85rem;
        padding-left: 0.5rem;
    }
    
    /* Products mobile */
    .icon-category-product {
        width: 70px;
        height: 70px;
        padding: 0.8rem;
    }
    
    .icon-category-product img {
        max-width: 70px;
    }
    
    .icon-category-product h4 {
        font-size: 0.8rem;
        padding-top: 0.5rem;
    }
    
    .icon-category-product-list {
        gap: 1.5rem;
    }
    
    /* Reviews mobile */
    .review {
        min-width: 240px;
        padding: 1rem;
    }
    
    .review img {
        width: 35px;
        height: 35px;
    }
    
    .name {
        font-size: 0.9rem;
    }
    
    .stars {
        font-size: 1.2rem;
    }
    
    .review-text {
        font-size: 0.8rem;
    }
    
    .slider-btn {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    /* Footer mobile */
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .contact-info p {
        font-size: 0.8rem;
    }
    
    footer > p {
        font-size: 0.75rem;
        margin: 2rem 0 0 0;
        padding: 1.5rem 0 0 0;
    }
}

/* MOBILE SMALL */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .title h2 {
        font-size: 1.6rem;
    }
    
    .product-showcase img {
        max-width: 240px;
    }
    
    .photo-product {
        max-width: 220px;
    }
    
    .photo-product img {
        max-width: 220px;
    }
    
    .icon-category-product {
        width: 60px;
        height: 60px;
    }
    
    .icon-category-product img {
        max-width: 60px;
    }
    
    .review {
        min-width: 200px;
        padding: 0.8rem;
    }
    
    .text-product-list {
        grid-template-columns: 45px 1fr;
        padding: 0.5rem;
    }
    
    .text-product-list-icon {
        max-width: 35px;
        padding: 0.6rem;
    }
    
    .text-product-list-icon img {
        max-width: 20px;
    }
}




