@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');

@font-face {
  font-family: 'fs-siena'; /* Font'a vereceğiniz isim */
  src: url('font/FS-Siena-Regular.ttf') format('truetype'); /* Font dosyasının yolu */
  font-weight: normal; /* İstenirse yazı tipi kalınlıkları da belirtilir */
  font-style: normal;  /* İstenirse italik vs. de belirtilir */
}



body, html {
  overflow-x: hidden; /* Disables horizontal scrolling */
}


.header_oil_navbar {
  position: relative;
  z-index: 9999;
}
.header_oil_navbar .navbar_home_oil {
  background: transparent;
  padding: 1rem 0.9375rem;
}
.navbar_home_oil .navbar-nav {
  align-items: center;
  display: block;
  margin-right: 67px;
}

.mobile-logo,
.desktop_logo {
  width: 5rem;
  /* margin: 0; */
  padding: 0;
  margin-left: 198px;
}

.desktop_logo,
.empty_box {
  display: none;
}
.navbar_home_oil .nav-link {
  font-style: normal;
  font-size: 14px;
  color: #ffffff;
  padding: 1rem 0rem 0rem;
  transition: all ease 0.4s;
  font-family: 'fs-siena', sans-serif;
}
.navbar_home_oil .nav-link:hover {
  color: #b68150;
}
.cart_item {
  position: relative;
}
.cart_item .cart_count, 
.cart_item .cart_title{
  display: block;
}
.cart_item img {
  padding-bottom: 11px;
}
.cart_item .cart_count {
  font-weight: bold;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: #FF8849;
  padding: 1px 6px;
  width: 29px;
  height: 23px;
  z-index: 1;
  position: absolute;
  right: 15px;
  top: 15px;
}

.oil_nav_area {
  position: fixed;
  width: 100%;
  height: 113px;
  background-color: #0E0E11;
  top: 0;
  left: 0;
  transition: height ease 0.4s;
}
body:has(.oil_nav_area .navbar_home_oil button[aria-expanded="true"]) {
  overflow: hidden;
}
.navbar_home_oil button:active,
.navbar_home_oil button:focus {
  outline: none;
}
.oil_nav_area:has(.navbar_home_oil button[aria-expanded="true"]) {
  height: 100%;
}
.oil_nav_area .cross_image {
  filter: brightness(200%);
  rotate: 45deg;
  display: none;
}
.oil_nav_area button[aria-expanded="true"] .cross_image {
  display: block;
}
.oil_nav_area button[aria-expanded="true"] .hamburger_menu {
  display: none;
}
.oil_nav_area .nav-item {
  border-top: 1px solid #a29f9f;
}
.oil_nav_area .nav-item:first-child {
  border-top: 0;
}
.oil_nav_area .sub-menu > ul.nav-item {
  display: none;
}
.oil_nav_area .sub-menu > ul.nav-item.dropdown {
  display: block;
}
.oil_nav_area .sub-menu > ul.dropdown, .oil_nav_area .sub-menu .linked {
  text-align: center;
}


