/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 2.5rem;

  /*========== Colors ==========*/
  --first-color: hsl(48.75, 20.17%, 46.67%); 
  --second-color: hsl(12.6, 56.82%, 34.51%); 
  --title-color: hsl(159.47, 31.67%, 23.53%);
  --text-color: hsl(183, 21.74%, 18.04%); 
  --second-text-color: hsl(22.83, 36.51%, 50.59%);
  
  --body-color: hsl(220, 8%, 99%);
  --container-color: hsl(220, 8%, 96%);
  --border-color: hsl(33.91, 21.1%, 78.63%);
  --search-color: hsl(34.93, 45.58%, 71.18%);

  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(220, 8%, 6%);
  
  --opacity-color-30: hsla(0, 0%, 90%, .3);
  --opacity-color-20: hsla(0, 0%, 90%, .2);
  --glass-bg: hsla(220, 8%, 100%, 0.7);
  
  --first-color-hover: hsl(48.75, 20.17%, 36%); 
  --second-color-hover: hsl(12.6, 56.82%, 25%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Roboto", sans-serif;
  --second-font: "Dancing Script", cursive;
  --third-font: "Roboto", sans-serif;
  --biggest-font-size: 2rem;
  --big-font-size: 1.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 4rem;
    --big-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

input,
button,
body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--white-color);
  color: var(--black-color);
  transition: background-color .4s;
}

body.details{
  padding-top: 150px;
}

input,
button {
  outline: none;
  border: none;
}

h1, h2, h3, h4 {
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}


/*=============== REUSABLE CSS CLASSES ===============*/
.mycontainer {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 1rem;
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
  margin-top: 3.5rem;
  position: relative;
  padding-top: 4rem;
}

.section__header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; 
  height: 1px; 
  background: linear-gradient(to right, 
    transparent, 
    var(--border-color), 
    transparent
  );
}

section__title {
  font-size: var(--h2-font-size);
  color: var(--title-color); /* Koyu orman yeşili */
  font-weight: var(--font-semi-bold);
}

.main {
  overflow: hidden;
}

/* BREADCRUMBS */
.breadcrumb {
  margin-top: 30px !important; /* 140px header boyunu jilet gibi kurtarır */
}

.breadcrumb a{
  color: var(--second-text-color);
  opacity: .9;
  pointer-events: auto !important;
  position: relative;
  z-index: 5;
}

.breadcrumb .breadcrumb-item {
  color: var(--first-color);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--first-color);
}

/*=============== HEADER & NAV ===============*/
.header{
  position: fixed;
  width: 100%;
  height: 140px;
  top: 0;
  right: 0;
  background-color: transparent;
  z-index: var(--z-fixed);
  transition: background-color .4s, box-shadow .4s;

  flex: 0;
}


.top-bar{
  padding-top: 20px;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);

}

.nav__center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: var(--z-tooltip);
  pointer-events: none; 
}

.nav__left {
  flex: 0 0 auto;

  z-index: var(--z-fixed);

  min-width: 40px;
}

.nav__right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;

  z-index: var(--z-fixed);

  min-width: 120px; 
  justify-content: flex-end;
}

.nav__logo{
  pointer-events: auto; 

  color: var(--text-color);
  font-weight: var(--font-semi-bold);
  transition: color .4s;
  text-align: center;
  line-height: 1.2;
}

.nav__toggle{
  position: fixed;
  left: 1.5rem;
  top: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
  transition: color .4s;
  z-index: var(--z-fixed);
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0.5rem;
}

.nav__close{
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--title-color);
  transition: color .4s;
}

.nav__theme,
.nav__search,
.nav__login,
.nav__cart{
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
  transition: color .4s;
}

.nav__buttons{
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__buttons i {
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-color);
  transition: color .4s;
}

