/*
Theme Name: Fruits Template
Theme URI: https://min-code.com
Author: Min-code Group
Author URI: https://min-code.com
Version: 1.0
Text Domain: www.fruits.md
*/

:root {
    --black: black;
    --white: white;
    --berbery: #bc032c;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 65.5%; /* 1rem = 10px */
}

body {
    font-family: "Raleway", sans-serif;
}

h1 {
    font-size: 6.4rem;
    padding: 0;
    margin: 0;
}

h2 {
    font-size: 4rem;
    padding: 0;
    margin: 0;
}

h3 {
    font-size: 2.4rem;
    padding: 0;
    margin: 0;
}

h4 {
    font-size: 2.2rem;
    padding: 0;
    margin: 0;
}

p {
    font-size: 1.8rem;
    padding: 0;
    margin: 0;
}


dl, ol, ul {
    padding-left: 0;
}

.container {
    max-width: 1470px;
    padding: 0 15px;
}

/* Dividers */

.mt-100 {
    margin-top: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-50 {
    margin-top: 50px;
}

.main_button {
    font-size: 2.4rem;
    font-weight: 400;
    background: var(--black);
    padding: 20px 32px;
    border-radius: 8px;
    color: white;
    transition: 0.3s;
}

.main-logo img {
    max-width: 200px;
    object-fit: contain;
}

.main_button:hover {
    color: white !important;
    background: var(--black) !important;
}

.hero_image {
    margin-top: 100px;
}

.hero_image img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: 10px;

}

.hero_sec p {
    margin-top: 24px;
    margin-bottom: 20px;
}


/* Header */

/* Toogle Button*/
.no-scroll {
    overflow: hidden;
    height: 100vh;
}

.navbar__toggle {
    display: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgb(214, 125, 18);
    background: linear-gradient(90deg, rgba(214, 125, 18, 1) 0%, rgba(255, 169, 34, 1) 100%);
    border: none;
    cursor: pointer;
    z-index: 2001;
    position: relative;
    justify-content: center;
    align-items: center;
}

/*.navbar__toggle span {*/
/*    display: block;*/
/*    position: absolute;*/
/*    width: 30px;*/
/*    height: 4px;*/
/*    background: #191919;*/
/*    border-radius: 2px;*/
/*    transition: transform 0.3s ease, background 0.3s ease;*/
/*}*/

/*.navbar__toggle span:nth-child(1) {*/
/*    transform: translateY(-6px);*/
/*}*/

/*.navbar__toggle span:nth-child(2) {*/
/*    transform: translateY(6px);*/
/*}*/

/*.navbar__toggle.open span:nth-child(1) {*/
/*    transform: rotate(45deg);*/
/*}*/

/*.navbar__toggle.open span:nth-child(2) {*/
/*    transform: rotate(-45deg);*/
/*}*/

/* End toogle */

.menu__button {
    background-color: white;
    padding: 10px 40px;
    transition: 0.3s;
    color: black !important;
}

.menu__button i {
    font-size: 1.2rem;
    margin-right: 5px;
}

.menu__button:hover {
    background-color: #fff5f5 !important;
    color: black;
}

.menu__button span {
    font-size: 1.4rem;
    font-weight: 600;
}

.navbar__menu {
    position: absolute;
    z-index: 9999;
    width: 100%;
    color: #fff;
    transition: all 0.3s ease;
    /*background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));*/
    /*backdrop-filter: blur(5px);*/
    /*-webkit-backdrop-filter: blur(5px);*/
    /*border-bottom: none; !* scoate linia dacă există *!*/
}

.navbar__menu__items{
    display: flex;
    gap: 30px;
}