@media ( min-width: 576px ) {
  .mobile-logo,
  .desktop_logo {
    width: auto;
  }
  .oil_nav_area {
    height: 143px;
  }
}
@media screen and (max-width: 991px) {
  .oil_nav_area {
    overflow-y: auto;
  }
  .oil_nav_area .nav-item {
    max-width: 220px;
    width: 100%;
    text-align: center;
  }
}
@media ( min-width: 992px ) {
  .oil_nav_area {
    height: 167px;
    background-color: transparent;
    position: absolute;
  }
  .header_oil_navbar .navbar_home_oil {
    padding: 1.75rem 0.9375rem 1.75rem;
  }
  .navbar_home_oil .navbar-nav {
    align-items: baseline;
  }
  .mobile-logo {
    display: none;
  }
  .desktop_logo {
    display: block;
  }
  .empty_box {
    display: block;
    max-width: 110px;
    width: 100%;
  }
  .desktop_navbar {
    align-items: center;
    justify-content: space-between;
  }
  .navbar_home_oil .nav-link {
    /* padding: 0rem 0.7rem!important; */
  }
  .navbar_home_oil .nav-item:first-child .nav-link {
    /* padding-left: 0rem!important; */
  }
  .navbar_home_oil .nav-item:last-child .nav-link {
    padding-right: 0rem!important;
  }
  .cart_item img {
    position: absolute;
    top: -41px;
  }
  .cart_item .cart_count {
    top: -51px;
    left: auto;
    right: -8px;
  }
  .cart_item .cart_link {
    position: relative;
    z-index: 1;
  }
  .cart_item::before {
    content: '';
    position: absolute;
    width: 57px;
    height: 104px;
    background: #25304F;
    z-index: 0;
    right: -9px;
    bottom: -2px;
  }
  .oil_nav_area .sub-menu {
    position: relative;
  }
  .oil_nav_area .sub-menu .linked {
    position: inherit;
    padding-right: .8rem;
  }
  .oil_nav_area .sub-menu .linked span {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  .oil_nav_area .sub-menu > ul {
    position: absolute;
    width: 270px;
    text-align: left;
    border-radius: 6px;
    background: #343435;
    padding: 2px;
    display: none;
    transition: all 0.5s ease;
  }
  .oil_nav_area .nav-item {
    border-top: 0;
  }
  .sub-menu > ul > li {
    border-top: 1px solid #9f9fa2;
  }
  .oil_nav_area .sub-menu > ul > li > a.nav-link {
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.4;
    margin-left: 0;
    transition: all 0.5s ease;
  }
  .sub-menu > ul > li:first-child {
    border-top: 0;
  }
  .sub-menu > ul > li > a.nav-link:hover {
    color: var(--white);
    background: var(--black);
  }
  .oil_nav_area .sub-menu:hover > ul.nav-item {
    display: block;
  }
}
@media ( min-width: 1080px ) {
  .navbar_home_oil .nav-link {
    /* padding: 0.8rem 1.1875rem!important; */
  }
  .cart_item::before {
    width: 67px;
  }
}
@media ( min-width: 1200px ) {
  .navbar_home_oil .nav-link {
    /* padding: 0.8rem 1.5rem!important; */
  }
}
@media ( min-width: 1366px ) {
  .navbar_home_oil .nav-link {
    /* padding: 0.8rem 2.1875rem !important; */
  }
}
@media ( min-width: 1680px ) {
  .header_oil_navbar .navbar_home_oil {
    max-width: 1542px;
    width: 100%;
    margin: 0 auto;
  }
}



/* -- top-footer -- */
.oil_top_footer--wrapper {
  padding: 4.875rem 0rem 3.75rem;
}
.oil_top_footer--wrapper .foo_cols {
  margin-bottom: 20px;
}
.oil_top_footer--wrapper .foo_cols:last-child {
  margin-bottom: 0px;
}
.oil_footer_logo--wrapper {
  width: 180px;
}
.oil_list--tems {
  column-count: 2;
  column-gap: 0;
}
.oil_list--tems .list_items {
  padding-left: 20px;
}
.oil_list--tems .list_items a {
  font-family: var(--roboto);
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 212%;
  color: #5A5866;
  position: relative;
  transition: all ease 0.4s;
}
.oil_list--tems .list_items a:hover {
  color: var(--white);
}
.oil_list--tems .list_items a::before {
  content: '';
  position: absolute;
  background: url('../../images/svg/double-arrow.svg') no-repeat center;
  width: 9px;
  height: 8px;
  top: 4px;
  left: -20px;
}
.address_locator--wrapper .address_locator {
  display: flex;
  padding-bottom: 0.9rem;
}
.address_locator--wrapper .address_locator:last-child {
  padding-bottom: 0rem;
}
.address_locator .address {
  display: block;
  font-style: normal;
  font-size: 14px;
  color: #5A5866;
  padding-left: 10px;
}
.address_locator .address br {
  display: none;
}
.address_locator .img_locator {
  display: block;
  max-width: 20px;
  width: 100%;
}
@media ( min-width: 480px ) {
  .oil_list--tems {
    column-count: 3;
  }
}
@media ( min-width: 576px ) {
  .oil_footer_logo--wrapper {
    width: auto;
  }
  .address_locator .img_locator {
    width: auto;
  }
  .address_locator--wrapper {
    display: flex;
    justify-content: space-between;
  }
  .address_locator--wrapper .address_locator {
    padding-bottom: 0rem;
  }
}
@media ( min-width: 768px ) {
  .oil_top_footer--wrapper .foo_cols {
    margin-bottom: 30px;
  }
}
@media ( min-width: 992px ) {
  .oil_top_footer--wrapper .row {
    align-items: center;
  }
  .oil_top_footer--wrapper .foo_cols {
    margin-bottom: 0px;
  }
  .address_locator--wrapper {
    display: block;
  }
  .address_locator--wrapper .address_locator {
    padding-bottom: 20px;
  }
}
@media ( min-width: 1200px ) {
  .oil_top_footer--wrapper .container {
    max-width: 1266px;
  }
  .address_locator--wrapper {
    display: flex;
    justify-content: space-between;
  }
  .address_locator--wrapper .address_locator {
    padding-bottom: 0rem;
  }
  .address_locator .img_locator,
  .address_locator .img_locator img {
    max-width: 20px;
    width: 100%;
  }
}
@media ( min-width: 1680px ) {
  .oil_top_footer--wrapper .container {
    max-width: 1566px;
  }
  .address_locator .img_locator, .address_locator .img_locator img {
    max-width: 32px;
  }
  .address_locator .address {
    padding-left: 25px;
  }
  .address_locator .address br {
    display: block;
  }
}
@media ( min-width: 1920px ) {
  .oil_top_footer--wrapper .container {
    max-width: 1666px;
  }
}

/* -- bottom-footer -- */

.oil_bottom_footer--wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 2.375rem 0rem;
}
.copyright_wrapper {
  text-align: center;
  padding-top: 1.5rem;
}
.copyright_wrapper .copyright {
  display: block;
  font-family: var(--roboto);
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 152.9%;
  color: #5A5765;
}
.privacy_and_terms--wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.privacy_and_terms--wrapper .privacy_terms {
  display: block;
  font-family: var(--roboto);
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 94.9%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5A5765;
  position: relative;
  transition: all ease 0.4s;
}
.privacy_and_terms--wrapper .privacy_terms:hover {
  color: var(--white);
}
.privacy_and_terms--wrapper .privacy_terms:first-child {
  padding-right: 1rem;
  margin-right: 1rem;
}
.privacy_and_terms--wrapper .privacy_terms::after {
  position: absolute;
  content: '';
  width: 1px;
  height: 21px;
  background: rgba(255, 255, 255, 0.3);
  top: -5px;
  right: 0;
}
@media ( min-width: 360px ) {
  .privacy_and_terms--wrapper .privacy_terms {
    padding-right: 1.71875rem;
    margin-right: 1.71875rem;
  }
}
@media ( min-width: 768px ) {
  .oil_bottom_footer--wrapper .row {
    align-items: center;
  }
  .copyright_wrapper {
    text-align: left;
    padding-top: 0rem;
  }
  .privacy_and_terms--wrapper {
    justify-content: flex-end;
  }
}
@media ( min-width: 1200px ) {
  .oil_bottom_footer--wrapper .container {
    max-width: 1266px;
  }
}
@media ( min-width: 1680px ) {
  .oil_bottom_footer--wrapper .container {
    max-width: 1566px;
  }
}
@media ( min-width: 1920px ) {
  .oil_bottom_footer--wrapper .container {
    max-width: 1666px;
  }
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* ===== @import font-family ====== */

@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
:root {
  /* ======== colors ========== */
  --white: #ffffff;
  --black: #000000;
  --default-nav: #292929;
  --default-footer: #3E495A;
  --light-green: #03AD53;
  --fb-btn: #4869D4;
  --google-btn: #EB4132;
  --shade-black: #09184B;
  --blackish: #333D4E;
  /* ======== hover:colors ========== */
  --fb-btn-hover: #647ed2;
  --google-btn-hover: #ea6256;
  --green-btn-hover: #026933;
  /* ======== home-oil-colors ========== */
  --light-brown: #8D7B72;
  --dark-brown: #5D4E47;
  --text-color: #818199;
  --oil-primary-color: #E5C0AE;
  /* ======== home-meat-colors ========== */
  --meat-primary-color: #FF0000;
  /* ======== home-dairy-colors ========== */
  --dairy-primary-color: #3172EC;
  --dairy-secondary-color: #FFD203;
  /* ======== home-vegetable-colors ========== */
  --veg-primary-color: #FFBB12;
  --veg-secondary-color: #4B8904;
  --veg-btn: #486A1D;
  --veg_btn--hover: #62AF2F;
  /* ======== home-fertilizer-colors ========== */
  --fertilizer-primary-color: #BB5817;
  /* ======== home-fish-color ========== */
  --fish-primary-color: #004DD6;
  --fish-secondary-color: #FFC500;
  --fish-tertiary-color: #FF4F37;
  /* ======== home-nursery-color ========== */
  --nursery-primary-color: #6F9073;
  /* ======== home-grocery-color ========== */
  --grocery-primary-color: #FFA200;
  /* ===== font-family ====== */
  --mulish: "Mulish", sans-serif;
  --roboto: "Roboto", sans-serif;
  --montserrat: "Montserrat", sans-serif;
  --playfair: 'Playfair Display', serif;
  --josefin: 'Josefin Sans', sans-serif;
  --frank-ruhl-libre: 'Frank Ruhl Libre', serif;
  --open-sans: 'Open Sans', sans-serif;
  --oswald: 'Oswald', sans-serif;
  --lato: 'Lato', sans-serif;
}


/* ===== image-fluid ====== */

img {
  max-width: 100%;
  height: auto;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
ol {
  padding-left: 0;
}
a {
  text-decoration: none;
}
h1,h2,h3,h4,h5,p {
  margin-bottom: 0;
}


/* -- common-css -- */
a:hover {
  text-decoration: none;
}

.home_oil_makers--wrapper {
  background-color: #0E0E11;
  overflow: hidden;
}
.home_oil--bg--wrapper {
  background: url('../../images/home-oil/banner.png') no-repeat center;
  background-size: 100%;
  width: 100%;
  display: block;
}
.oil_buy--btn {
  /* font-family: var(--roboto); */
  /* font-style: normal; */
  /* font-weight: normal; */
  font-size: 12px;
  line-height: 16px;
  /* letter-spacing: 0.1em; */
  /* text-transform: uppercase; */
  color: var(--white);
  text-align: center;
  background-color: #b7844b;
  /* background: linear-gradient(90deg, #e24618 0%, #f09a2d 40.01%, #C43F0F 95.83%); */
  background-size: 300% auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 180px;
  width: 100%;
  padding: 10px;
  transition: all ease 0.8s;
  text-decoration: none;
  border-radius: 30px;
}
.oil_buy--btn:hover {
  background-position: -100% 0;
}
.oil_buy--btn img {
  padding-left: 20px;
}
.oil_buy--btn:hover {
  color: #ffffff;
}
@media ( min-width: 992px ) {
  .oil_buy--btn {
    max-width: 230px;
    font-size: 14px;
    padding: 19px;
  }
}

/* -- banner -- */

.home_oil_banner--wrapper {
  z-index: 0;
  padding: 10.1875rem 0rem 13.1875rem;
}
.home_oil_banner--wrapper .container {
  position: relative;
}
.oil_makers--banner {
  position: relative;
}
.oil_makers--banner .banner_text {
  /* font-family: var(--frank-ruhl-libre); */
  font-family: 'fs-siena', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 20px;
  color: #295135;
  display: block;
  padding-bottom: 3.8125rem;
}
.oil_makers--banner .banner_title {
  font-family: var(--montserrat);
  font-style: normal;
  font-weight: 200;
  font-size: 5rem;
  line-height: 94.9%;
  text-transform: uppercase;
  background: linear-gradient(89.62deg, #9e917c 8.18%, #ba8956 41.04%, #dcffd5 99.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  text-align: left;
}
.oil_makers--banner .since_item {
  font-family: 'fs-siena', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 20px;
  color: var(--dark-brown);
  display: block;
  float: right;
  padding-top: 1.875rem;
}
.banner_bottle--wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
}
.banner_bottle--wrapper .bottle_wrapper {
  position: relative;
  display: inline-block;
  margin-left: 0;
}
.bottle_wrapper .bottle_img {
  position: relative;
  z-index: 2;
  width: 260px;
}
.bottle_wrapper .oil_leaf {
  position: absolute;
  right: -1rem;
  top: 2.8rem;
  width: 180px;
}
.banner_bottle--wrapper .oil_buy--btn {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  left: 0;
  right: -7rem;
  bottom: 10rem;
  z-index: 3;
}
.oil_makers--banner .since_item {
  clear: both;
}
@media ( min-width: 440px ) {
  .oil_makers--banner .banner_title {
    font-size: 9.375rem;
  }
  .banner_bottle--wrapper .oil_buy--btn {
    right: -13rem;
    bottom: 13rem;
  }
  .bottle_wrapper .bottle_img {
    width: 325px;
  }
  .bottle_wrapper .oil_leaf {
    width: 220px;
  }
  .home_oil_banner--wrapper {
    padding: 10.1875rem 0rem 16.188rem;
  }
}
@media ( min-width: 576px ) {
  .banner_bottle--wrapper .oil_buy--btn {
    right: -13rem;
    bottom: 12rem;
  }
  .home_oil_banner--wrapper {
    padding: 10.1875rem 0rem 18.188rem;
  }
}
@media ( min-width: 768px ) {
  .oil_makers--banner .banner_text {
    font-size: 30px;
    line-height: 30px;
    padding-bottom: 7.8125rem;
  }
  .oil_makers--banner .since_item {
    font-size: 30px;
    line-height: 30px;
  }
  .oil_makers--banner .banner_title {
    font-size: 15.625rem;
  }
  .home_oil_banner--wrapper {
    padding: 16.4375rem 0rem 32.1875rem;
  }
  .banner_bottle--wrapper {
    top: -90px;
  }
  .banner_bottle--wrapper .oil_buy--btn {
    bottom: 13rem;
  }
  .bottle_wrapper .bottle_img {
    width: 100%;
  }
  .bottle_wrapper .oil_leaf {
    width: 380px;
    right: -0.6rem;
    top: 5.8rem;
  }
  .know_more--btn {
    margin-top: 4.9375rem;
  }
}
@media ( min-width: 992px ) {
  .home_oil_banner--wrapper .container::before {
    content: '';
    position: absolute;
    background: url('../imgs/zeytin_banner2.png') no-repeat center;
    background-size: 100%;
    display: block;
    max-width: 816px;
    height: 1266px;
    width: 100%;
    margin: 0 auto;
    right: -6rem;
    top: -18.9375rem;
  }
  .oil_makers--banner .banner_title {
    font-size: 20.9375rem;
  }
  .banner_bottle--wrapper .oil_buy--btn {
    right: -26rem;
  }
  .home_oil_banner--wrapper {
    padding: 16.4375rem 0rem 28.188rem;
  }
}
@media ( min-width: 1200px ) {
  .home_oil_banner--wrapper .container {
    max-width: 1207px;
  }
  .oil_makers--banner .banner_text {
    padding-left: 5.375rem;
  }
  .oil_makers--banner .banner_title {
    font-size: 13.125rem;
  }
  .home_oil_banner--wrapper .container::before {
    background-size: 90%;
    right: 0;
  }
  .home_oil_banner--wrapper {
    padding: 16.4375rem 0rem 22.188rem;
  }
}
@media (min-width: 1300px) {
  .home_oil_banner--wrapper {
    padding: 16.4375rem 0rem 25.188rem;
  }
}
@media (min-width: 1500px) {
  .bottle_wrapper .oil_leaf {
    width: auto;
    right: -5.6rem;
    top: 6.8rem;
  }
  .home_oil_banner--wrapper .container::before {
    background-size: 95%;
  }
}
@media (min-width: 1600px) {
  .home_oil_banner--wrapper {
    padding: 16.4375rem 0rem 28.188rem;
  }
}
@media ( min-width: 1680px ) {
  .home_oil_banner--wrapper .container {
    max-width: 1307px;
  }
}

/* -- classic-oil -- */

.classic_oil_main--wrapper,
.classic_oil_inner--wrapper {
  position: relative;
}
.classic_oil_main--wrapper .container-fluid {
  position: relative;
  z-index: 1;
}
.classic_oil--wrapper {
  max-width: 540px;
  width: 100%;
  background: linear-gradient(170.21deg, rgb(14 14 17) 0%, #1e1e1e 47.77%);
  margin: 0 auto;
  position: relative;
  padding: 3.875rem 2.125rem 3.625rem 1.813rem;
}

/* Tablet ekranlar için */
@media screen and (max-width: 992px) {
  .classic_oil--wrapper {
    margin-top:-150px; 
  }
}

/* Orta boy mobil ekranlar için */
@media screen and (max-width: 768px) {
  .classic_oil--wrapper {
    margin-top:-120px;
  }
}

/* Küçük mobil ekranlar için */
@media screen and (max-width: 576px) {
  .classic_oil--wrapper {
    margin-top:-100px;
  }
}
.classic_oil--title {
  font-family: var(--montserrat);
  font-style: normal;
  font-weight: 200;
  font-size: 55px;
  line-height: 94.9%;
  /* text-transform: uppercase; */
  color: #ffffff;
  padding-bottom: 1.6875rem;
}
.classic_oil--title .oil_text {
  color: #b68150;
}
.classic_oil--wrapper p {
  font-family: var(--montserrat);
  font-style: normal;
  font-weight: normal;
  margin: 0 0 100px 0;
  font-size: 14px;
  line-height: 22px;
  color: #818199;
}
.know_more--btn {
  font-family: var(--montserrat);
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 94.9%;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #C7A798;
  display: block;
  border: 1px solid #5A5866;
  padding: 13px;
  max-width: 171px;
  width: 100%;
  margin-top: 2.9375rem;
  text-align: right;
  position: relative;
  overflow: hidden;
  transition: all ease 0.4s;
}
.know_more--btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #FF6B38 0%, #CA5A33 40.01%, #C43F0F 95.83%);
  top: 0;
  left: -100%;
  transition: all ease 0.4s;
}
.know_more--btn:hover {
  color: var(--white);
}
.know_more--btn:hover::before {
  left: 0;
}
.know_more--btn .know_more {
  display: block;
  position: relative;
}
.since_wrapper {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
}
.since_wrapper .side_text {
  font-family: var(--montserrat);
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.8em;
  text-transform: uppercase;
  color: #C7A798;
  opacity: 0.3;
  display: none;
  position: absolute;
  width: 100%;
  bottom: 25rem;
  left: -18rem;
  transform: rotate(-90deg);
}
.classic_grapes--wrapper,
.classic_splash--wrapper {
  max-width: 848px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
}
.classic_grapes--wrapper {
  bottom: -10rem;
  right: -10rem;
}
.background_bottle--wrapper {
  position: absolute;
  width: 100%;
  top: 10rem;
  right: -9rem;
  z-index: 0;
}
@media (min-width: 440px) {
  .classic_oil--title {
    font-size: 65px;
  }
}
@media ( min-width: 576px ) {
  .classic_oil--wrapper {
    padding: 4.875rem 4.125rem 15.625rem 3.8125rem;
  }
  .classic_oil--title {
    font-size: 85px;
  }
  .since_wrapper .side_text {
    display: block;
    padding-bottom: 2.688rem;
  }
  .classic_grapes--wrapper {
    bottom: -11rem;
    right: -16rem;
  }
}
@media ( min-width: 768px ) {
  .since_wrapper .side_text {
    bottom: 30rem;
  }
  .classic_grapes--wrapper {
    bottom: -4rem;
    right: -13.5rem;
  }
}
@media ( min-width: 992px ) {
  .since_wrapper .side_text {
    left: -19rem;
    bottom: 38rem;
  }
  .classic_grapes--wrapper {
    bottom: -4rem;
    right: -6rem;
  }
}
@media ( min-width: 1200px ) {
  .classic_splash--wrapper {
    left: -3rem;
    top: 1rem;
    z-index: 1;
  }
  .since_wrapper .side_text {
    bottom: 35.9rem;
    left: -18rem;
  }
  .classic_grapes--wrapper {
    bottom: -3rem;
    right: 0rem;
  }
  .classic_oil--title {
    padding-bottom: 4.688rem;
  }
  .know_more--btn {
    margin-top: 4.938rem;
  }
  .background_bottle--wrapper {
    right: -10rem;
  }
}
@media (min-width: 1300px) {
  .classic_oil--title {
    font-size: 95px;
  }
  .since_wrapper .side_text {
    bottom: 40.9rem;
  }
  .classic_splash--wrapper {
    left: -1rem;
    top: -4rem;
  }
  .classic_grapes--wrapper {
    right: 5rem;
  }
  .background_bottle--wrapper {
    right: -9rem;
  }
}
@media ( min-width: 1500px ) {
  .classic_splash--wrapper {
    left: 5rem;
  }
  .since_wrapper .side_text {
    bottom: 46.9rem;
  }
  .classic_grapes--wrapper {
    right: 10rem;
  }
}
@media ( min-width: 1600px ) {
  .classic_splash--wrapper {
    left: 7rem;
    top: 3rem;
  }
  .since_wrapper .side_text {
    bottom: 49rem;
  }
  .classic_grapes--wrapper {
    right: 12.5rem;
  }
  .classic_oil--title {
    font-size: 120px;
    line-height: 113.88%;
  }
  .background_bottle--wrapper {
    right: -8rem;
  }
}
@media (min-width: 1700px) {
  .since_wrapper .side_text {
    bottom: 55rem;
  }
  .classic_splash--wrapper {
    left: 13rem;
  }
  .classic_grapes--wrapper {
    right: 15.5rem;
  }
}
@media ( min-width: 1800px ) {
  .classic_oil_main--wrapper {
    /* padding-top: 8.6875rem; */
  }
  .classic_splash--wrapper {
    left: 48rem;
  }
  .since_wrapper .side_text {
    bottom: 94rem;
  }
  .classic_grapes--wrapper {
    right: 22.5rem;
  }
  .background_bottle--wrapper {
    top: 6.9rem;
    right: -79.9rem;
  }
}
/* -- view-collections -- */
.view_collection--wrapper {
  padding: 5.375rem 0rem 5.563rem;
}
.view_collection--wrapper .oil_collection--title {
  font-family: var(--montserrat);
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 135%;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E5C0AE;
  padding-bottom: 8.25rem;
}
.oil_collection--wrapper {
  position: relative;
  max-width: 456px;
  width: 100%;
  margin: 0 auto;
}
.view_collection--wrapper .collection_cols {
  margin-bottom: 6.375rem;
}
.view_collection--wrapper .collection_cols:last-child {
  margin-bottom: 0rem;
}
.oil_collection--wrapper::before {
  position: absolute;
  content: '';
  max-width: 372px;
  width: 100%;
  height: auto;
  border-radius: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #040404;
  z-index: 0;
  box-shadow: none;
  transition: all ease 0.4s;
}
.oil_collection--wrapper:hover::before {
  box-shadow: 0 0 15px 0 rgba(255, 107, 91, 0.6);
}
.oil_collection--wrapper .oil_name--wrapper {
  font-family: var(--montserrat);
  font-style: normal;
  font-weight: 200;
  font-size: 58px;
  line-height: 90%;
  text-transform: uppercase;
  background: linear-gradient(89.74deg, #7E7B71 -5.61%, rgba(126, 123, 113, 0) 99.7%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}
.oil_img--wrapper {
  position: absolute;
  width: 100%;
  z-index: 2;
  top: -10rem;
  left: 2rem;
}
.oil_img--wrapper img {
  max-width: 100%;
  width: 100%;
}
.oil_details_main--wrapper {
  display: flex;
  position: relative;
  z-index: 3;
}
.oil_details--wrapper {
  max-width: 220px;
  width: 100%;
}
.oil_price--wrapper {
  width: 68px;
  height: 68px;
  background: var(--black);
  border-radius: 50%;
  position: relative;
  margin-bottom: 14px;
}
.oil_price--wrapper .oil_price {
  display: block;
  font-family: var(--open-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 212%;
  color: var(--white);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.oil_detail--name {
  font-family: var(--montserrat);
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 212%;
  color: var(--white);
}
.oil_detail--name a {
  color: var(--white);
  transition: all 0.5s ease;
}
.oil_detail--name a:hover {
  color: var(--light-brown);
}
.oil_details--wrapper p {
  font-family: var(--montserrat);
  font-style: italic;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #CCCCCB;
  padding-bottom: 24px;
}
.btn_oil {
  max-width: 120px!important;
  padding: 12px!important;
}
@media ( min-width: 320px ) {
  .oil_img--wrapper {
    width: 440px;
    top: -10rem;
    left: -4rem;
  }
  .oil_details--wrapper {
    max-width: 133px;
  }
  .oil_details_main--wrapper {
    left: 10rem;
    top: 0rem;
  }
  .view_collection--wrapper .collection_cols:last-child .oil_img--wrapper {
    top: -8rem;
    left: -6rem;
  }
}
@media (min-width: 440px) {
  .oil_img--wrapper {
    top: -9rem;
    left: -1rem;
  }
  .oil_collection--wrapper .oil_name--wrapper {
    top: 6rem;
  }
  .oil_details--wrapper {
    max-width: 190px;
  }
  .oil_details_main--wrapper {
    left: 14rem;
  }
}
@media ( min-width: 576px ) {
  .oil_collection--wrapper .oil_name--wrapper {
    top: 6rem;
  }
  .oil_img--wrapper {
    top: -10rem;
    left: 0rem;
  }
  .oil_details_main--wrapper {
    top: 1rem;
  }
  .view_collection--wrapper .collection_cols:last-child .oil_img--wrapper {
    top: -7rem;
    left: -2rem;
  }
  .view_collection--wrapper .collection_cols {
    margin-bottom: 9.375rem;
  }
}
@media ( min-width: 768px ) {
  .view_collection--wrapper {
    padding: 9.375rem 0rem 0.5625rem;
  }
  .oil_collection--wrapper .oil_name--wrapper {
    display: none;
  }
  .oil_img--wrapper {
    width: 225px;
    top: -8rem;
  }
  .oil_collection--wrapper {
    max-width: 100%;
  }
  .oil_details_main--wrapper {
    top: auto;
    left: auto;
    text-align: center;
  }
  .btn_oil {
    margin: 0 auto;
  }
  .oil_detail--name {
    margin-top: 70px;
  }
  .oil_price--wrapper {
    margin-left: 20px;
  }
  .view_collection--wrapper .collection_cols:last-child .oil_img--wrapper {
    left: -1rem;
  }
  .view_collection--wrapper .collection_cols {
    margin-bottom: 4.375rem;
  }
}
@media ( min-width: 992px ) {
  .view_collection--wrapper {
    padding: 7.375rem 0rem 1.563rem;
  }
}
@media ( min-width: 1200px ) {
  .view_collection--wrapper {
    padding: 11.375rem 0rem 8.9rem;
  }
  .view_collection--wrapper .container {
    max-width: 1232px;
  }
  .oil_collection--title {
    margin-left: 14rem;
  }
  .oil_details--wrapper {
    max-width: 155px;
  }
  .oil_collection--wrapper::before {
    height: 372px;
  }
  .oil_img--wrapper {
    width: 479px;
    top: -10rem;
    left: -1.5rem;
  }
  .view_collection--wrapper .collection_cols:last-child .oil_img--wrapper {
    left: -3rem;
    top: -8rem;
  }
  .oil_details_main--wrapper {
    left: 14rem;
    top: 3rem;
    text-align: left;
  }
  .oil_collection--wrapper .oil_name--wrapper {
    display: block;
    top: 8rem;
  }
  .oil_detail--name {
    margin-top: 15px;
  }
  .btn_oil {
    margin: 0;
  }
  .oil_price--wrapper {
    margin-left: 0;
  }
}
@media (min-width: 1600px) {
  .view_collection--wrapper {
    padding: 16.375rem 0rem 14.9rem;
  }
  .oil_collection--wrapper .oil_name--wrapper {
    left: -20px;
  }
}
@media ( min-width: 1680px ) {
  .view_collection--wrapper .container {
    max-width: 1532px;
  }
  .oil_details--wrapper {
    max-width: 235px;
  }
  .oil_detail--name,
  .oil_details_main--wrapper p {
    padding-left: 15px;
  }
  .oil_details_main--wrapper {
    left: 0rem;
  }
}
@media ( min-width: 1700px ) {
  .classic_grapes--wrapper {
    right: 29rem;
    bottom: -11rem;
  }
  .oil_details_main--wrapper {
    left: 14rem;
    top: 2rem;
  }
  .oil_collection--wrapper .oil_name--wrapper {
    left: 17px;
  }
  .btn_oil {
    margin-left: 7px;
  }
}
@media (min-width: 1900px) {
  .oil_collection--wrapper .oil_name--wrapper {
    left: 21px;
  }
  .oil_details--wrapper {
    max-width: 270px;
  }
  .oil_details_main--wrapper {
    left: 14rem;
    top: 2rem;
  }
  .btn_oil {
    margin-left: 10px;
  }
}

/* -- marketing-banner -- */

.marketing_wrapper {
  position: relative;
  background: #1e1e1e;
  z-index: 1;
  padding: 2.8125rem 0rem;
  margin-top: 60px;
}
.facilitate_marketing--wrapper {
  position: relative;
}
.marketing_wrapper .facilitate_marketing--text {
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 130.9%;
  text-align: left;
  color: var(--white);
  display: block;
  font-family: 'fs-siena', sans-serif;
}
.marketing_wrapper .facilitate_marketing--text b {
  font-weight: 700 !important ;
}
.facilitate_marketing--wrapper img {
  position: absolute;
  width: auto;
  right: -6rem;
  bottom: 3rem;
  width: 190px;
}
@media (min-width: 440px) {
  .facilitate_marketing--wrapper img {
    bottom: 1rem;
  }
}
@media ( min-width: 768px ) {
  .facilitate_marketing--wrapper img {
    bottom: -1rem;
  }
  .marketing_wrapper .facilitate_marketing--text {
    font-size: 20px;
  }
}
@media ( min-width: 1200px ) {
  .marketing_wrapper .container {
    max-width: 1266px;
  }
  .facilitate_marketing--wrapper img {
    width: auto;
    bottom: -4rem;
  }
  .marketing_wrapper {
    padding: 3.813rem 0rem;
  }
}
@media (min-width: 1600px) {
  .marketing_wrapper .facilitate_marketing--text {
    font-size: 20px;
  }
}
@media ( min-width: 1680px ) {
  .marketing_wrapper .container {
    max-width: 1566px;
  }
  .facilitate_marketing--wrapper img {
    right: -2rem;
  }
}
@media ( min-width: 1920px ) {
  .marketing_wrapper .container {
    max-width: 1666px;
  }
  .facilitate_marketing--wrapper img {
    bottom: -3rem;
  }
}

.urunler-card-ici{
  position: absolute;
  bottom: -120px;
  left: -121px;
  width: 783px;
  max-width: 158%;
  top: 56%;
}

.product-card {
  position: relative;
  /* width: 200px; */
  height: 391px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transition: transform 0.3s ease;
}

.green-card {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 115%;

  background: linear-gradient(170.21deg, rgb(14 14 17) 0%, #1e1e1e 47.77%);
  /* border-radius: 10px; */
  transition: all 0.3s ease;
  z-index: 0;
}

.product-image {
  position: absolute;
  bottom: -60px;
  width: 100%;
  transition: transform 0.3s ease;
  z-index: 2;
}

.splash {
  position: absolute;
  bottom: -7px;
  width: 145%;
  height: auto;
  transform: scale(0);
  transition: transform 0.3s ease;
}


.product-card:hover .product-image {
  transform: scale(1.1);
}


.product-card:hover .green-card {
  transform: scale(1.1);
  background: linear-gradient(170.21deg, #295135 0%, #295135 47.77%);
}

.product-card:hover .splash {
  opacity: 1;
  transform: scale(1.2);
}


.product-card:hover .white-line {
  transform: scale(1.2);
}
.white-line{
  border: 1px solid #ffffff2e;
  width: 80%;
  height: 59%;
  margin-bottom: 10%;
  z-index: 1;
  transition: transform 0.3s ease;
}

.product-card:hover .product-liter {
  bottom: -45px;
}
.product-liter{
  font-style: normal;
  font-size: 20px;
  color: #ffffff;
  z-index: 1;
  position: absolute;
  top: -100px;
  width: 100%;
  text-align: center;
  left: 0;
  transition: all 0.3s ease;
  padding-top: 20%;
}

/* Orta boy mobil ekranlar için */
@media screen and (max-width: 768px) {
  .product-liter{
      top: -166px;
  }
}

/* Küçük mobil ekranlar için */
@media screen and (max-width: 576px) {
  .product-liter{
    top: -100px;
  }
}

/* Logo link alanı için temel stiller */
.logo {
  display: inline-block;
  text-decoration: none;
}

 
.video-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-bottom: 20px; /* Videolar arasında boşluk */
 }
 
 .responsive-video {
  width: 100%;
  height: 500px;
  object-fit: cover; /* Video'nun ekranı kaplamasını sağlar */
 }
 
 /* Mobil cihazlar için (768px ve daha küçük ekranlar) */
 @media screen and (max-width: 768px) {
   .video-container {
     width: 100%;
     height: 300px; /* Mobil cihazlarda yüksekliği azalt */
   }
   
   .responsive-video{
     width: 100%;
     height: 300px;
     object-fit: cover;
   }
 }
 
 /* Mevcut stil yapısını koruyarak */
 .view_collection--wrapper {
   padding: 50px 0;
 }
 
 .product-card {
   position: relative;
   text-align: center;
   margin-bottom: 30px;
   transition: all 0.3s ease;
 }
 
 .product-image {
   max-width: 100%;
   height: auto;
 }
 
 /* Tablet ve Mobil için Media Query */
 @media screen and (max-width: 768px) {
   .view_collection--wrapper .col-md-4 {
       margin-top: 130px;
       margin-bottom: 40px; /* Mobilde ürünler arası dikey boşluk */
   }
   
   .product-card {
       max-width: 80%; /* Mobilde ürün kartının genişliğini sınırla */
       margin: 10px auto 30px; /* Ortalama ve alt boşluk */
   }
   
   /* Son ürün kartının altındaki boşluğu kaldır */
   .view_collection--wrapper .col-md-4:last-child .product-card {
       margin-bottom: 0;
   }
 }
 
 /* Küçük mobil cihazlar için ek düzenleme */
 @media screen and (max-width: 576px) {
   .view_collection--wrapper .col-md-4 {
       margin-bottom: 30px; /* Daha küçük ekranlarda boşluğu azalt */
   }
   
   .product-card {
       max-width: 90%; /* Daha küçük ekranlarda biraz daha geniş */
   }
 }
 
 /* Büyük ekranlar için mevcut görünümü koru */
 @media screen and (min-width: 769px) {
   .product-card {
       margin-bottom: 0; /* Desktop görünümde alt boşluğu sıfırla */
   }
 }
 
 /* Tablet ekranlar için */
 @media screen and (max-width: 992px) {
   .col-lg-3 img {
       width: 200px; /* %20 küçültme */
   }
 }
 
 /* Orta boy mobil ekranlar için */
 @media screen and (max-width: 768px) {
   .col-lg-3 img {
       width: 180px; /* %28 küçültme */
   }
 }
 
 /* Küçük mobil ekranlar için */
 @media screen and (max-width: 576px) {
   .col-lg-3 img {
       width: 150px; /* %40 küçültme */
   }
 }
 
 /* Header logo için varsayılan stil */
 .logo img {
   width: 250px;
   height: auto;
   transition: all 0.3s ease; /* Boyut değişimini yumuşatır */
 }
 
 /* Tablet ekranlar için */
 @media screen and (max-width: 992px) {
   .logo img {
       width: 200px;
   }
 }
 
 /* Orta boy mobil ekranlar için */
 @media screen and (max-width: 768px) {
   .logo img {
       width: 180px;
   }
 }
 
 /* Küçük mobil ekranlar için */
 @media screen and (max-width: 576px) {
   .logo img {
       width: 150px;
   }
 }
 
 /* Logo link alanı için temel stiller */
 .logo {
   display: inline-block;
   text-decoration: none;
 }

 .facilitate_marketing--wrapper {
  position: relative;
}

.facilitate_marketing--wrapper img {
  position: absolute;
  width: auto;
  height: auto;
  transition: all 0.3s ease;
}

/* Masaüstü görünümde mevcut pozisyonunu koru */
@media screen and (min-width: 993px) {
  .facilitate_marketing--wrapper img {
      /* Varsayılan pozisyon değerleri */
  }
}

/* Tablet ve mobil görünüm için yeni pozisyon */
@media screen and (max-width: 992px) {
  .facilitate_marketing--wrapper {
      position: relative;
      width: 100%;
      height: 0;
  }
  
  .facilitate_marketing--wrapper img {
      position: absolute;
      top: -100px; /* Footer'ın üst çizgisine göre ayarlayın */
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
      max-width: 130px; /* Görsel boyutunu kontrol etmek için */
  }
}

/* Küçük mobil ekranlar için ince ayar */
@media screen and (max-width: 576px) {
  .facilitate_marketing--wrapper img {
      top: -100px;
      max-width: 130px; /* Daha küçük ekranlarda biraz daha küçült */
  }
}
