@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Licorice&display=swap');

:root {
    --primary: #7A2D13;
    --secondary: #FF1F1C;
    --text: #FFF7F1;
    --bg: #FFF7F1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
}


/* CONTENT WRAPPER START */

.content-wrapper {
  padding: 20px 0px;
}

.content-wrapper ul,
.content-wrapper ol {
  padding-left: 40px !important;
  margin-bottom: 20px !important;
}

.content-wrapper ul li,
.content-wrapper ol li {
  list-style: disc;
  margin-bottom: 10px;
  word-break: break-word;
  overflow-wrap: break-word;
  position: relative;
}

.content-wrapper p {
  margin-bottom: 16px;
}

.content-wrapper h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.content-wrapper h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.content-wrapper h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.content-wrapper h5 {
  font-size: 18px;
  margin-bottom: 20px;
}

.content-wrapper h6 {
  font-size: 17px;
  margin-bottom: 20px;
}

.content-wrapper img {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  height: auto;
  margin: 20px 0;
}

.content-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.content-wrapper table th,
.content-wrapper table td {
  border: 1px solid black;
  padding: 10px;
  text-align: left;
}
/* CONTENT WRAPPER END */

/*DESKTOP HEADER START*/
.desktop-header {
    padding: 15px 0;
    background-color: var(--primary);
    position: sticky;
    top: 0;
    z-index: 99;
}

.desktop-header .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.desktop-header .logo {
    width: 200px;
    height: auto;
}

.desktop-header .navbar-menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.desktop-header .navbar-menu a {
    color: var(--text);
    font-weight: 600;
}

/*DESKTOP HEADER END*/
/*MOBİLE HEADER START*/
.mobile-header {
    padding: 15px 8px;
    background-color: var(--primary);
    position: sticky;
    top: 0;
    z-index: 99;
}

.mobile-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-header .logo {
    width: 200px;
    height: auto;
}

.mobile-header .hamburger {
    background-color: transparent;
    border: none;
    color: var(--secondary);
}

.mobile-header .hamburger i {
    font-size: 30px;
}

/**/
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform .35s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    position: relative;
    height: 100%;
    padding: 20px;
}

.mobile-menu-inner .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.mobile-close {
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-close i {
    font-size: 30px;
    color: var(--secondary);
}

.mobile-menu-inner ul {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.mobile-menu-inner ul::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 3px;
    background: var(--secondary);
}

.mobile-menu-inner ul li a {
    color: var(--text);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.mobile-menu-inner li {
    margin-bottom: 8px;
}

.mobile-bottom {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 15px;
}

.mobile-bottom .information {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 8px;
}

.mobile-bottom .information a {
    color: var(--text);
}

.mobile-bottom .offer {
    padding: 10px 20px;
    background-color: var(--secondary);
    color: var(--text);
    border-radius: 72px;
}

.mobile-bottom .social {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

.mobile-bottom .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.mobile-bottom .social i {
    color: #fff;
    font-size: 16px;
}

.mobile-bottom span {
    text-align: center;
    color: #fff;
    font-size: 15px;
    margin-top: 10px;
}

/*MOBİLE HEADER END*/
/* DESKTOP SLİDER START*/

.desktopSlider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.desktopSlider .swiper {
    width: 100%;
    height: 87vh;
    min-height: 600px;
}

.desktopSlider .swiper-slide {
    position: relative;
}

.desktopSlider .swiper-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-bottom-right-radius: 231px;
}

.desktopSlider .swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
}

.desktopSlider .slide-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 3;
    padding-left: 500px;
    top: -145px;
}

.desktopSlider .content {
    max-width: 650px;
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.desktopSlider .toptitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    background: var(--secondary);
    color: var(--text);
    border-radius: 999px;
    line-height: 1;
    width: fit-content;
}

.desktopSlider .title {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 560px;
}

.desktopSlider .text {
    font-size: 18px;
    line-height: 1.6;
    max-width: 520px;
    opacity: 0.95;
}

.desktopSlider .content-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 4;
}

.desktopSlider .content-bottom a {
    display: inline-block;
    padding: 50px 300px;
    background: var(--secondary);
    color: var(--text);
    border-top-right-radius: 85px;
    font-size: xx-large;
}

.desktopSlider .content-bottom i {
    font-size: xx-large;
}

/* DESKTOP SLİDER END*/
/*MOBİLE SLİDER SATRT*/
.mobileSlider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.mobileSlider .swiper {
    width: 100%;
    height: 75vh;
    min-height: 520px;
}

.mobileSlider .swiper-slide {
    position: relative;
}

.mobileSlider .swiper-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-bottom-right-radius: 80px;
}

.mobileSlider .swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
}

.mobileSlider .slide-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 25px;
    z-index: 3;
}

.mobileSlider .content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #fff;
    max-width: 100%;
}

.mobileSlider .toptitle {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 12px;
    background: var(--secondary);
    color: var(--text);
    border-radius: 50px;
    width: fit-content;
}

.mobileSlider .title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.mobileSlider .text {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.mobileSlider .content-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 4;
}

.mobileSlider .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 22px 60px;
    background: var(--secondary);
    color: var(--text);
    border-top-right-radius: 60px;
    font-size: 18px;
    font-weight: 600;
}

