:root {
    --text-black: #2b2824;
    --text-gray: #817c7b;
    --secondary-color: #c8693a;
    --primary-color: #202345
}

::selection {
    color: #fff;
    background: var(--secondary-color);
}

body {
    font-family: "Baloo Bhaijaan 2", serif;
    font-weight: 400;
    font-style: normal;
    margin: 20px;
    padding: 20px;
    border: solid 1px rgba(0,0,0,0.1);
    color: var(--text-gray);
    font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Libre Baskerville", serif;
}

a {
    text-decoration: none;
    color: var(--text-black);
}

header {
    font-size: 1.2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 99;
    transition: all 0s ease;
}

.header-scrolled {
    background-color: var(--primary-color);
    width: calc(100% + 2px);
    margin-left: -41px;
    padding: 0 40px;
    height: 96px;
}

.header-scrolled #logo img {
    height: 60px;
}

section {
    height: auto;
    padding-top: 160px;
}

nav {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    justify-content: flex-end;
    align-items: center;
}
nav a {
    font-size: 1.2rem;
    margin: 0 5px;
    font-family: "Baloo Bhaijaan 2", serif;
    text-transform: capitalize;
    letter-spacing: 0.08rem;
    transition: color .2s ease-out, background-color .2s ease-out;
    color: white;
}

nav a:before {
    margin-right: 5px;
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 8px;
    height: 1px;
    margin-top: -1px;
    transform-origin: right;
    transform: scaleX(0);
    opacity: 0;
    background-color: currentColor;
}

nav a:after {
    margin-left: 5px;
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 8px;
    height: 1px;
    margin-top: -1px;
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
    background-color: currentColor;
}

nav a:hover:after,
nav a:hover:before {
    opacity: 1;
    transform: scaleX(1);
    transition: .3s cubic-bezier(.22,.75,.39,.92);
}

h2 {
    text-align: center;
    margin: 0 auto;
    padding-top: 10px;
    font-weight: 400;
    color: #2b2824;
    font-size: 2rem;
    line-height: 1.106em;
    letter-spacing: .16em;
    margin: 25px 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

p {
    line-height: 1.8rem;
    letter-spacing: 0.02rem;
    font-weight: 300;
}

section#biz-kimiz {
    margin: 0 auto;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding: 0;
    height: 600px;
    color: rgba(255,255,255,0.7);
}

section#stratejimiz {
    margin-top: 400px;
    margin-left: auto;
    margin-right: auto;
    width: 65%;
    max-width: 1000px;
}

section#odullerimiz {
    text-align: center;
    min-height: 400px;
    margin-left: auto;
    margin-right: auto;
    width: 65%;
}

section#iletisim {
    text-align: center;
    min-height: 400px;
    margin-left: auto;
    margin-right: auto;
    width: 65%;
    margin-bottom: 60px;
}

#logo,
#nav-social-media {
    width: 240px;
}

#logo img {
    max-width: 100%;
    height: 84px;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    background-color: var(--primary-color);
    opacity: 0.9;
}

.header-image-content {
    position: absolute;
    top: 150px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    margin: 0 auto;
    z-index: 10;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
}

.header-image-content p {
    width: 30%;
}

.header-image-content span {
    font-family: "Libre Baskerville", serif;
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-style: italic;
    letter-spacing: 0;
    font-weight: 300;
    margin: 30px 0 10px;
    display: block;
}

#urunlerimiz h2 {
    margin-bottom: 60px;
}

.urunler-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.urunler-item {
    width: calc(100% / 2 - 10px);
    text-align: center;
    border: solid 2px rgba(32,35,69,0.5);
}

.urunler-item img {
    height: 160px;
    padding-top: 40px;
    max-width: 100%;
    transform: scale(1);
    transition: all 0.3s ease;
}

.urunler-item-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.urunler-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(32,35,69);
    background: linear-gradient(0deg, rgba(32,35,69,0.45) 0%, rgba(32,35,69,0.4) 20%, rgba(32,35,69,0.2) 100%);
    transition: all 0.3s ease;
    opacity: 0;
}

.urunler-item:hover .urunler-item-overlay {
    opacity: 1;
}

.urunler-item-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    z-index: 1;
    color: white;
}

.urunler-item-info {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    position: absolute;
    transition: all 0.3s ease;
    color: white;
    box-sizing: border-box;
    line-height: 1;
    padding-right: 10px;
    padding-bottom: 10px;
}

.urunler-item-brand {
    margin-bottom: 20px;
    font-size: 1.2rem;
    transition: margin-bottom 0.3s ease;
    text-align: center;
    padding: 0 10px;
    display: none;
}

.urunler-item:hover img {
    transform: scale(0.9);
}

.urunler-item:hover .urunler-item-brand {
    margin-bottom: 40px;
}

.urunler-item:hover .urunler-item-info {
    opacity: 1;
}

.product-icons {
    height: 60px;
}

.product-icons img {
    max-height: 100%;
    margin: 0 auto;
}

.odullerimiz-slider {
    height: 300px;
}