.nav__menu {
  position: fixed;
  top: 0;
  left: -100%;
  background-color: color-mix(in srgb, var(--white-color) 50%, transparent); 
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  width: 300px;
  height: 100%;
  padding: 7rem 2rem 2rem;
  transition: left .4s ease;
  z-index: var(--z-modal);
  overflow-y: auto;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.nav__menu::-webkit-scrollbar{
  width: .4rem;
}

.nav__menu::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: .5rem;
}

.show-menu {
  left: 0;
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 !important; 
  margin: 0 !important;
  width: 100%;
  align-items: center;
}

.nav__link {
  color: var(--text-color); 
  font-weight: var(--font-semi-bold);
  font-size: var(--h3-font-size);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.nav__link::after {
  content: '';
  width: 0;
  height: 2px;
  background-color: var(--text-color);
  position: absolute;
  left: 0;
  bottom: -.5rem;
  transition: width .4s;
}

.nav__link:hover::after {
  width: 60%;
}

.nav__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: block;
  font-size: 2rem;
  background: transparent;
  border: none;
  padding: 0.5rem;
  color: var(--text-color); 
}

.nav__close:hover {
  color: var(--title-color);
  transition: transform 0.3s;
}

.nav__menu .nav__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2); 
}

.nav__menu .nav__buttons i {
  font-size: 1.5rem;
  transition: all 0.3s;
  color: var(--text-color); 
}

.nav__menu .nav__buttons i:hover {
  color: var(--text-color);
  transform: translateY(-2px);
}

.bg-header{
  background-color: var(--body-color);
  box-shadow: 0 8px 16px hsla(0, 0%, 0%, .1);
}

.bg-header :is(.nav__logo, .nav__toggle, .nav__theme, .nav__search, .nav__login, .nav__cart){
  color: var(--title-color);
}

.bg-header .nav__logo img{
  filter: invert(100%);
}

.nav__search-form {
  display: none; 
}

.nav__search-form .search__input {
  padding-block: .5rem;
  background-color: var(--container-color);
  color: var(--text-color);
  border: none;
  outline: none;
  width: 100%;
}

.mobile-search {
/*  display: block; */
  padding: 0.5rem 1.5rem;
}

.mobile-search .search__form {
  display: flex;
  align-items: center;
  column-gap: .5rem;
  border-bottom: 2px solid var(--text-color); 
  padding-bottom: 0.3rem;
  padding-top: .5rem;
}

.mobile-search .search__input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-color);
  padding: 0.3rem 0;
}

.mobile-search button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-search .search__icon {
  font-size: 1.2rem;
  color: var(--text-color);
}

/* RESPONSIVE */
@media screen and (min-width: 900px) {

  .nav__right {
    position: fixed;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    transition: color .4s;
    z-index: var(--z-fixed); 
  }

  .nav__search-form {     
    display: flex;
    align-items: center;
    gap: .5rem;

    border-bottom: 2px solid var(--text-color);
    padding-bottom: .3rem;

    width: 220px;
    order: 2;
  }

  .nav__search-form .search__input {
    flex: 1;
    padding: .3rem 0;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-color);
  }

  .nav__search-form button {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  }

  .nav__buttons {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    order: 1; 
  }

  .mobile-search { 
    display: none;   
  }
  
  .search__icon {
  color: var(--text-color);
  }
  
  .nav__buttons i {
    font-size: 1.4rem;
  }

  .nav__left {
    width: 60px;
  }
  
  .nav__center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav__right {
    width: auto; 
    min-width: 300px; 
  }
}

@media screen and (max-width: 767px) {
  .nav__search-form {
    display: none; 
  }

  .nav__center {
    position: static;
    transform: none;
    flex: 1;
    text-align: center;
    margin: 0 1rem;
  }
  
  .nav__logo {
    font-size: 0.9rem;
    line-height: 1.1;
  }
  
  .nav__buttons i {
    font-size: 1.2rem;
  }
  
  .nav__right {
    gap: 0.75rem;
  }
}