/*MOBİLE SLİDER END*/
/* WHO START */

.who {
    padding: 100px 0;
}

.who-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    max-width: 850px;
    margin: 0 auto;
}

.who-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid var(--secondary);
    border-radius: 30px;
    pointer-events: none;
    z-index: 1;
}

.who-logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 20px;
    background-color: white;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    margin-top: -95px;
}

.who-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.who-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary);
    margin: 15px auto 0;
}

.who-text {
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary);
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.who-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 45px;
    background-color: var(--secondary);
    color: var(--text);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 3;
    margin-bottom: -85px;
}

.who-btn:hover {
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 768px) {
    .who-box {
        margin: 0 20px;
        padding: 50px 20px;
    }

    .who-logo {
        max-width: 200px;
        margin-top: -85px;
    }

    .who-title {
        font-size: 24px;
    }

    .who-text {
        font-size: 14px;
    }

    .who-btn {
        margin-bottom: -75px;
    }
}

/* WHO END */
/*VALUES START*/
.values {
    padding: 80px 0;
}

.values-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.values-item {
    width: 180px;
    height: 270px;
    background: var(--primary);
    border-radius: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform .3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.values-icon {
    width: 95px;
    height: 95px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.values-icon::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 1px solid var(--secondary);
    border-radius: 50%;
}

.values-icon i {
    color: var(--text);
    font-size: 34px;
}

.values-title {
    color: var(--text);
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    width: 40%;
}

.value-arrow {
    position: absolute;
    bottom: 25px;
    width: 12px;
    height: 12px;
    border-left: 2px solid var(--secondary);
    border-bottom: 2px solid var(--secondary);
    transform: rotate(-45deg);
}

@media (max-width: 992px) {

    .values-wrapper {
        flex-wrap: wrap;
        gap: 10px;
    }

    .values-item {
        width: calc(50% - 15px);
    }

}

/*VALUES END*/
/*SLOGAN START*/
.slogan {
    padding: 100px 0;
}

.slogan .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slogan .subtitle {
    font-size: 50px;
    font-weight: 600;
    color: var(--primary);
}

.slogan .title {
    font-size: 85px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    margin-top: -25px;
}

.slogan .text {
    color: var(--primary);
    margin-bottom: 8px;
    width: 460px;
    text-align: center;
}

.slogan .min-title {
    color: var(--text);
    background-color: var(--secondary);
    padding: 10px 20px;
    border-radius: 56px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.slogan .min-title:hover {
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 992px) {

    .slogan {
        padding: 70px 0;
    }

    .slogan .container {
        padding: 0 20px;
        text-align: center;
        gap: 10px;
    }

    .slogan .subtitle {
        font-size: 30px;
    }

    .slogan .title {
        font-size: 50px;
        margin-top: -10px;
    }

    .slogan .text {
        width: 100%;
        max-width: 500px;
        font-size: 15px;
        line-height: 1.6;
    }

    .slogan .min-title {
        font-size: 14px;
        padding: 10px 18px;
    }

    .slogan .image img,
    .slogan .min-img img {
        max-width: 100%;
        height: auto;
    }

}

/*SLOGAN END*/
/* PROCESS START */
.process {
    padding: 100px 20px;
}

.process .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.process-item {
    background: var(--secondary);
    border-radius: 24px;
    padding: 140px 30px 40px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all .4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: visible;
    text-decoration: none;
    color: inherit;
}

.process-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.10);
}

.process-item .image {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 370px;
    height: 220px;
    border-radius: 24px;
    overflow: hidden;
    border: none;
}

.process-item .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .6s ease;
}

.process-item:hover .image img {
    transform: scale(1.06);
}

.process-item .image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 70%,
            var(--secondary) 98%);
    pointer-events: none;
}

.process-item .title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.4;
}

.process-item .text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.process-item button {
    margin-top: auto;
    font-size: 14px;
    font-weight: 500;
    background: var(--text);
    color: var(--secondary);
    padding: 12px 24px;
    border-radius: 30px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all .3s ease;
}

.process-item button i {
    transition: transform .3s ease;
}

.process-item:hover button {
    transform: translateY(-2px);
}

.process-item:hover button i {
    transform: translateX(6px);
}

@media (max-width: 992px) {

    .process {
        padding: 80px 15px;
    }

    .process .container {
        grid-template-columns: repeat(1, 1fr);
        gap: 80px;
    }

    .process-item {
        padding: 120px 20px 30px 20px;
    }

    .process-item .image {
        width: 100%;
        height: 200px;
        top: -60px;
    }

    .process-item .title {
        font-size: 18px;
    }

    .process-item .text {
        font-size: 14px;
    }
}

/* PROCESS END */
/* PRODUCTS START */
.products {
    padding: 80px 0;
}


.products-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.products-top .title {
    font-size: 40px;
    font-weight: 600;
    color: var(--primary);
}

.products-top .text {
    font-size: 24px;
    color: var(--primary);
    max-width: 718px;
    text-align: center;
}

.products .container {
    padding: 40px 0;
    position: relative;
}

.products-swiper-wrapper {
    position: relative;
    padding: 0 50px;
}