.navbar__menu.sticky {
    position: fixed;
    background: linear-gradient(90deg, #bc032c, #8e101d);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


.navbar__menu .container {
    padding: 16px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar__menu__items ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    margin-bottom: 0;
}

.navbar__menu__items ul li a {
    font-size: 1.8rem;
    color: black;
    text-decoration: none;
}

.navbar__menu__items ul li {
    position: relative;
}

/*.menu-item-has-children > a::after {*/
/*    font-family: "Font Awesome 5 Free";*/
/*    font-weight: 900;*/
/*    font-size: 1.2rem;*/
/*    content: "\f078" !important;*/
/*    margin-left: 10px;*/
/*    display: inline-block;*/
/*    transition: transform 0.3s;*/
/*}*/

/*.menu-item-has-children:hover > a::after {*/
/*    transform: rotate(180deg);*/
/*}*/

.menu-item-has-children > .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgb(255 255 255 / 85%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000;
    min-width: 300px;
    border-radius: 5px;
}

.menu-item-has-children:hover > .sub-menu {
    display: block;
}

.sub-menu li a {
    color: white;
    font-size: 1.4rem;
    padding: 10px 15px;
    transition: background-color 0.3s, color 0.3s;
}

.sub-menu li a:hover {
    color: #D67D12;
    background-color: rgba(255, 255, 255, 0.4);
}

.navbar__menu__items ul > li > a {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 24px;
    padding: 5px 0;
    transition: color 0.3s, background-color 0.3s;
}

.navbar__menu__items ul li ul li.current_page_item > a::before,
.navbar__menu__items ul li ul li.current-menu-item > a::before,
.navbar__menu__items ul li ul li.current-menu-ancestor > a::before {
    content: none !important;
    border-top: none !important;
    top: 0;
}

.navbar__menu__items ul > li.current_page_item > a {
    color: #ffffff;
}

.navbar__menu__items ul li.current_page_item > a::after {
    width: 100%;
}

.navbar__menu__items ul li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #da264d;
    transition: width 0.3s ease;
}

.navbar__menu__items ul li a:hover::after {
    width: 100%;
}

.navbar__menu__items ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000;
    min-width: 150px;
}

.navbar__menu__items ul li ul li {
    display: block;
}

.navbar__menu__items ul li ul li a {
    padding: 5px 15px;
    font-size: 1.6rem;
    color: black;
    transition: background-color 0.3s, color 0.3s;
}

.navbar__menu__items ul li ul li a:hover {
    color: var(--berbery);
}

.navbar__menu__items ul li:hover > ul {
    display: block;
}

/* End Header */