@media screen and (max-width: 320px) {
  .nav__logo {
    font-size: 0.8rem;
  }
  
  .nav__buttons {
    gap: 0.5rem;
  }
  
  .nav__buttons i {
    font-size: 1.1rem;
  }
}

/* ================ LOGIN MODAL =============== */
.login__title {
  font-size: var(--h2-font-size);
  text-align: center;
  color: var(--text-color);
}

.login__button {
  background: var(--text-color);
  color: var(--white-color);
  font-weight: var(--font-medium);
  padding: .75rem;
  border-radius: .5rem;
  cursor: pointer;

  border: none;
  transition: background-color 0.3s;
}

.login__button:hover {
  background: var(--title-color);
}

.login__forgot {
  color: var(--second-text-color);
}

/*=============== HOME ===============*/
.home__swiper{
  position: relative;
  z-index: var(--z-tooltip);
}

.home__article{
  position: relative;
  padding-top: 13rem;
  width: 100%;
  height: 100vh;
}

.home__img,
.home__shadow,
.home__content{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home__img{
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.home__shadow{
  background-color: hsla(0, 0%, 0%, .05);
  z-index: -1;
}

.home__data{
  text-align: center;
}

.home__subtitle{
  font-size: var(--h3-font-size);
  margin-bottom: .5rem;
  color: var(--white-color);
}

.home__title{
  font-size:var(--big-font-size);
  margin-bottom: 2.5rem;
  font-weight: var(--font-bold);

  color: var(--white-color);
}

.home__button{
  color: var(--white-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
}

.home__button i{
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform .4s;
}

.home__button:hover i{
  transform: translateX(.5rem);
}

.home__social{
  position: absolute;
  z-index: var(--z-tooltip);
  left: 1.5rem;
  bottom: 4rem;
  display: grid;
  row-gap: 1.5rem;
}

.home__social-link{
  color: var(--white-color);
  font-size: 1.5rem;
}

/* Swiper class */
.swiper{
  height: 100vh;
}

.swiper-pagination{
  width: initial;
  height: max-content;
  top: 13rem;
  left: initial;
  right: 2rem;
  font-size: var(--big-font-size);
  font-weight: var(--font-semi-bold);
  display: flex;
  column-gap: .25rem;
  align-items: center;
}

.swiper-pagination-total{
  font-size: var(--normal-font-size);
}

.swiper-button-prev::after,
.swiper-button-next::after{
  content: '';
}

.swiper-button-prev,
.swiper-button-next{
  font-size: 2rem;
  color: var(--white-color);
  width: initial;
  height: initial;
  position: initial;
  outline: none;
}

.swiper-navigation{
  position: absolute;
  z-index: var(--z-tooltip);
  height: max-content;
  bottom: 4rem;
  right: 1.5rem;
  display: flex;
  column-gap: 2.5rem;
}

.home__wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

@media screen and (max-width: 576px) {
    .home__social {
        bottom: 2.5rem;
        left: 1rem;
        row-gap: 0.8rem;
    }

    .home__social-link {
        font-size: 1.2rem;
    }

    .swiper-navigation {
        bottom: 2.5rem;
        right: 1rem;
        column-gap: 1.5rem;
    }

    .swiper-pagination {
        top: 9rem;
        right: 1rem;
        font-size: 1.1rem;
    }
}

/*=============== BUTTON ===============*/
.button{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: .5rem;
  background-color: var(--text-color);
  color: var(--white-color);
  padding: .5rem 1rem;
  font-weight: var(--font-semi-bold);
  border-radius: .5rem;
  transition: background-color .4s;
}

.button i{
  font-weight: initial;
  font-size: 1.5rem;
  transition: transform .4s;
}

.button:hover i{
  transform: translateX(.5rem);
}

.button__opa-30{
  background-color: var(--opacity-color-30);
}

.button_login{
  display: inline-block;
  background-color: var(--container-color); 
  color: var(--title-color);
  border: 1px solid var(--title-color);
  justify-content: center; 
  align-items: center;
  font-size: 1rem;
  font-weight: 400;
  padding: .375rem .75rem;
  border-radius: .25rem;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  text-decoration: none;
  
  transition: color .15s ease-in-out, 
              background-color .15s ease-in-out, 
              border-color .15s ease-in-out, 
              box-shadow .15s ease-in-out;
}

.button_login:hover{
  background-color: var(--text-color);
  color: var(--container-color);
  border-color: var(--text-color);
  box-shadow: 0 8px 24px hsla(230, 72%, 32%, .1);
}

/*=============== PRODUCTS ===============*/
.products-description{
  color: var(--text-color);
  white-space: pre-line;
}

/*=============== SERVICES ===============*/
.services__container{
  row-gap: 3rem;
}

.services__card{
  text-align: center;
}

.services__card i{
  display: block;
  font-size: 3rem;
  color: var(--second-color);
  margin-bottom: 1rem;
}

.services__title{
  font-size: var(--h3-font-size);
  color: var(--text-color);
  margin-bottom: .5rem;
}

/*=============== FOOTER ===============*/
.footer{
  background-color: var(--text-color);
  color: var(--white-color);
  /*padding-block: 4rem 2rem; */
}

.footer__logo{
  columns: var(--white-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
}

.footer__title{
  color: var(--white-color);
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
}

.footer__links{
  display: grid;
  row-gap: .75rem;
}

.footer__link{
  color: var(--white-color);
}

.footer__link:hover{
  color: var(--border-color);
}

.footer__social{
  display: flex;
  column-gap: 1rem;
}

.footer__social-link{
  color: var(--white-color);
  font-size: 1.5rem;
  transition: transform .4s;
}

.footer__social-link:hover{
  transform: translateY(-.25rem);
}

.footer__copy{
  display: block;
  margin-top: 1rem;
  color: var(--white-color);
  text-align: center;
  font-size: var(--small-font-size);
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
  width: .6rem;
  background-color: hsl(220, 6%, 80%);
}

::-webkit-scrollbar-thumb{
  background-color: hsl(220, 6%, 60%);
}

::-webkit-scrollbar-thumb:hover{
  background-color: hsl(220, 6%, 50%);
}

/*=============== SCROLL UP ===============*/
.scrollup{
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--body-color);
  box-shadow: 0 8px 16px hsla(0, 0%, 0%, .1);
  color: var(--title-color);
  display: inline-flex;
  padding: 6px;
  font-size: 1.25rem;
  border-radius: .25rem;
  z-index: var(--z-tooltip);
  transition: bottom .4s, transform .4s, background-color .4s;
}

.scrollup:hover{
  transform: translateY(-.5rem);
}

/* Show Scroll Up */
.show-scroll{
  bottom: 3rem;
}


/* gallery */
.gallery-wrap .img-big-wrap {
    width: 100%;
    height: 400px;
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    justify-content: center; 
    overflow: hidden;
    align-items: center;
}

.gallery-wrap .img-big-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-wrap .thumbs-wrap {
    text-align: center;
}

.gallery-wrap .thumbs-wrap a {
    width: 60px;
    height: 60px;
    border: 1px solid #dde2e6;
    border-radius: .4rem;
    margin: 3px;
    display: inline-block;
    overflow: hidden;
}

.gallery-wrap .thumbs-wrap img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.checked{
  color: orange;
}

.card{
  transition: 0.2s;
}

#kategoriScroll {
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    scroll-padding-left: 10px; 
}

#kategoriScroll .row {
    margin-right: 0;
    margin-left: 0;
    --bs-gutter-x: 0.75rem; 
}

.kategori-card-wrapper {
  margin-top: 15px;
    scroll-snap-align: start;
}

.shadow-hover {
    transition: transform 0.3s ease;
}
.shadow-hover:hover {
    transform: translateY(-3px);
}

#kategoriScroll::-webkit-scrollbar {
    height: 4px;
}
#kategoriScroll::-webkit-scrollbar-track {
    background: #f8f9fa;
}
#kategoriScroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.img-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.img-wrap a {
    display: block;
    width: 100%;
    height: 100%;
}