.productsSwiper {
    overflow: hidden;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) !important;
    width: 44px !important;
    height: 44px !important;
    color: var(--secondary) !important;
    z-index: 10;
}

.swiper-button-prev {
    left: -5px !important;
}

.swiper-button-next {
    right: -5px !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px !important;
    font-weight: 700 !important;
}

.products-item {
    border: 3px solid var(--secondary);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    height: 500px;
    transition: all 0.5s ease;
    text-decoration: none;
}

.products-item:hover {
    background-color: var(--primary);
}

.products-item:hover .title {
    color: var(--text);
}

.products-item:hover .weight {
    color: var(--text);
}

.products-item .title {
    color: var(--primary);
    font-size: 24px;
    font-weight: 600;
}

.products-item .text {
    color: var(--text);
    padding: 10px 20px;
    border-radius: 15px;
    background-color: var(--secondary);
    font-size: 12px;
}

.products-item .weight {
    color: var(--primary);
}

.all {
    color: var(--text);
    padding: 10px 20px;
    border-radius: 15px;
    background-color: var(--secondary);
    display: block;
    width: fit-content;
    margin: 20px auto 0 auto;
    transition: all 0.3s ease;
}

.all:hover {
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media(max-width:992px) {
    .products-top .text {
        font-size: 16px;
    }

    .swiper-button-prev {
        left: 5px !important;
    }

    .swiper-button-next {
        right: 5px !important;
    }
}

/* PRODUCTS END */
/* TEMPLATE PRODUCTS START */
.single-products {
    padding: 40px 0;
    text-align: center;
}

.single-products .subtext {
    color: var(--primary);
    font-size: 18px;
}

.single-products .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.single-products .products-item {
    border: 3px solid var(--secondary);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    height: 500px;
    transition: all 0.5s ease;
    text-decoration: none;
}

.single-products .products-item:hover {
    background-color: var(--primary);
}

.single-products .products-item:hover .title {
    color: var(--text);
}

.single-products .products-item:hover .weight {
    color: var(--text);
}

.single-products .products-item .title {
    color: var(--primary);
    font-size: 25px;
    font-weight: 600;
}

.single-products .products-item .text {
    color: var(--text);
    padding: 10px 20px;
    border-radius: 15px;
    background-color: var(--secondary);
    font-size: 12px;
}

.single-products .products-item .weight {
    color: var(--primary);
}

.single-products .all {
    color: var(--text);
    padding: 10px 20px;
    border-radius: 15px;
    background-color: var(--secondary);
    display: block;
    width: fit-content;
    margin: 20px auto 0 auto;
}

@media(max-width:992px) {
    .single-products {
        width: 90%;
        margin: 0 auto;
    }

    .single-products .container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        margin-top: 15px;
    }
}

/* TEMPLATE PRODUCTS END */
/*CTA START*/
.cta {
    padding: 50px 20px;
}

.cta .container {
    display: flex;
    align-items: stretch;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 260px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    background-color: var(--primary);
}