.home-intro {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.home-intro__content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-intro__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.home-intro__info {
    position: relative;
    text-align: center;
    max-width: 800px;
    padding: 20px;
    z-index: 2;
}

.home-intro__title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.btn-home {
    display: inline-block;
    font-size: 1.8rem;
    padding: 12px 30px;
    background: linear-gradient(90deg, #bc032c, #8e101d);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-shadow: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 100%);
    transition: left 0.4s ease;
    z-index: 1;
}

.btn-home:hover::before {
    left: 0;
}

.btn-home:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.why_content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    height: auto;
}

.why_item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.why_item p {
    margin-top: 15px;
    margin-bottom: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
    padding: 40px 0;
}

.product_item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

.product_overlay {
    position: relative;
}

.product_overlay img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.product_item:hover img {
    transform: scale(1.05);
}

.overlay_content {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 20px;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.overlay_content h4 {
    width: 50%;
    font-size: 1.8rem;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-product {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1.4rem;
    background: linear-gradient(90deg, #bc032c, #8e101d);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-product i {
    margin-left: 8px;
}

.btn-product:hover {
    background: linear-gradient(90deg, #8e101d, #bc032c);
    transform: scale(1.05);
}

.block_title h2 {
    margin-bottom: 15px;
}

.map_container {
    width: 100%;
    height: 800px;
}

/* Contact Page */

.info_contact {
    padding-left: 60px;
}

.info_contact h1 {
    font-weight: 600;
    margin-bottom: 40px;
}

.info_contact h2 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.map_zone h3 {
    margin-top: 40px;
}

.map_content {
    height: 880px;
    border-radius: 30px;
    overflow: hidden;
}

.contact_item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 26px;
    color: black;
    text-decoration: none;
}

.contact_item p {
    font-size: 1.8rem;
}

.social_links {
    margin-top: 15px;
    display: flex;
    gap: 26px;
}

.social_links i {
    font-size: 3rem;
    color: var(--primary-color);
}

.contact_form br {
    display: none;
}

.contact_form label {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: #3D4C5E;
    margin-bottom: 20px;
}

.contact_form input[type="text"],
.contact_form input[type="email"],
.contact_form textarea {
    width: 100%;
    padding: 14px 20px;
    font-size: 1.6rem;
    color: #909DAD;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #f9f9f9;
    margin-bottom: 30px;
    transition: border-color 0.3s ease;
}

.contact_form input::placeholder,
.contact_form textarea::placeholder {
    color: #909DAD;
}

.contact_form input[type="text"]:focus,
.contact_form input[type="email"]:focus,
.contact_form textarea:focus {
    border-color: #B31E24;
    outline: none;
}

.contact_form textarea {
    width: 100%;
    height: 150px;
    resize: none;
}

.contact_form input[type="submit"] {
    background: linear-gradient(90deg, #bc032c, #8e101d);
    color: #fff;
    padding: 20px 70px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact_form input[type="submit"]:hover {
    background-color: #A11B20;
}

.contact_form .d-flex {
    display: flex;
    gap: 20px;
}

.contact_form .d-flex label {
    flex: 1;
}

.contact_form .wpcf7-not-valid-tip {
    margin-bottom: 30px;
}

.contact_left {
    padding-left: 40px;
}

/* End Page Contact */

/* footer */

.footer-modern {
    padding: 60px 0;
    color: #ffffff;
}

.footer-modern__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
}

.footer-modern__branding {
    flex: 1 1 250px;
}

.footer-modern__logo {
    max-width: 160px;
    margin-bottom: 20px;
}

.footer-modern__image {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.footer-modern__contact {
    flex: 1 1 280px;
}

.footer-modern__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #d2d2d2;
    text-transform: uppercase;
}

.footer-modern__info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-modern__info-list li {
    margin-bottom: 18px;
}

.label {
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 2rem;
}

.value {
    font-size: 1.8rem;
    color: #ffffff;
}

.value a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.value a:hover {
    color: #bc032c;
}

.footer-modern {
    background: #1a1d20;
}

.footer-modern__links {
    flex: 1 1 280px;
    font-size: 1.6rem;
}

.footer-modern__links p {
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-modern__links ul {
    list-style: none;
    padding: 0;
}

.footer-modern__links li {
    margin-bottom: 10px;
}

.footer-modern__links a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s;
}

.footer-modern__links a:hover {
    color: #bc032c;
}

@media (max-width: 768px) {
    .footer-modern__grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-modern__branding,
    .footer-modern__contact,
    .footer-modern__links {
        flex: 1 1 100%;
    }

    .footer-modern {
        padding: 40px 20px;
    }
}

/* end footer */

.review_item {
    background: #fff;
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #ddd;
    transition: transform 0.3s ease;
}

.review_item:hover {
    transform: translateY(-5px);
}

.review_content p {
    font-size: 1.8rem;
    font-style: italic;
    color: #4e2c18;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
}

.review_author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.review_author img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #bc032c;
}

.review_author h4 {
    font-size: 1.4rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.single-product {
    padding: 60px 0;
    background-color: #fefefe;
}

.single-product__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.single-product__image {
    flex: 1 1 45%;
    position: sticky;
    top: 0;
    border-radius: 20px;
    overflow: hidden;
}

.single-product__image img {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    object-fit: cover;
}

.single-product__content {
    flex: 1 1 50%;
}

.product-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #222;
}

.product-categories {
    margin-bottom: 15px;
}

.product-category {
    font-size: 1.4rem;
    display: inline-block;
    background: #bc032c;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    margin-right: 10px;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.product-description p {
    margin-bottom: 1.2em;
}

.product-description ul,
.product-description ol {
    padding-left: 1.5em;
    margin-bottom: 1.2em;
}

.product-description ul {
    list-style-type: disc;
}

.product-description ol {
    list-style-type: decimal;
}

.product-description li {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.product-description a {
    color: #bc032c;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.product-description a:hover {
    color: #8e101d;
    text-decoration: none;
}

.product-description h2,
.product-description h3,
.product-description h4 {
    margin-top: 1.5em;
    margin-bottom: 0.7em;
    color: #222;
    font-weight: bold;
    line-height: 1.4;
}

.product-description h2 {
    font-size: 1.8rem;
}

.product-description h3 {
    font-size: 1.5rem;
}

.product-description h4 {
    font-size: 1.3rem;
}

.product-description blockquote {
    margin: 1.5em 0;
    padding: 1em 1.5em;
    background: #f9f9f9;
    border-left: 5px solid #bc032c;
    font-style: italic;
    color: #555;
}

.product-description img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 10px;
}

.product-description strong {
    font-weight: 600;
    color: #111;
}

.product-description em {
    font-style: italic;
    color: #555;
}

.whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: #12a94a !important;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.fa-whatsapp:before {
    font-size: 1.8rem;
}

.whatsapp:hover {
    background-color: #0e7936;
    transform: translateY(-2px);
}

/* Bloguri */

.blogs_content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 60px;
    column-gap: 40px;
}

.blog_item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blog_item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.blog_item p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 1.6rem;
}

.blog_item .btn-primary {
    background: linear-gradient(90deg, #bc032c, #8e101d);
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    padding: 15px 20px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
    border: none;
}

.blog_item .btn-primary i {
    font-size: 1.4rem;
    margin-left: 5px;
}

.blog_item .btn-primary:hover {
    background: linear-gradient(90deg, #7c0c26, #8e101d);
    border: none;
}

/*from here I make changes*/

.hero-sec-img {
    width: 100%;
    height: 740px;
    object-fit: cover;
    border-radius: 20px;
}

.hero-sec-content {
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.hero-sec-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-sec-content h2 {
    margin-bottom: 32px;
}

.about_slider {
    width: 100%;
    overflow: hidden;
}

.about_slider .swiper-slide {
    /*width: calc(100% / 4);*/
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.about_slider .swiper-slide img {
    width: 100%;
    height: 189px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.grid-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.card-item {
    height: 262px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid #ECECEC;
    padding: 50px 30px;
    text-align: center;

}

.card-text {
    display: flex;
    flex-direction: column;
    gap: 31px;
}

.card-text h3 {
    font-weight: 700;
}


.grid-card1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.categorii {
    background-color: var(--burgundy);
    padding-top: 80px;
    padding-bottom: 80px;
}

.card-img-fruit {
    border-radius: 15px;
    width: fit-content;
    overflow: hidden;
}

.card-item1 {
    position: relative;
}

.card-item2 {
    position: absolute;
    z-index: 1;
    top: 85%;
    left: 5%;
    background-color: var(--pale-pink);
    border-radius: 15px;
    padding: 20px 30px;
    text-align: center;
    display: flex;
}

.text-img h3 {
    margin-bottom: 20px;
    color: var(--burgundy);
    font-weight: 700;
}

.text-img p {
    color: var(--burgundy);
}

.blog-img {
    height: 348px;
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.card-item-text-blog h3 {
    font-size: 32px;
    font-weight: 700;
}

.blog-button {
    color: var(--white);
    padding-top: 5px;
    padding-right: 73px;
    padding-bottom: 9px;
    padding-left: 73px;
    background-color: var(--burgundy);
    border-radius: 8px;
    width: 100%;
    height: 50px;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-card3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card-item-text-blog {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.card-item-img-blog {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-item-text-blog a {
    text-decoration: none;
}

/*home*/

.we_sec {
    margin-top: 50px;
}

.grid-img {
    width: 100%;
    border-radius: 20px;
    align-self: end;
}

.hero-sec-content-img {
    padding-right: 30px;
}

.hero-header {
    background-size: cover;
    background-position: center;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5); /* semi-transparent overlay */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.8rem;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Alty */

.grid-container {
    display: grid;
    grid-template-columns: 20% 30% 50%;
    gap: 27px;
    align-items: start;
}

.about__images {
    display: flex;
    gap: 30px;
    padding-right: 40px;
}

.grid-img1 {
    width: 35%;
}

.grid-img1 img {
    width: 100%;
    height: 409px;
    object-fit: cover;
    border-radius: 10px;
}

.grid-img2 {
    width: 65%;
}

.grid-img2 img {
    width: 100%;
    height: 538px;
    object-fit: cover;
    border-radius: 10px;
}

.pretitle {
    font-size: 1.8rem;
    color: #d51c3e;
    font-weight: 700;
}

.grid-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.grid-text h2 {
    color: var(--black);
    font-weight: 600;
    margin-bottom: 25px;
}

.we_item {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 20px;
}

.titles {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.reviews_slider {
    padding: 20px 0;
}

.category_slider {
    padding: 20px 0;
}

.grid-container2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-container2 h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #bc032c;
    margin-bottom: 20px;
}

.category_items_products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.overlay_category img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.overlay_category span {
    position: absolute;
    bottom: -30px;
    left: 20px;
    background: #bc032c;
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 20px;
    text-transform: uppercase;
}

.list__category {
    margin-top: 54px;
    padding-left: 30px;
    list-style: none;
}

/*.list__category li a{*/
/*    font-size: 1.8rem;*/
/*    font-weight: 700;*/
/*    color: black;*/
/*    text-decoration: none;*/
/*}*/

.list__category li a {
    position: relative;
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 10px;
}

.list__category li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background-color: #da264d;
    transition: width 0.3s ease;
}

.list__category li a:hover {
    color: #da264d;
}

.list__category li a:hover::after {
    width: 100%;
}

.single-header {
    height: 80vh;
}

.product-wrapper {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 60px;
}

.product-wrapper .product-wrapper-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.product-wrapper .product-wrapper-item h4{
    margin-top: 10px;
    font-size: 1.8rem;
    font-weight: 700;
}

.disclaimer{
    padding: 40px;
    background: rgba(238, 43, 27, 0.16);
    border-radius: 20px;
}

.availability-section {
    padding: 40px 20px;
}

.availability-section h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.table-responsive {
    overflow-x: auto;
}

.availability-table {
    width: 100%;
    font-size: 1.4rem;
    border-collapse: collapse;
    min-width: 800px;
}

.availability-table thead th {
    background-color: #f7f7f7;
    padding: 12px;
    text-align: center;
    font-weight: bold;
    border: 1px solid #ddd;
}

.availability-table tbody td,
.availability-table tbody th {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}

.availability-table tbody th {
    text-align: left;
    background-color: #fcfcfc;
}

.availability-table td.available {
    background-color: #da264d;
    color: #fff;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.availability-table td.available:hover {
    background-color: #b61f3d;
    cursor: pointer;
}

.product-section {
    padding: 50px 20px;
    background-color: #f3efee;
}

.product-section strong{
    font-size: 4.5rem;
    color: #b61f3d;
}

.product-section h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-align: center;
}

.product-section .intro {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.6rem;
    text-align: center;
}

.product-content {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.product-gallery-custom{
    width: 50%;
}

.product-details{
    width: 50%;
}

.gallery-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
}

.gallery-slider img {
    width: 100%;
    max-width: 500px;
    scroll-snap-align: start;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-details h3 {
    margin-top: 20px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #da264d;
}

.product-details p {
    font-size: 1.6rem;
    margin: 5px 0 15px 0;
    line-height: 1.6;
}

.product_slider .swiper {
    width: 100%;
}

.product_slider .swiper-wrapper {
    position: relative;
}

.product_slider .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 720px;
}

.product_slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.thumbnail-slider {
    width: 100%;
    margin-top: 17px;
    position: relative;
    z-index: 2;
}

.thumbnail-slider .swiper-wrapper {
    display: flex;
}

.thumbnail-slider .swiper-slide img {
    width: 100%;
    height: 156px !important;
    object-fit: cover;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 4px;
}

.white_bg{
    background-color: white;
}

.gallery-grid {
    padding: 40px 20px;
    background: #f9f9f9;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.grid-item {
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: scale(1.03);
}

.grid-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.grid-item.tall {
    grid-row: span 2;
}
.grid-item.wide {
    grid-column: span 2;
}

.img-fluid-custom{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* stil blog */

.universal_content {
    font-size: 17px;
    line-height: 28px;
    color: #222;
}

.universal_content ul,
.universal_content ol {
    padding-left: 24px;
    margin-bottom: 24px;
}

.universal_content ul li {
    list-style-type: disc;
    margin-bottom: 8px;
}

.universal_content ol li {
    list-style-type: decimal;
    margin-bottom: 8px;
}

.universal_content a {
    color: #0073e6;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.universal_content a:hover {
    color: #004a99;
    text-decoration: none;
}

.universal_content h1,
.universal_content h2,
.universal_content h3,
.universal_content h4,
.universal_content h5,
.universal_content h6 {
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: bold;
    line-height: 1.3;
    color: #111;
}

.universal_content h1 { font-size: 32px; }
.universal_content h2 { font-size: 28px; }
.universal_content h3 { font-size: 24px; }
.universal_content h4 { font-size: 20px; }
.universal_content h5 { font-size: 18px; }
.universal_content h6 { font-size: 16px; }

.universal_content blockquote {
    margin: 24px 0;
    padding: 16px 24px;
    border-left: 4px solid #0073e6;
    background-color: #f9f9f9;
    font-style: italic;
    color: #555;
}

.universal_content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
    display: block;
}

.universal_content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.universal_content th,
.universal_content td {
    border: 1px solid #ccc;
    padding: 12px;
    text-align: left;
}

.universal_content th {
    background-color: #f0f0f0;
    font-weight: 600;
}

.universal_content ul ul,
.universal_content ol ol {
    margin-top: 8px;
    margin-bottom: 8px;
    padding-left: 24px;
}

/* Responsive table (mobile fallback) */
@media (max-width: 768px) {
    .universal_content {
        font-size: 15px;
    }

    .universal_content table,
    .universal_content thead,
    .universal_content tbody,
    .universal_content th,
    .universal_content td,
    .universal_content tr {
        display: block;
    }

    .universal_content td {
        position: relative;
        padding-left: 50%;
        white-space: pre-wrap;
    }

    .universal_content td::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 45%;
        padding-left: 16px;
        font-weight: bold;
        content: attr(data-label);
    }
}