.img-wrap a img,
.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.img-wrap span {
    position: absolute;
}

.info-wrap {
    position: relative;
    padding: 0.75rem; 
}

.info-wrap .title {
    display: block;
    text-decoration: none;
    color: #51585e;
}

@media (max-width: 375px) {
    .benzer-urun-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

.favorite-icon {
    position: absolute; 
    top: 10px;
    right: 10px;
    font-size: 20px; 
    color: #ccc; 
    cursor: pointer; 
    z-index: 10;
    transition: all 0.2s ease;
}

.favorite-icon:hover {
    transform: scale(1.1);
    color: #e74c3c; 
}

.favorite-icon.active {
    color: #e74c3c;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

.favorite-icon.animate {
    animation: heartBeat 0.3s ease-in-out;
}

#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

.custom-toast {
    background: var(--container-color);
    color: var(--text-color);
    padding: 14px 24px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-toast.show {
    opacity: 1;
    transform: translateX(0);
}

/* Durum Renkleri */
.toast-success { border-left: 5px solid #00b894; }
.toast-info { border-left: 5px solid #0984e3; }
.toast-error { border-left: 5px solid #d63031; }

.custom-toast i {
    font-size: 18px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .img-wrap {
        height: 180px; 
        padding: 0.5rem;
    }
    
    .info-wrap .title {
        font-size: 0.85rem; 
    }
}

.category-slider-wrapper {
    position: relative;
    padding: 0 60px; 
}

.cat-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.cat-nav-btn i {
    font-size: 4rem; 
    color: var(--title-color);
    font-weight: 100; 
}

.cat-nav-btn.prev {
    left: 0; 
}

.cat-nav-btn.next {
    right: 0;
}

.cat-nav-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

/* MOBİL AYARI */
@media screen and (max-width: 768px) {
    .category-slider-wrapper {
        padding: 0 40px; 
    }
    .cat-nav-btn i {
        font-size: 2.5rem;
    }
    
    .cat-nav-btn.prev { left: 5px; }
    .cat-nav-btn.next { right: 5px; }
}

.pagination-wrapper {
    letter-spacing: 0.05em;
}

.custom-pagination, .custom-pagination .page-item {
    border: none;
}

.custom-pagination .page-link {
    color: var(--text-color);
    background-color: transparent;
    border: 1px solid #e5e5e5;
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 400;
    border-radius: 0px !important; 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.custom-pagination .page-link:hover {
    background-color: #f9f9f9;
    border-color: var(--title-color);
    color: var(--title-color);
}

.custom-pagination .page-item.active .page-link {
    background-color: var(--title-color);
    border-color: var(--title-color);
    color: #ffffff;
    font-weight: 500;
}

.custom-pagination .page-item.active .page-link:hover {
    background-color: var(--title-color);
    color: #ffffff;
}

.btn-minimal-all {
    background-color: transparent;
    color: var(--first-color);
    border: 1px solid var(--first-color);
    padding: 10px 22px;
    font-size: 0.8rem;
    text-transform: uppercase; 
    letter-spacing: 0.12em;    
    border-radius: 0px !important;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-minimal-all:hover, 
.btn-minimal-all.active-all {
    background-color: var(--first-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-minimal-all-cart {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    padding: 10px 22px;
    font-size: 0.8rem;
    text-transform: uppercase; 
    letter-spacing: 0.12em;    
    border-radius: 0px !important;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-minimal-all-cart:hover, 
.btn-minimal-all-cart.active-all {
    background-color: var(--text-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.custom-pagination .page-link:focus, .btn-minimal-all:focus {
    box-shadow: none;
    background-color: transparent;
}
.custom-pagination .page-item.active .page-link:focus {
    background-color: var(--title-color);
    color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--title-color);
    color: #fff;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner a {
    color: #fff;
}