.cta-left {
    background-color: var(--secondary);
    flex: 0 0 60%;
    position: relative;
    z-index: 2;
    border-radius: 0 250px 250px 0;
    box-shadow: 15px 0 0 0 var(--text);
    padding: 40px 220px 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-left .title {
    display: block;
    color: var(--text);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.cta-left .text {
    display: block;
    color: var(--text);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.95;
}

.cta-circle-outer {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.cta-circle-inner {
    width: 150px;
    height: 150px;
    background-color: var(--text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-phone {
    color: var(--secondary);
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.1;
    text-align: center;
    display: inline-block;
    max-width: 80px;
}

.cta-phone-icon {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-phone-icon:hover {
    background-color: var(--primary);
    transform: translateY(-50%) scale(1.05);
}

.cta-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px 40px 60px;
    z-index: 1;
    background-color: var(--primary);
}

.cta-right .title {
    display: block;
    color: var(--text);
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-btn {
    background-color: var(--secondary);
    color: var(--text);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.cta-btn i {
    font-size: 14px;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 992px) {

    .cta {
        padding: 30px 15px;
    }

    .cta .container {
        flex-direction: column;
        min-height: auto;
        gap: 0;
        background-color: transparent;
        box-shadow: none;
        border-radius: 0;
        overflow: visible;
    }

    .cta-left {
        border-radius: 20px;
        box-shadow: none;
        padding: 35px 35px 90px 35px;
        margin-right: 0;
        position: relative;
    }

    .cta-phone-icon {
        top: 36%;
    }

    .cta-circle-outer {
        position: absolute;
        right: 50%;
        transform: translateX(50%);
        top: auto;
        bottom: -60px;
        z-index: 10;
    }

    .cta-right {
        padding: 80px 20px 35px 20px;
        border-radius: 20px;
        background-color: var(--primary);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    }

}

/*CTA END*/
/*RECİPES START*/
.recipes {
    padding: 60px;
}

.recipes .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.recipes-right {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 15px;
}

.recipes-right .title {
    color: var(--primary);
    font-size: 50px;
    font-weight: 600;
}

.recipes-right .subtitle {
    color: var(--primary);
    font-size: 25px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.recipes-right .subtitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    background: var(--secondary);
}

.recipes-right .text {
    color: var(--primary);
}

.recipes-right a {
    padding: 10px 20px;
    color: var(--text);
    background-color: var(--secondary);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.recipes-right a:hover {
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

}


@media(max-width:992px) {
    .recipes .container {
        flex-direction: column;
    }
}

/*RECİPES END*/
.footer {
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 120px);
    background-color: var(--primary);
    border-top: 15px solid var(--secondary);
    z-index: 0;
}

.footer>* {
    position: relative;
    z-index: 1;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo-wrapper::before,
.footer-logo-wrapper::after {
    content: '';
    height: 1px;
    background-color: var(--secondary);
    flex-grow: 1;
    max-width: 350px;
    margin: 0 30px;
}

.footer-logo-wrapper img {
    max-height: 60px;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer .container .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
    gap: 12px;
}

.footer .container .item i {
    color: var(--secondary);
    font-size: 28px;
}

.teklif-btn {
    background-color: var(--secondary);
    color: var(--text);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.teklif-btn:hover {
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.footer-bottom {
    background-color: var(--secondary);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    max-width: 1300px;
    margin: 0 auto 30px auto;
    border-radius: 50px;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom a {
    color: var(--text);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-bottom a:hover {
    color: white;
}

.footer-bottom .address {
    text-align: center;
    max-width: 250px;
    line-height: 1.4;
}

.social-media {
    display: flex;
    gap: 12px;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--text);
    border-radius: 50%;
    color: var(--text);
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-media a:hover {
    background-color: var(--text);
    color: var(--secondary);
    opacity: 1;
}

.footer-subbottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    gap: 40px;
}

.footer-subbottom .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
}

.footer-subbottom .legal {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
}

.footer-subbottom a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-subbottom a:hover {
    opacity: 0.7;
}

@media (max-width: 992px) {
    .footer .container {
        justify-content: center;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        border-radius: 30px;
        text-align: center;
        padding: 30px 20px;
    }

    .footer-subbottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer-subbottom .content,
    .footer-subbottom .legal {
        align-items: center;
        color: var(--text);
    }

    .footer-subbottom .content a{
        color: var(--text);
    }

    .footer-logo-wrapper::before,
    .footer-logo-wrapper::after {
        display: none;
    }
}
/* BREADCRUMB START */

.breadcrumb {
    background-color: var(--secondary);
    padding: 40px 20px;
    color: var(--text);
}

.breadcrumb .container-fuild {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.breadcrumb .title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.breadcrumb .links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 14px;
}

.breadcrumb .links li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb .links li:not(:last-child)::after {
    content: "/";
    opacity: 0.6;
}

.breadcrumb .links a {
    color: var(--text);
    text-decoration: none;
    opacity: 0.85;
    transition: 0.3s ease;
}

.breadcrumb .links a:hover {
    opacity: 1;
}

.breadcrumb .links li:last-child {
    opacity: 0.7;
}

@media (max-width: 992px) {

    .breadcrumb {
        padding: 30px 15px;
    }

    .breadcrumb .title {
        font-size: 22px;
    }

    .breadcrumb .links {
        font-size: 13px;
        gap: 6px;
    }

    .breadcrumb .links li:not(:last-child)::after {
        margin-left: 4px;
    }
}

/* BREADCRUMB END */
/*ABOUT START*/
.about {
    padding: 40px 0;
}

.about .about-desc {
    padding: 40px 0;
}

.about .desc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.about .desc-title {
    color: var(--secondary);
    font-size: 18px;
    font-weight: 600;
}

.about .desc-text {
    color: var(--primary);
    text-align: center;
    max-width: 1000px;
    margin-bottom: 35px;
}

.about .about-values {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.about .value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text);
    background-color: var(--secondary);
    padding: 30px 60px;
    border-radius: 30px;
}

.about .about-item i {
    font-size: xx-large;
    margin-bottom: 10px;
}

.about .value-title {
    font-size: 18px;
    font-weight: 500;
}

.about .value-sub {
    font-size: 18px;
}

@media(max-width:992px) {
    .about {
        width: 90%;
        margin: 0 auto;
    }
}

/*ABOUT END*/

/*DETAİL PRODUCTS START*/

.product-detail {
    padding: 40px 0
}

.product-detail-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.product-detail-left,
.product-detail-right {
    width: 50%;
    border-radius: 30px;
}

.product-detail-left {
    border-radius: 30px;
}

.product-detail-slider {
    width: 100%;
    height: 420px;
    margin-bottom: 25px;
    border: 1px solid var(--secondary);
    border-radius: 20px;

}

.product-detail-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-slider img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    padding: 35px;
}

.product-detail-thumbs {
    height: 150px;
}

.product-detail-thumbs .swiper-slide {
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    opacity: .6;
    border: 2px solid transparent;
    transition: .3s ease;
}

.product-detail-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.product-detail-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--secondary);
    border-radius: 20px;
}


.product-detail-right {
    border: 1.5px solid var(--secondary);
    border-radius: 30px;
    padding: 45px;
}

.product-detail-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--text);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 18px;
}

.product-detail-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.product-detail-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
}

.product-detail-weight {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
}

.product-detail-subtitle {
    display: block;
    margin-top: 8px;
    font-size: 15px;
    color: var(--primary);
    opacity: .75;
}

.product-detail-desc {
    margin: 25px 0;
    padding: 22px 0;
    border-top: 2px solid var(--secondary);
    border-bottom: 2px solid var(--secondary);
    font-size: 15px;
    line-height: 1.7;
    color: var(--primary);
}

.product-detail-info {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.product-detail-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.product-detail-info-item img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.product-detail-info-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.product-detail-info-text {
    font-size: 13px;
    color: var(--primary);
    opacity: .75;
}

.product-detail-bottom {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.product-detail-note {
    font-size: 13px;
    color: var(--primary);
    opacity: .8;
}

.product-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--secondary);
    color: #fff;
    padding: 14px 40px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.product-detail-btn:hover {
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}


.information {
    padding: 40px 0;
    margin: 0 auto;
}

.information-tabs {
    background: var(--secondary);
    padding: 20px;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.information-tab {
    padding: 12px 30px;
    border-radius: 40px;
    border: 2px solid var(--text);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: 0.3s ease;
    font-weight: 500;
    width: 90%;
}

.information-tab.active {
    background: var(--text);
    color: var(--secondary);
}

.information-contents {
    margin-top: 40px;
}

.information-content {
    display: none;
    font-size: 18px;
    line-height: 1.7;
    color: var(--primary);
}

.information-content.active {
    display: block;
}

.big-title {
    font-weight: 700;
    font-size: 40px;
    color: var(--primary);
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

@media(max-width:992px) {
    .product-detail-wrap {
        flex-direction: column;
        align-items: center;
    }

    .product-detail-left {
        width: 90%;
    }

    .product-detail-right {
        padding: 25px 20px;
        border-radius: 20px;
        width: 90%;
    }

    .product-detail-title-row {
        flex-direction: column;
        gap: 8px;
    }

    .product-detail-title {
        font-size: 26px;
    }

    .product-detail-weight {
        font-size: 18px;
    }

    .product-detail-subtitle {
        font-size: 14px;
    }

    .product-detail-desc {
        font-size: 14px;
        margin: 18px 0;
        padding: 18px 0;
    }

    .product-detail-info {
        flex-direction: column;
        gap: 16px;
    }

    .product-detail-info-item img {
        width: 36px;
        height: 36px;
    }

    .product-detail-info-title {
        font-size: 13px;
    }

    .product-detail-info-text {
        font-size: 12px;
    }

    .information-tabs {
        flex-direction: column;
        width: 90%;
        align-items: center;
        margin: 0 auto;
    }

    .information-content {
        margin: 0 auto;
        width: 90%;
    }
}

/*DETAİL PRODUCTS END*/
/*RECIPES START*/
.recipes {
    padding: 60px 0;
}

.recipes .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.recipes .box {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.recipes .box img {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.recipes .box .content {
    background-color: var(--secondary);
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.recipes .box .content .title {
    font-size: 32px;
    color: var(--text);
    font-weight: bold;
    border-bottom: 3px solid var(--text);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.recipes .box .content .subtitle,
.recipes .box .content .subtext {
    font-size: 24px;
    color: var(--text);
}


@media (max-width: 992px) {
    .recipes .container {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .recipes .box {
        width: 90%;
        max-width: 500px;
    }

    .recipes .box img {
        width: 100%;
        height: auto;
        display: block;
    }
}

/*RECIPES END*/
/* RECIPES DETAIL START */
.recipe-detail {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 60px 15px;
    box-sizing: border-box;
    text-align: center;
}

.recipe-detail .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    text-align: center;
}

.recipe-detail img {
    width: 100%;
    max-width: 800px;
    height: 550px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.recipe-detail .big-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.recipe-detail .content {
    width: 100%;
    max-width: 800px;
    border: 1px solid var(--secondary);
    border-radius: 30px;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.recipe-detail .content .title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    color: var(--secondary);
}

.recipe-detail .content .text {
    color: var(--primary);
    text-align: center;
}

@media (max-width: 992px) {
    .recipe-detail img {
        height: 350px;
        max-width: 100%;
    }

    .recipe-detail .big-title {
        font-size: 32px;
    }

    .recipe-detail .content {
        padding: 20px;
    }

    .recipe-detail .content .title {
        font-size: 24px;
    }
}

/* RECIPES DETAIL END */
/* BLOG START */
.blog {
    padding: 60px 0;
}

.blog .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.blog .box {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    border-radius: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog .data {
    color: #666;
}

.blog .box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 30px;
    transition: transform 0.3s ease;
}

.blog .box .content {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 8px;
}

.blog .title {
    font-size: 25px;
    color: var(--primary);
}

.blog button {
    padding: 8px 15px;
    border-radius: 30px;
    border: none;
    color: var(--text);
    background-color: var(--secondary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.blog button i {
    transition: transform 0.3s ease;
}


.blog .box:hover img {
    transform: scale(1.05);
}

.blog .box:hover button i {
    transform: translateX(5px);
}


@media (max-width: 992px) {
    .blog .container {
        grid-template-columns: 1fr;
    }

    .blog .box {
        width: 90%;
        margin: 0 auto;
    }

    .blog .box img {
        height: 200px;
    }

    .blog .title {
        font-size: 20px;
    }

    .blog button {
        padding: 6px 12px;
    }
}

/* BLOG END */
/* BLOG DETAİL START */
.blog-detail {
    padding: 60px 0;
}

.blog-detail .container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 15px;
    justify-content: center;
    align-items: start;
}

.blog-detail .left {
    grid-column: span 8;
    padding: 30px;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.blog-detail .right {
    grid-column: span 4;
    padding: 30px;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: sticky;
    top: 90px;
}

.blog-detail .right .form-footer {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-top: 4px;
    flex-direction: column;
    gap: 10px;

}

.blog-detail .right .phone-email-row {
    flex-direction: column;
}

@media (max-width: 992px) {
    .blog-detail .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-detail .left,
    .blog-detail .right {
        grid-column: span 12;
        padding: 20px;
        width: 90%;
        margin: 0 auto;
    }
}

/* BLOG DETAİL END */
/*CONTACT START*/
.contact {
    padding: 60px 0;
    background-color: #fdf5f0;
}

.contact .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    justify-content: center;
    gap: 30px;
}

.contact .left {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 30px;
}

.contact .right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.contact .title,
.contact-form .title {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--secondary);
    width: fit-content;
}

.contact .left .info {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--secondary);
    width: fit-content;
}

.contact .left .info a {
    color: var(--primary);
}

.contact .left .info a i {
    color: var(--secondary);
}

.contact .bottom {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 20px;
}

.contact .left .text {
    font-size: 12px;
    color: var(--primary);
}

.contact .left .bottom a {
    border: 1px solid var(--secondary);
}

.contact .left .bottom i {
    color: var(--secondary);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--secondary);
    border-radius: 8px;
    font-size: 15px;
    color: var(--primary);
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
    background-color: transparent;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: var(--secondary);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--primary);
    opacity: 0.6;
}

.contact-form .phone-email-row {
    display: flex;
    gap: 12px;
}

.contact-form .phone-email-row input {
    flex: 1;
    width: auto;
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form .form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}

.contact-form button[type="submit"] {
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s, transform 0.1s;
    white-space: nowrap;
}

.contact-form button[type="submit"]:hover {
    opacity: 0.9;
    transform: translateX(2px);
}

.contact .last {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
    margin-top: 60px;
    grid-column: 1 / -1;
}

.contact .last .title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    padding-bottom: 10px;
    border-bottom: 3px solid var(--secondary);
}

.contact .last .maps {
    width: 100%;
}

.contact .last .maps iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 12px;
    display: block;
}

@media (max-width: 992px) {
    .contact {
        padding: 60px 5%;
    }

    .contact .grid {
        grid-template-columns: 1fr;
    }

    .contact .left .info {
        width: 100%;
    }

    .contact-form .phone-email-row {
        flex-direction: column;
    }

    .contact-form .form-footer {
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .contact-form .phone-email-row input {
        width: 100%;
    }

    .contact .last .maps iframe {
        height: 250px;
    }
}

/*CONTACT END*/
/*OFFER FORM START*/
.offer {
    padding: 60px 0;
}

.offer-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.offer-form .text {
    display: block;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 400;
    color: var(--primary);
    text-align: start;
    position: relative;
    padding-bottom: 10px;
}

.offer-form .text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--secondary);
}

.offer-form .title {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.offer-form form {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 30px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
    margin-top: 24px;
    gap: 12px;
}

.offer-form input[type="text"],
.offer-form input[type="email"],
.offer-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--secondary);
    border-radius: 8px;
    font-size: 15px;
    color: var(--primary);
    background-color: transparent;
    outline: none;
    transition: border-color 0.2s;
}

.offer-form input:focus,
.offer-form textarea:focus {
    border-color: var(--secondary);
}

.offer-form textarea {
    min-height: 130px;
    resize: vertical;
}

.offer-form .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offer-form button[type="submit"] {
    background-color: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, transform 0.1s;
}

.offer-form button[type="submit"]:hover {
    opacity: 0.9;
    transform: translateX(2px);
}

@media (max-width: 992px) {
    .offer {
        padding: 40px 15px;
    }

    .offer-form .text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .offer-form .title {
        font-size: 28px;
        margin-bottom: 8px;
        text-align: center;
    }

    .offer-form form {
        padding: 30px 20px;
        border-radius: 20px;
        gap: 10px;
    }

    .offer-form input[type="text"],
    .offer-form input[type="email"],
    .offer-form textarea {
        font-size: 14px;
        padding: 12px 14px;
    }

    .offer-form textarea {
        min-height: 110px;
    }

    .offer-form .bottom {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .offer-form button[type="submit"] {
        width: 100%;
        justify-content: center;
        padding: 12px 0;
        font-size: 15px;
    }
}

/*OFFER FORM END*/
/*404 SART*/
.mistake {
    padding: 80px 0;
}

.mistake .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.mistake .container .right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mistake .container .right .title {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary);
}

.mistake .container .right .text {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.mistake .container .right a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    background: var(--secondary);
    color: var(--text);
    transition: all 0.3s ease;
}

.mistake .container .right a:hover {
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/*404 END*/

/* CHEF START */
.chef {
    padding: 60px 0;
    background-color: #fdf5f0;
}

.chef .chef-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 30px 0;
}

.chef .chef-top .title {
    color: var(--primary);
    font-size: 40px;
    font-weight: bold;
}

.chef .chef-top .text {
    color: var(--primary);
    width: 700px;
}

.chef .chef-top img {
    width: 1500px;
    height: auto;
}

/* CHEF-TOP MOBILE */
@media (max-width: 992px) {
    .chef .chef-top {
        padding: 20px 15px;
        gap: 15px;
    }

    .chef .chef-top .title {
        font-size: 28px;
        line-height: 1.2;
    }

    .chef .chef-top .text {
        width: 90%;
        max-width: 100%;
        font-size: 14px;
        padding: 0 10px;
    }

    .chef .chef-top img {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }
}

.chef .substances {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px 0;
}

.chef .substances .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.chef .substances .top .title {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary);
}

.chef .substances .top .sub {
    font-size: 40px;
    font-weight: bold;
    color: var(--primary);
}

.chef .substances .top .text {
    color: var(--primary);
    width: 700px;
}

.chef .substances .bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
}

.chef .substances .bottom .item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--secondary);
    padding: 30px;
    border-radius: 50%;
    gap: 5px;
    width: 150px;
    height: 150px;
    border: 4px solid #fdf5f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.chef .substances .bottom .item::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.chef .substances .bottom .item .title {
    color: var(--text);
    width: 100px;
    font-size: 14px;
    line-height: 1.3;
}