.odullerimiz-slider-item {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.slick-next:before,
.slick-prev:before {
    color: var(--secondary-color) !important;
    font-size: 36px !important;
}

.slick-next:before {
    content: '⟩' !important;;
}

.slick-prev:before {
    content: '⟨' !important;;
}

.footer-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.footer-icon:hover {
    color: var(--secondary-color);
}

.footer-icon svg {
    stroke: var(--secondary-color);
    margin-right: 5px;
}

.wrapper{
    display:flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
}

.tab{
    cursor: pointer;
    padding:10px 20px;
    margin:0px 2px;
    display:inline-block;
    color:var(--text-gray);
    text-align: center;
    font-weight: 600;
    font-family: "Libre Baskerville", serif;

}

.tab svg {
    display: block;
    margin: 0 auto;
    width: 48px;
    height: 58px;
    margin-bottom: 10px;
}
.panels{
    min-height:200px;
    width: 1000px;
    border-radius:3px;
    overflow:hidden;
    padding: 40px 20px;
}
.panel{
    display:none;
    animation: fadein .8s;
}
@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
.panel-title{
    font-size:1.5em;
    font-weight:bold
}

.panel-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.panel-row img {
    max-width: 100%;
}

.panel-row-image-right .panel-row-left,
.panel-row-image-left .panel-row-right {
    width: 55%;
}
 
.panel-row-image-right .panel-row-right,
.panel-row-image-left .panel-row-left {
    width: 35%;
}

.panel-row-2cols .panel-row-col {
    width: 45%;
}

.panel-row-3cols .panel-row-col {
    width: 30%;
}

.radio{
    display:none;
}
.tabs {
    position: sticky;
    position: -webkit-sticky;
    top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 100px;
    width: 360px;
}

/* Tabs'in sticky olduktan sonra uygulanacak olan stili */
.tabs.sticky-active {
    background-color: #fff; /* Örneğin arka plan rengini değiştiriyoruz */
    box-shadow: 0 0 6px -1px #ccc;
}

#one:checked ~ .panels #one-panel,
#two:checked ~ .panels #two-panel,
#three:checked ~ .panels #three-panel{
    display:block
}

#one:checked ~ .tabs #one-tab,
#two:checked ~ .tabs #two-tab,
#three:checked ~ .tabs #three-tab{
    background: transparent;
    color:var(--secondary-color);
}

#one:checked ~ .tabs #one-tab svg,
#two:checked ~ .tabs #two-tab svg,
#three:checked ~ .tabs #three-tab svg {
    fill:var(--secondary-color);
}

.tabs,
.tabs svg {
    transition: all .2s;
}
#cookie-checker {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f8f8f8;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

#cookie-checker h3 {
    text-align: center;
}

#cookie-yes-no {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#cookie-yes {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    display: block;
    margin-right: 10px;
}

#cookie-no {
    background-color: var(--text-gray);
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    display: block;
}

#young-boy {
    display: none;
}

.modal {
    width: 90% !important;
    max-width: 1000px !important;
    -webkit-box-shadow: 0 0 10px var(--primary-color) !important;
    -moz-box-shadow: 0 0 10px var(--primary-color) !important;
    -o-box-shadow: 0 0 10px var(--primary-color) !important;
    -ms-box-shadow: 0 0 10px var(--primary-color) !important;
    box-shadow: 0 0 10px var(--primary-color) !important;
}

.modal a.close-modal[class*="icon-"] {
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    color: #fff;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    text-indent: 0;
    background: var(--primary-color);
    border: 2px solid #fff;
    border-radius: 26px;
    -webkit-border-radius:  26px;
    -moz-border-radius:     26px;
    -o-border-radius:       26px;
    -ms-border-radius:      26px;
    -moz-box-shadow:    1px 1px 5px rgba(0,0,0,0.5);
    -webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    box-shadow:         1px 1px 5px rgba(0,0,0,0.5);
}

.blocker {
    z-index: 999 !important;
}

.modal-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    margin-bottom: 0;
}

.modal-header img {
    height: 80px;
}

.modal-body {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.modal-left {
    width: 60%;
}

.modal-right {
    width: 35%;
}

.modal-right img {
    max-width: 100%;
}

.modal-header {
    font-size: 1.2rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    #logo {
        text-align: center;
        margin-bottom: 30px;
    }

    .header-scrolled {
        background: transparent;
        height: inherit;
        padding: 0 20px;
        margin-left: -21px;
    }

    .header-scrolled #logo img {
        height: 84px;
    }

    section {
        margin-top: 120px;
        padding-top: 0;
    }

    section#biz-kimiz {
        height: 660px;
    }

    section#stratejimiz {
        width: 100%;
        margin-top: 540px;
    }

    .header-image-content {
        flex-direction: column;
        justify-content: flex-start;
        width: calc(100% - 80px);
        top: 180px;
        margin-top: 40px;
    }

    .header-image-content p {
        width: 100%;
        margin-top: 0;
    }

    .header-image-content span {
        margin: 10px 0;
    }
    
    .urunler-container {
        flex-direction: column;
        margin-bottom: 0;
    }

    .urunler-item {
        width: 100%;
        margin-bottom: 20px;
    }

    nav {
        width: 100%;
        justify-content: center;
    }

    nav a {
        font-size: 1.1rem;
        text-align: center;
        justify-content: space-between;
        margin: 0 20px;
    }

    nav a::before,
    nav a::after {
        display: none;
    }

    .modal-right {
        display: none;
    }

    .modal-left {
        width: 100%;
    }

    .modal {
        max-height: 60vh;
        overflow-x: hidden;
        overflow-y: scroll;
    }

    .modal-header {
        flex-direction: column-reverse;
    }

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

@media (max-width: 576px) {
    body {
        margin: 10px;
        padding: 10px;
        font-size: 16px;
    }

    nav a {
        margin: 0 10px;
    }

    .header-image-content {
        top: 140px;
    }

    .header-image-content span {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    section#biz-kimiz {
        height: 830px;
    }

    section#stratejimiz {
        margin-top: 720px;
    }

    nav a {
        margin: 0 5px;
    }
}

@media (max-width: 375px) {

    .header-scrolled {
        margin-left: -21px;
        padding: 0 20px;
    }

    .header-image-content {
        top: 140px;
    }

}