.chef .substances .bottom .item i {
    color: var(--text);
    font-size: 30px;
}

/* SUBSTANCES MOBILE */
@media (max-width: 992px) {
    .chef .substances {
        padding: 20px 15px;
    }

    .chef .substances .top .title {
        font-size: 22px;
    }

    .chef .substances .top .sub {
        font-size: 30px;
        line-height: 1.2;
    }

    .chef .substances .top .text {
        width: 90%;
        max-width: 100%;
        font-size: 14px;
        padding: 0 10px;
    }

    .chef .substances .bottom {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 10px;
    }

    .chef .substances .bottom .item {
        width: 130px;
        height: 130px;
        padding: 20px;
    }

    .chef .substances .bottom .item::before {
        width: 130px;
        height: 130px;
    }

    .chef .substances .bottom .item .title {
        font-size: 12px;
        width: 90px;
    }

    .chef .substances .bottom .item i {
        font-size: 26px;
    }
}

.chef .video {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px 0;
}

.chef .video .title {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 8px;
}

.chef .video .item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.chef .video .bottom {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 15px;
    background-color: var(--secondary);
    padding: 30px;
    border-radius: 15px;
    color: var(--text);
}

.chef .video .bottom iframe {
    width: 100%;
    height: auto;
    transform: scale(1.1);
    border-radius: 15px;
    border: none;
}

/* VIDEO MOBILE */
@media (max-width: 992px) {
    .chef .video {
        padding: 20px 15px;
    }

    .chef .video .title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .chef .video .item {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        padding: 0 10px;
    }

    .chef .video .bottom {
        padding: 20px 15px;
        border-radius: 12px;
        width: 100%;
    }

    .chef .video .bottom iframe {
        transform: scale(1);
        height: 200px;
    }
}

.chef .faq {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 5px;
    padding: 30px 0;
}

.chef .faq .container {
    position: relative;
    max-width: 1400px;
    width: 100%;
    padding: 0 80px;
}

.chef .faq .title {
    color: var(--primary);
    font-size: 40px;
    font-weight: bold;
}

.chef .faq .text {
    color: var(--primary);
    max-width: 700px;
    margin: 0 auto 30px;
}

.chef .faq .faq-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
}

.chef .faq .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.chef .faq .bottom {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background-color: var(--primary);
    color: var(--text);
    padding: 30px;
    border-radius: 180px;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}

.chef .faq .bottom::before {
    content: "";
    position: absolute;
    width: calc(100% + 50px);
    height: calc(100% + 20px);
    border-radius: 180px;
    border: 2px solid var(--secondary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.chef .faq .bottom>div:first-child {
    font-weight: 800;
    font-size: 20px;
}

.chef .faq .swiper-button-prev,
.chef .faq .swiper-button-next {
    position: absolute;
    top: 58%;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chef .faq .swiper-button-prev:after,
.chef .faq .swiper-button-next:after {
    font-family: swiper-icons;
    font-size: 24px;
    text-transform: none;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
    color: var(--secondary);
}

.chef .faq .swiper-button-prev {
    left: 130px !important;
}

.chef .faq .swiper-button-next {
    right: 130px !important;
}

.chef .faq .swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

/* FAQ MOBILE */
@media (max-width: 992px) {
    .chef .faq {
        padding: 20px 10px;
    }

    .chef .faq .container {
        padding: 0 20px;
    }

    .chef .faq .title {
        font-size: 28px;
        line-height: 1.2;
    }

    .chef .faq .text {
        width: 90%;
        font-size: 14px;
        margin: 0 auto 20px;
    }

    .chef .faq .faq-slider {
        padding: 20px 0;
    }

    .chef .faq .bottom {
        padding: 25px 20px;
        border-radius: 120px;
        gap: 20px;
        width: 95%;
    }

    .chef .faq .bottom::before {
        width: calc(100% + 30px);
        height: calc(100% + 15px);
        border-radius: 120px;
    }

    .chef .faq .bottom>div:first-child {
        font-size: 16px;
    }

    .chef .faq .swiper-button-prev,
    .chef .faq .swiper-button-next {
        width: 36px;
        height: 36px;
        top: 55%;
    }

    .chef .faq .swiper-button-prev:after,
    .chef .faq .swiper-button-next:after {
        font-size: 18px;
    }

    .chef .faq .swiper-button-prev {
        left: 10px !important;
    }

    .chef .faq .swiper-button-next {
        right: 10px !important;
    }
}

.chef .product {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 20px;
    padding: 30px 0;
}

.chef .product .title {
    color: var(--primary);
    font-size: 40px;
    font-weight: bold;
}

.chef .product .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.chef .product .card {
    border: 2px solid var(--secondary);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 280px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    background: var(--text);
}

.chef .product .card img {
    padding: 10px;
    width: 100%;
    height: 200px;
    object-fit: contain;
    display: block;
    transition: 0.4s ease;
}

.chef .product .card .bottom {
    padding: 15px 10px;
    background: var(--text);
    transition: background 0.8s ease, color 0.4s ease;
}

.chef .product .card .subtitle {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 16px;
    transition: color 0.4s ease;
}

.chef .product .card .sub {
    display: block;
    font-size: 14px;
    color: var(--primary);
    transition: color 0.4s ease;
}

.chef .product .card:hover .bottom {
    background: var(--secondary);
}

.chef .product .card:hover img {
    transform: scale(1.05);
}

.chef .product .card:hover .subtitle,
.chef .product .card:hover .sub {
    color: var(--text);
}

/* PRODUCT MOBILE - Mevcut kodunuzu koruyarak geliştirdim */
@media (max-width: 992px) {
    .chef .product {
        padding: 20px 10px;
    }

    .chef .product .title {
        font-size: 28px;
        line-height: 1.2;
        padding: 0 15px;
    }

    .chef .product .container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .chef .product .card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .chef .product .card img {
        height: 180px;
    }

    .chef .product .card .subtitle {
        font-size: 15px;
    }

    .chef .product .card .sub {
        font-size: 13px;
    }
}

.chef .inspiration {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.chef .inspiration .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.chef .inspiration .left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 5px;
}

.chef .inspiration .left .title {
    padding: 5px 10px;
    background-color: var(--secondary);
    color: var(--text);
    border-radius: 56px;
}

.chef .inspiration .left .sub {
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
}

.chef .inspiration .left .text {
    color: var(--primary);
    width: 500px;
}

/* INSPIRATION MOBILE */
@media (max-width: 992px) {
    .chef .inspiration {
        padding: 20px 15px;
    }

    .chef .inspiration .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .chef .inspiration .left {
        gap: 10px;
    }

    .chef .inspiration .left .title {
        font-size: 14px;
        padding: 8px 16px;
    }

    .chef .inspiration .left .sub {
        font-size: 16px;
    }

    .chef .inspiration .left .text {
        width: 90%;
        max-width: 100%;
        font-size: 14px;
    }
}

.chef .gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 30px 0;
}

.chef .gallery .title {
    color: var(--primary);
    font-size: 40px;
    font-weight: bold;
}

.chef .gallery .text {
    color: var(--primary);
    max-width: 700px;
    margin: 0 auto 30px;
}

.chef .gallery .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    overflow: visible;
}

.gallery-slider {
    width: 100%;
    overflow: visible;
    position: relative;
}

.gallery-slider .swiper-wrapper {
    display: flex;
    align-items: center;
}

.gallery-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-slider .swiper-slide img {
    width: 100%;
    max-width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.chef .gallery .right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--secondary);
    color: var(--text);
    padding: 15px;
    border-radius: 20px;
    font-size: 18px;
}

.chef .gallery .right span {
    max-width: 200px;
}

.chef .gallery .right i {
    font-size: 40px;
}

.chef .gallery .right a {
    color: var(--text);
}

/* GALLERY MOBILE */
@media (max-width: 992px) {
    .chef .gallery {
        padding: 20px 15px;
    }

    .chef .gallery .title {
        font-size: 28px;
        line-height: 1.2;
    }

    .chef .gallery .text {
        width: 90%;
        font-size: 14px;
        margin: 0 auto 20px;
    }

    .chef .gallery .container {
        flex-direction: column;
        gap: 15px;
    }

    .gallery-slider {
        width: 100%;
        padding: 0 10px;
    }

    .gallery-slider .swiper-slide img {
        max-width: 200px;
        height: 130px;
    }

    .chef .gallery .right {
        font-size: 16px;
        padding: 12px 20px;
        border-radius: 15px;
        width: 90%;
    }

    .chef .gallery .right span {
        max-width: 250px;
    }

    .chef .gallery .right i {
        font-size: 32px;
    }
}

/* CHEF END */