@font-face {
  font-family: "Helvatica";
  src: url("../fonts/Helvetica.ttf");
}
@font-face {
  font-family: "Helvatica-Light";
  src: url("../fonts/helvetica-light-587ebe5a59211");
}

:root {
  --primary: #550039;
  --primary-light: color-mix(in srgb, var(--primary) 80%, white 20%);
  --primary-dark: color-mix(in srgb, var(--primary) 80%, black 20%);
  --primary-rgba: rgba(65, 107, 169, 0.64);
  --white: #fff;
  --black: #000;
  --font: "Bellota Text", sans-serif;
  --transition: all 0.2s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
  min-height: 100dvh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul,
ol,
li {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: 1px solid transparent;
}

input:focus {
  outline: none;
  border: 1px solid transparent;
}

/* header */
header.scrolled {
  background-color: var(--primary);
}

header .top-bar {
  padding: 4px 0;
  background-color: var(--white);
}

header .top-bar .container {
  display: flex;
  gap: 15px;
  color: var(--primary);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
}

header .top-bar .container a {
  transition: var(--transition);
}

header .top-bar .container a:hover {
  color: var(--primary-dark);
}

.logo {
  max-width: 100px;
  width: 100%;
}

header nav {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

header nav ul li a {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  transition: var(--transition);
}

header nav ul li {
  padding: 3px 10px !important;
}

header nav ul li.franchise {
  border-radius: 11px;
  border: 1px solid var(--white);
}

header nav ul li a:hover {
  color: color-mix(in hsl shorter hue, white 70%, black 30%);
}

.basket-btn {
  position: relative;
  display: inline-block;
}

.basket-count {
  position: absolute;
  top: -3px;
  right: -1px;
  width: 16px;
  height: 16px;
  border-radius: 12px;
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.close-drawer {
  display: none;
}

.drawer-overlay {
  width: 100dvw;
  height: 100dvh;
  background-color: rgba(255, 255, 255, 0.85);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.no-scroll {
  overflow: hidden;
}

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

.right-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}

.open-drawer {
  display: none;
}

@media (max-width: 992px) {
  header nav ul {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 3;
    flex-direction: column;
    background-color: var(--primary);
    height: 100dvh;
    max-width: 250px;
    width: 100%;
    transform: translateX(100%);
    transition: var(--transition);
  }

  header nav ul.active {
    transform: translateX(0);
  }

  header nav ul li a {
    font-size: 24px;
    color: var(--white) !important;
  }

  .close-drawer {
    display: block;
    position: absolute;
    top: 30px;
    right: 20px;
    color: var(--white);
    font-size: 24px;
  }

  .open-drawer {
    display: block;
    font-size: 30px;
    color: var(--white);
  }
}

/* header */

/*footer*/
.footer-btns-wrap {
  background: var(--white);
  box-shadow: 0 4px 6.7px 0 rgba(0, 0, 0, 0.13);
}

.footer-buttons {
  max-width: 1000px;
  width: 100%;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  gap: 36px;
}

.footer-buttons a {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  border-radius: 5px;
  text-align: center;
  background-color: var(--primary);
  width: 100%;
  text-transform: uppercase;
  padding: 5px 0;
  transition: var(--transition);
}

.footer-buttons a[href=""] {
  cursor: default;
  pointer-events: none;
}

.footer-buttons a:hover {
  background-color: var(--primary-dark);
}

footer {
  padding: 30px 0;
  position: relative;
}

footer .inner {
  max-width: 1330px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  font-family: "Helvetica";
}

footer .inner .center {
  display: flex;
  justify-content: space-between;
}

footer .inner .center .item {
  flex: 1;
  color: var(--primary);
}

footer .inner .center .item .title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 15px;
}

footer .inner .center .item ul li a,
footer .inner .center .item a,
footer .inner .center .item .firm-title {
  font-size: 15px;
  transition: var(--transition);
  font-weight: 400;
}

footer .inner .center .item ul li a:hover,
footer .inner .center .item a:hover,
.socials a:hover {
  color: var(--primary-light);
}

footer .inner .center .item img {
  max-width: 250px;
  width: 100%;
}

footer .inner .center .item ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer .inner .center .item .firm-title {
  padding-bottom: 22px;
}

footer .inner .center .item .contact-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer .inner .copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

footer .inner .copyright span {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--primary);
  padding: 14px 0;
}

.socials a {
  transition: var(--transition);
}

.socials i {
  font-size: 20px;
}

.footer-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30%;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  footer .inner .center {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  footer .inner .center .item {
    text-align: center;
  }
}

@media screen and (max-width: 992px) {
  .footer-btns-wrap {
    display: none;
  }
}
/*footer*/

/*home*/
.banner {
  width: 100dvw;
  height: 100dvh;
  background-image: url("../images/home-bg.png");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.banner .title {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
}

.banner .title span:nth-child(5) {
  font-weight: 700;
}

.banner-text {
  color: var(--white);
  text-align: center;
  text-shadow: 4.449px 3.559px 13.8px rgba(0, 0, 0, 0.92);
  font-family: var(--font);
  font-size: 20px;
  margin: 20px 0;
}

.banner-text span {
  font-weight: bolder;
}

.btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.siparis-btn {
  color: var(--white);
  font-family: var(--font);
  font-size: 40px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 16px;
  border: 2px solid var(--white);
  transition: var(--transition);
}

.siparis-btn:hover {
  color: var(--white);
  background-color: var(--primary-light);
}

.siparis-icon {
  position: absolute;
  bottom: -35px;
  animation: btnTilt 2s ease 0s infinite normal forwards;
  animation-delay: 1s;
  animation-iteration-count: infinite;
}

.cig-kofte-img {
  animation: floatCigkofte 3s ease-in-out infinite;
}

@keyframes btnTilt {
  0%,
  100% {
    transform: rotate(0deg);
    transform-origin: 50% 50%;
  }

  10% {
    transform: rotate(8deg);
  }

  20%,
  40%,
  60% {
    transform: rotate(-10deg);
  }

  30%,
  50%,
  70% {
    transform: rotate(10deg);
  }

  80% {
    transform: rotate(-8deg);
  }

  90% {
    transform: rotate(8deg);
  }
}

@keyframes floatCigkofte {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.modal-urun-adi {
  font-size: 40px !important;
  color: var(--primary);
  text-align: center;
  margin: 0;
}

.modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.modal-close-btn {
  font-size: 20px;
  width: 30px;
  height: 30px;
  color: var(--white);
  border-radius: 50%;
  background-color: var(--primary);
  align-items: center;
  justify-content: center;
  display: flex;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.modal-content {
  border-radius: 28px !important;
}

.modal-siparis-btn {
  border-radius: 6px;
  background: var(--primary);
  width: 100%;
  color: var(--white);
  font-family: var(--font);
  font-size: 25px;
  font-weight: 400;
  text-align: center;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.modal-siparis-btn:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.custom-pagination {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 64px;
}

.custom-pagination .container .inner {
  color: var(--primary);
  background-color: var(--white);
  width: max-content;
  padding: 0 25px 0 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-pagination .container .inner::after {
  content: "";
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--white);
}

.custom-pagination .container .inner .pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  height: 64px;
}

.custom-pagination .container .inner span {
  color: var(--primary);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Whisper";
  font-size: 35px;
  margin: 0 10px;
  position: relative;
  transition: var(--transition);
}

.custom-pagination .container .inner .pagination.active {
  transform: translateY(-10px);
}

.custom-pagination .container .inner .pagination.active span {
  font-size: 40px;
}

.custom-pagination .container .inner .pagination.active .text-underline {
  visibility: visible;
  opacity: 1;
  height: auto;
}

.custom-pagination .container .inner .pagination .text-underline {
  visibility: hidden;
  height: 0;
  opacity: 0;
  transition: var(--transition);
}

.home-about {
  padding: 60px 0;
  position: relative;
}

.home-about .container {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.home-about .container img {
  max-width: 500px;
  height: 400px;
  width: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.home-about .container .left {
  position: relative;
}

.home-about .container .left::before {
  content: "";
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border: 5px solid var(--primary);
}

.home-about .container p {
  font-size: 18px;
  font-weight: 500;
}

.home-about .container p span {
  font-weight: 700;
}

.home-about .container a {
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
}

.banner-contact {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: sideways-lr;
  /* writing-mode: vertical-lr; */
  text-orientation: mixed;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary);
  padding: 26px 4px;
  z-index: 2;
  transition: var(--transition);
  font-size: 18px;
}

.banner-contact:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.banner-contact.tel {
  right: 0;
}

.banner-contact.wp {
  left: 0;
}

.slide-btn {
  position: absolute;
  bottom: 7%;
  z-index: 2;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.slide-btn:hover {
  color: var(--white);
}

.slide-text {
  writing-mode: sideways-lr;
}

.domates {
  position: absolute;
  right: 0;
  animation: salkimSalin 6s ease-in-out infinite;
  transform-origin: top right;
}

@keyframes salkimSalin {
  0% {
    transform: rotate(3deg);
  }
  25% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(2deg);
  }
  75% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(3deg);
  }
}

.home-social {
  /* min-height: 900px; */
  position: relative;
  /* padding-top: 40px; */
}

.home-social .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.section.right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.home-social .section {
  position: relative;
  width: 100%;
  height: 100%;
  /* z-index: -1; */
  z-index: 9;
  top: -600px;
  left: 60px;
  pointer-events: none;
}

.sol-bilek {
  position: absolute;
  left: -43px;
  top: 400px;
  z-index: 3;
}

.sol-bilek-2 {
  position: absolute;
  top: 430px;
  left: 90px;
  z-index: 4;
}

.el-part {
  position: absolute;
  left: 180px;
  top: 80px;
}

.sol-telefon {
  position: absolute;
  left: 300px;
  z-index: 0; 
}

.sol-thumb {
  position: absolute;
  left: 100px;
  top: 160px;
  z-index: 2; 
  pointer-events: none; 
}

.el {
  position: absolute;
  left: 138px;
  top: 111px;
  z-index: -1;
}

.sol-video {
  width: 200px;
  position: absolute;
  left: 313px;
  top: 30px;
  z-index: 1; 
  cursor: pointer;      
  pointer-events: auto; 
}

.sol-bilek, 
.sol-bilek-2, 
.el-part, 
.sol-telefon, 
.el {
  pointer-events: none; 
}

/* popup */
#videoModal.modal {
  display: none; 
  position: fixed;
  z-index: 999999; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  overflow: hidden; 
}

#videoModal[style*="display: block"] {
  display: flex !important;
}

#videoModal .modal-content {
  width: auto;
  height: auto;
  max-width: 90%;   
  max-height: 85vh; 
  object-fit: contain; 
  margin: 0 auto;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  border-radius: 8px;
}

#videoModal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 45px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000000;
  opacity: 0.8;
  line-height: 1;
}

#videoModal .close:hover {
  opacity: 1;
}

@media (max-width: 480px) {
  #videoModal .close {
    top: 10px;
    right: 15px;
    font-size: 35px;
  }
}

@media (max-width: 1200px) {

  .home-social-media-category {
    position: relative; 
    z-index: 10; 
  }

  .home-social .section {
    position: relative;
    max-width: 50%;
    height: auto;
    z-index: 1; 
    pointer-events: none; 
    top: -660px;
    left: -150px;
  } 

  .sol-video {
    width: 120px;
    height: 200px;
    margin-top: -14px;
    margin-left: -8px;
    
    pointer-events: auto; 
    cursor: pointer;
    
    position: relative;
    z-index: 2; 
  }

  .sol-bilek, 
  .sol-bilek-2, 
  .el-part, 
  .sol-telefon, 
  .sol-thumb, 
  .el {
    pointer-events: none; 
  }

  .sol-bilek {
    width: 165px;
    height: 218px;
    left: 135px;
    margin-top: -144px;
  }

  .sol-bilek-2 {
    width: 103px;
    height: 210px;
    left: 205px;
    margin-top: -165px;
  }

  .el-part {
    width: 152px;
    height: 161px;
    margin-top: -14px;
    margin-left: 76px;
  }

  .sol-telefon {
    width: 130px;
    height: 233px;
    position: absolute;
    z-index: 1; 
  }

  .sol-thumb {
    width: 184px;
    height: 266px;
    margin-top: -14px;
    margin-left: 95px;
    position: absolute; 
    z-index: 1; 
  }

  .sol-bilek {
    width: 165px;
    height: 218px;
    left: 135px;
    margin-top: -144px;
  }

  .sol-bilek-2 {
    width: 103px;
    height: 210px;
    left: 205px;
    margin-top: -165px;
  }

  .el-part {
    width: 152px;
    height: 161px;
    margin-top: -14px;
    margin-left: 76px;
  }

  .sol-telefon {
    width: 130px;
    height: 233px;
  }

  .sol-thumb {
    width: 184px;
    height: 266px;
    margin-top: -14px;
    margin-left: 95px;
    z-index: 2;
  }

  .el {
    width: 243px;
    height: 261px;
    margin-top: -14px;
    margin-left: 87px;
  }

  .sol-video {
    width: 120px;
    height: 200px;
    margin-top: -14px;
    margin-left: -8px;
    z-index: 1;
  }

}

.home-categories-wrapper {
  background-color: var(--primary);
  padding: 20px 0;
  /* position: absolute;
  bottom: 0;
  left: 0;
  right: 0; */
  position: relative;
  z-index: 9;
}

.home-categories .swiper-slide {
  max-width: 200px;
  width: 100%;
  background-color: var(--white);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  padding: 10px;
}

.home-categories .swiper-slide .overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-family: Helvetica;
  font-size: 20px;
  font-weight: 700;
  visibility: hidden;
  transition: var(--transition);
}

.home-categories .swiper-slide:hover .overlay {
  visibility: visible;
  left: 0;
}

.home-categories .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.home-products-wrapper {
  background-color: #ededed;
  padding: 40px 0;
}

.home-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  transition: var(--transition);
}

.home-products-title {
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
  color: var(--primary);
  font-size: 30px;
  font-weight: 700;
}

.home-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: var(--transition);
}

.home-product-image {
  position: relative;
}

.home-product-image:hover .placeholder-tepsi {
  opacity: 0;
  visibility: hidden;
}

.home-product-image:hover .tepsi-img,
.home-product-image:hover .tepsi-urun {
  visibility: visible;
  opacity: 1;
}

.tepsi-img {
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.placeholder-tepsi {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition);
}

.tepsi-urun {
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 65%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.home-product .home-urun-adi {
  color: var(--primary);
  font-size: 17px;
  font-family: "Helvatica";
  margin: 10px 0 0 0;
  font-weight: 700;
}

.home-product .home-urun-price {
  font-size: 17px;
  font-family: "Helvatica";
  color: var(--primary);
  font-weight: 700;
}

.home-product .siparis-ver {
  color: var(--white);
  font-family: "Helvetica-Bold";
  font-size: 17px;
  font-weight: 700;
  background-color: var(--primary);
  padding: 4px 20px;
  border-radius: 8px;
  transition: var(--transition);
}

.home-product .siparis-ver:hover {
  background-color: var(--primary-dark);
}

.mobil-about-text {
  color: var(--primary);
  text-align: center;
  font-size: 18px;
  display: none;
}

@media (max-width: 768px) {
  .banner .title {
    display: none;
  }

  .banner .container {
    justify-content: center;
  }

  .custom-pagination {
    left: 50%;
    transform: translateX(-50%);
  }

  .custom-pagination .container .inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
  }

  .custom-pagination .container .inner span {
    color: var(--white);
  }

  .text-underline {
    display: none;
  }

  .text-underline.white {
    display: block !important;
  }

  .custom-pagination .container .inner::after {
    display: none;
  }

  .slide-btn {
    display: none;
  }

  .banner-contact.tel {
    left: 0;
    right: unset;
    top: 60%;
  }

  .banner-contact.wp {
    top: auto;
    transform: none;
    bottom: 0;
  }

  .mobil-about-text {
    display: block;
    margin-bottom: 30px;
  }

  .domates {
    z-index: 3;
    max-width: 150px;
  }

  .home-about .container p {
    text-align: center;
  }

  .home-about .right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .home-about .right a {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 4px;
    padding: 2px 6px;
  }

  .home-about {
    padding-top: 20px;
  }

  .home-about .container {
    flex-direction: column;
  }

  .home-categories-wrapper {
    background: #ededed;
    margin-top: -193px;
  }

  .home-products {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .home-categories .swiper-slide .overlay {
    position: unset;
    opacity: unset;
    visibility: unset;
    background-color: transparent;
  }

  .home-categories .swiper-slide {
    background-color: transparent;
  }

  .home-categories .swiper-slide img {
    background-color: var(--white);
    border-radius: 23px;
    padding: 5px;
  }

  .home-products-wrapper {
    padding: 10px 0;
  }

  .logo {
    max-width: 60px;
  }
}

.top-bar .socials {
  display: none;
}

@media (max-width: 567px) {
  .home-products {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .home-products-title {
    font-size: 20px;
  }

  .top-bar .container span {
    display: none;
  }

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

  .top-bar .socials {
    padding: 5px 0 !important;
    display: flex;
  }

  .logo {
    max-width: 80px;
  }
}

.text-underline.white {
  display: none;
}
/*home*/

/* hakkimizda */
.hakkimizda {
  padding-top: 30px;
  padding-bottom: 30px;
}

.hakkimizda .title {
  color: var(--primary);
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hakkimizda p {
  color: var(--primary);
  font-size: 18px;
  line-height: 30px;
}

.hakkimizda p span {
  font-style: italic;
}

.hakkimizda-image {
  max-width: 1000px;
  height: auto;
  width: 100%;
  display: block;
  margin: 20px auto;
}

.hakkimizda-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 28px;
}

@media (max-width: 567px) {
  .hakkimizda {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
/* hakkimizda */

/* ürünler */
.urunler .section-header {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: var(--primary);
  font-size: 30px;
  font-weight: 500;
}

.urunler .section-header span {
  font-weight: 700;
}

.product-section {
  margin: 30px 0;
}

.product-section .cat-name {
  color: var(--primary);
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin: 20px 0;
}

.product-section .products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.product-section .products .product {
  width: 100%;
}

.product-section .products .product .box {
  background-color: var(--primary);
  color: var(--white);
  width: 100%;
  padding: 30px 20px 10px 20px;
  border-radius: 13px;
  text-align: center;
  margin-bottom: 12px;
}

.product-title {
  font-size: 18px;
  margin: 5px 0;
}

.product-price {
  font-weight: 700;
  font-size: 20px;
}

.product-section .products .product .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: 8px;
}

.order {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: var(--primary);
  color: var(--white);
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 20px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.order:hover {
  color: var(--white);
  background-color: var(--primary-dark);
}

.product-section .products .product.mobil .box {
  background-color: transparent;
}

.product-section .products .product.mobil img {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), 0 0 40px rgba(0, 0, 0, 0.08),
    0 0 60px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}

.product.mobil .product-title,
.product.mobil .product-price {
  color: var(--primary);
  font-family: Helvetica;
  font-weight: 700;
  font-size: 14px;
}

.product.mobil .order {
  width: max-content;
  margin: 0 auto;
  padding: 2px 6px;
  color: var(--white);
  font-family: Helvetica;
  font-size: 16px;
}

.summary-mobile {
  background: var(--white);
  box-shadow: 0 0 4.04px 0 rgba(0, 0, 0, 0.25);
  margin-top: 18px;
  padding: 16px 30px;
}

.summary-mobile .inner .title {
  text-align: center;
  font-size: 16px;
  padding-bottom: 6px;
  border-bottom: 1px solid #dedede;
}

.mobile-summary {
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-summary span:nth-child(2) {
  font-weight: bold;
}


.mobile-ilet {
  background-color: var(--primary);
  color: var(--white);
  padding: 6px 0;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  line-height: normal;
}

.mobile-ilet i {
  display: flex;
  font-size: 20px;
}

.summary-mobile-buttons {
  display: flex;
}

.summary-mobile-buttons button {
  width: 50%;
}

.summary-mobile-buttons {
  box-shadow: 0 0 4.04px 0 rgba(0, 0, 0, 0.25);
}
.summary-mobile-buttons button:nth-child(1) {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--primary);
  box-shadow: 0 0 4.04px 0 rgba(0, 0, 0, 0.25);
  color: var(--primary);
}

/* ekledim */
.summary-mobile-buttons button:nth-child(1) span:nth-child(1) {
  font-size: 18px;
  display: block;
  width: 100%;
}

.summary-mobile,
.summary-mobile-buttons {
  display: none;
}

@media screen and (max-width: 992px) {
  .sepet-page .top .summary .summary-box {
    display: none;
  }

  .siparisi-ilett {
    display: none;
  }

  .sepet-page .top .basket-products {
    width: 100% !important;
  }

  .sepet-page .top {
    display: block !important;
  }

  .summary-mobile {
    display: block;
  }
  .summary-mobile-buttons {
    display: block;
  }
}
/* ürünler */
/* franchise */ /* 
.franchise-section {
  background: url("../images/franchise-vector.png") center/contain no-repeat;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
}

.fr-bg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.fr-text {
  width: 30%;
  float: right;
  color: var(--white);
}

.fr-text span {
  font-weight: 700;
}

.fr-text a {
  font-size: 20px;
  color: var(--white) !important;
  text-decoration: underline;
} */

.franchise {
  padding: 120px 0;
  background-color: #4f1b45;
  position: relative;
}

.fr-bg {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 600px;
  width: 100%;
}

.fr-bgm {
  display: none;
}

.special {
  color: white !important;
}

@media screen and (max-width: 768px) {
  .franchise {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0 20px 0;
  }

  .fr-bg {
    display: none;
  }

  .franchise .container {
    width: 100%;
    align-items: center !important;
    justify-content: center !important;
  }

  .franchise .text {
    width: 100% !important;
    text-align: center;
  }

  .franchise .text p {
    display: none;
  }

  .fr-bgm {
    display: block;
    max-width: 1000px;
    width: 100%;
  }

  .text-mobile {
    text-align: center;
    margin: 20px 0;
    padding: 0 20px;
    color: var(--primary);
    display: block !important;
  }
}

.text-mobile {
  display: none;
}

.franchise .container {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
}

.franchise .text {
  gap: 24px;
  width: 35%;
  color: var(--white);
}

.franchise .text a {
  font-size: 20px;
  text-decoration: underline;
}

.franchise .text p {
  font-size: 18px;
}
/* franchise */

/* sip takip */
.takip-container {
  padding-top: 30px;
  padding-bottom: 30px;
}

.takip {
  max-width: 1000px;
  width: 100%;
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 4px 16.2px 0 rgba(0, 0, 0, 0.25);
  padding: 16px 20px;
  margin: 0 auto;
  text-align: center;
  transition: var(--transition);
}

.takip .title {
  color: var(--primary);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.takip input {
  border-radius: 14px;
  border: 1px solid #dedede;
  padding: 10px 16px;
  width: 100%;
  margin: 10px 0;
  transition: var(--transition);
}

.takip input:focus {
  border-color: var(--primary);
}

.takip input::placeholder {
  color: #dedede;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
}

.takip .text {
  color: var(--primary);
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  margin: 5px 0;
}

.takip .sorgula-btn {
  border-radius: 11px 11px 30px 30px;
  background: var(--primary);
  box-shadow: 0 1.436px 5.817px 0 var(--primary);
  width: 100%;
  color: var(--white);
  font-size: 25px;
  font-weight: 700;
  padding-top: 4px;
  padding-bottom: 4px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.takip .sorgula-btn:hover {
  background-color: var(--primary-dark);
}

.takip .sorgula-btn:disabled {
  background-color: #adadad;
}

.loader {
  width: 0;
  height: 24px;
  border: 0 solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  visibility: hidden;
  opacity: 0;
}

.loader.show {
  visibility: visible;
  opacity: 1;
  width: 24px;
  border-width: 2px;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.siparis-no-title {
  color: var(--primary);
  font-size: 20px;
  font-weight: 600;
}

.siparis-no {
  color: var(--primary);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.steps {
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.steps .point {
  width: 28px;
  height: 28px;
  background-color: var(--primary);
  border-radius: 50%;
  position: relative;
  transition: var(--transition);
}

.steps .point.disabled {
  background-color: #adadad;
}

.point-wrapper .text.disabled {
  color: #adadad;
}

.point-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.point-wrapper .text {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  transition: var(--transition);
}

.sonuc {
  display: none;
}

.sonuc-text {
  text-align: center;
  margin-top: 38px;
  color: var(--primary);
  font-size: 20px;
  font-weight: 600;
  height: 0;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.sonuc-text.show {
  visibility: visible;
  opacity: 1;
  height: auto;
}

.sonuc-text a {
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
}

.progress {
  position: absolute;
  top: 16%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 160px);
  height: 3px;
  background: #adadad;
}

.progress-bar {
  background-color: var(--primary);
}
/* 
.steps .step .point::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: var(--primary);
} */
/* sip takip */

/*iletisim */
.iletisim {
  padding: 30px 0;
  position: relative;
}

.iletisim .section-title {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.iletisim form {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.iletisim form .input-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12px;
}

.iletisim form input[type="text"] {
  height: 67px;
}

.iletisim form textarea {
  padding-top: 26px !important;
}

.sepet-page textarea {
  padding-top: 26px !important;
}

.iletisim form .input,
.sepet-page .input {
  position: relative;
}

.iletisim form .input label,
.sepet-page .input label {
  position: absolute;
  top: 10px;
  left: 16px;
  color: #959595;
  font-size: 15px;
  transition: var(--transition);
}

.iletisim form .input input:focus + label,
.iletisim form .input textarea:focus + label,
.sepet-page .input textarea:focus + label {
  color: var(--primary);
}

.iletisim form input[type="text"],
.iletisim form textarea,
.sepet-page textarea {
  background: #fdfdfd;
  box-shadow: 0 2px 15.3px 0 rgba(0, 0, 0, 0.25);
  padding: 10px 0 0 16px;
  width: 100%;
  transition: var(--transition);
  border: 1px solid transparent;
}

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

.iletisim form .info {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
}

.checkboxes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 14px 0;
}

.custom-check {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 12px;
  font-size: 20px;
  color: #333;
}

.custom-check input {
  display: none;
}

.custom-check .box {
  width: 48px;
  height: 34px;
  background: #4b0038;
  border-radius: 12px;
  position: relative;
  transition: 0.25s;
}

.custom-check .box::after {
  content: "";
  width: 12px;
  height: 6px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  translate: -50% -50%;
  transition: 0.25s;
}

.custom-check input:checked + .box::after {
  opacity: 1;
}

.iletisim form button {
  color: var(--white);
  font-size: 20px;
  width: 100%;
  padding: 10px 0;
  background-color: var(--primary);
  margin-bottom: 10px;
  transition: var(--transition);
}

.iletisim form button:hover {
  background-color: var(--primary-dark);
}

.iletisim form .info-2 {
  color: #333;
  text-align: center;
  font-size: 15px;
}

.logo-right {
  position: absolute;
  right: 10%;
  top: 0;
}

.logo-left {
  position: absolute;
  bottom: 10%;
  left: 10%;
}

.subelerimiz .section-title {
  color: var(--primary);
  font-size: 30px;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}

.subelerimiz .boxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  gap: 12px;
}

.subelerimiz .boxes .box {
  display: flex;
  flex-direction: column;
  text-align: center;
  border-radius: 13px;
  background: var(--white);
  box-shadow: 3px 6px 30.9px 0 rgba(0, 0, 0, 0.25);
  padding: 10px 20px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 700;
}

.subelerimiz .boxes .box a:hover {
  color: var(--white);
}

.subelerimiz .boxes .box:hover {
  background-color: var(--primary);
  color: var(--white);
}

@media (max-width: 567px) {
  .input-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-btns-wrap {
    display: none;
  }

  footer {
    background-color: var(--primary);
    margin-top: 200px;
  }

  footer .inner .center .item img {
    margin-top: -155px;
  }

  footer .inner .center .item {
    color: var(--white);
  }

  .progress {
    width: calc(100% - 50px);
  }

  .point-wrapper .text {
    font-size: 12px;
  }

  .steps {
    padding: 0;
  }

  .siparis-no {
    font-size: 20px;
  }

  .siparis-no-title {
    font-size: 16px;
  }
}
/*iletisim */

/*sepet */
.sepet-page {
  padding-top: 50px;
  padding-bottom: 50px;
}

.sepet-page .page-title {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 20px;
}

.sepet-page .top {
  display: flex;
  gap: 35px;
}

.sepet-page .top .basket-products {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sepet-page .top .basket-products .basket-product {
  background: var(--white);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  padding: 12px;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.sepet-page .top .basket-products .basket-product img {
  max-width: 110px;
  width: 100%;
  height: 120px;
  border: 1px solid var(--primary);
  border-radius: 6px;
  padding: 5px;
  object-fit: cover;
}

.basket-product-name {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 6px;
}

.not-title {
  color: var(--primary);
  font-size: 24px;
}

.trash,
.increase,
.decrease {
  background-color: var(--primary);
  color: var(--white);
  font-weight: 700;
  border-radius: 2px;
  padding: 0 4px;
  margin-left: 4px;
  font-size: 14px;
}

.basket-product-quantity {
  color: var(--primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  /* gap: 6px; */
}

.basket-product-quantity span {
  font-weight: 700;
}

.sepet-page .top .summary {
  width: 30%;
}

.sepet-page .top .summary .summary-box {
  background: var(--white);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  padding: 18px 10px 30px 10px;
}

.sepet-page .top .summary .summary-box .summary-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #dedede;
  padding: 0 6px 6px;
}

.summary-header .total-quantity span {
  font-weight: 700;
}

.summary-middle {
  padding-top: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.summary-middle .products-total {
  display: flex;
  justify-content: space-between;
  padding: 0 6px 6px;
}

.summary-middle .products-total .total {
  font-weight: 700;
}

.summary-middle .basket-total .total-all {
  font-size: 32px;
  font-weight: 700;
}

.siparisi-ilett {
  background: var(--primary);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  width: 100%;
  margin-top: 10px;
  color: var(--white);
  font-weight: 700;
  transition: var(--transition);
  padding: 6px 0;
}

.siparisi-ilett:hover {
  background-color: var(--primary-dark);
}

.siparisi-ilett:disabled{
  opacity: 0.5;
}

.sepet-page .input {
  margin-top: 20px;
}
/*sepet */

/*adres */
.adres-sayfa {
  padding-top: 20px;
  padding-bottom: 20px;
}

.adres-bilgileri {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  padding: 10px 20px;
}

.adres-bilgileri .box-title {
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
}

.adres-bilgileri form {
  margin-top: 10px;
}

.adres-bilgileri .input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
}

.adres-input {
  width: 100%;
}

.adres-bilgileri .input-row input,
.adres-bilgileri textarea,
.adres-bilgileri .input-row select {
  width: 100%;
  border-radius: 9px;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.04);
  padding-left: 6px;
  padding-top: 8px;
  padding-bottom: 8px;
  transition: var(--transition);
}

.adres-bilgileri .input-row input:disabled,
.adres-bilgileri textarea:disabled,
.adres-bilgileri .input-row select:disabled {
  opacity: 0.7;
}

.adres-bilgileri .input-row input:focus,
.adres-bilgileri textarea:focus,
.adres-bilgileri .input-row select:focus {
  border-color: var(--primary);
}

.adres-bilgileri label {
  padding-left: 6px;
  margin-bottom: 6px;
}

.adres-bilgileri .input-row input::placeholder,
.adres-bilgileri .input-row textarea::placeholder {
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.adres-bilgileri button {
  margin: 10px 0 0 auto;
  display: flex;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 700;
  padding: 4px 10px;
}

/* ekledim */
@media (max-width: 768px) {
  .adres-bilgileri .input-row {
    display: block !important; 
    /* kapsayıcının içindekileri alt altadizdim var olan stil bozmasın. */
  }

  .adres-bilgileri .input-row > * {
    width: 100% !important;
    margin-bottom: 12px;
  }
}

/*adres */
.whisper-regular {
  font-family: "Whisper";
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
  word-spacing: 10px;
}

.container2 {
  width: 70%;
  margin: 0 auto;
}

.summary-mobile2 {
  display: block;
  width: 100%;
}

.summary-mobile-buttons2 {
  display: flex;
  width: 100%;
}

.summary-mobile-buttons2 button {
  width: 100% !important;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 0 10px; 
}

.summary-mobile-buttons2 button span {
    display: inline-block; 
}

.summary-mobile-buttons2 button span:nth-child(2) {
  display: inline-flex; 
  align-items: center; 
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 4px;
}

@media (max-width: 768px) {

  .summary-mobile-buttons2 {
    display: flex;
    width: 100%;
  }

  .summary-mobile-buttons2 button {
    width: 100% !important;
    padding: 12px;
    background: #fff;
    border: 1px solid #701947;
    border-radius: 8px;

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

  #sepet-toplam2 {
    display: block;
    width: 100%;
    font-size: 18px;
    color: #701947;
  }

  #nakliye-ucreti2 {
    display: inline-flex !important;    
    align-items: center;
    font-size: 18px;
    color: #701947;
    white-space: nowrap !important;     
  }

  #nakliyeSpan {
    font-weight: bold;
    margin-left: 4px; 
  }

  .container2 {
    width: 95%;
  }
}


.basket-link {
  position: relative;
}

.basket-link:hover .basket-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.basket-link .basket-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 400px;
  font-family: var(--font);
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
  color: #333;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in;
  transform: translateY(-4%);
  z-index: 6;
}

.basket-link .basket-dropdown h6 {
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #e6e6e6;
}

.basket-link .basket-dropdown .basket-main {
  height: 200px;
  overflow-x: scroll;
}

.basket-link .basket-dropdown .basket {
  display: flex;
  gap: 12px;
  padding: 15px;
}

.basket-link .basket-dropdown .basket img {
  width: 25%;
  height: 100px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  object-fit: cover;
}

.basket-link .basket-dropdown .basket span {
  width: 75%;
}

.basket-link .basket-dropdown .basket span span {
  font-size: 16px;
  font-weight: 600;
  color: rgb(85, 0, 57);
}

.basket-link .basket-dropdown a {
  display: block;
  padding: 6px 12px;
  margin: 15px;
  background-color: rgb(85, 0, 57);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  font-family: var(--font);
}

.empty-basket {
  padding: 15px;
}

@media (max-width: 768px) {
  .basket-dropdown {
    display: none;
  }
}

#arrow {
  transition: 0.2s all ease-in-out;
}

.sepet-header {
  display: flex;
  height: 5vh;
  border-bottom: 1px solid #b6b6b636;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.sepet-detay {
  height: 100vh;
  margin: 10px;
}
.sepet-oge-text {
  margin-bottom: 20px;
}
.sepet-list {
  overflow-y: scroll;
  display: flex;
  gap: 10px;
}
.sepet-list::-webkit-scrollbar {
  display: none;
}
.sepet-price {
  margin-top: 20px;
  border: 1px solid #b6b6b636;
  border-radius: 6px;
  padding: 10px;
}
.sepet-price-details {
  display: flex;
}

.details-text {
  width: 100%;
}
.details-price {
  text-align: right;
  font-size: 14px;
}
.details-text {
  font-size: 14px;
}
.text {
  width: 100%;
}

.sepet-summon-list {
  background-color: #fff;
  display: none;
  align-items: center;
  height: 10vh;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  user-select: none;
  z-index: 8;
}
.siparisi-ilet-mobile {
  margin-bottom: 10px;
  margin-right: 10px;
  display: flex;
  background: var(--primary);
  border: 1px solid var(--primary);
  width: 100%;
  margin-top: 10px;
  color: #fff;
  font-weight: 500;
  transition: var(--transition);
  height: 8vh;
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
  justify-content: center;
  align-items: center;
}
.button-tamlayici {
  margin-bottom: 10px;
  margin-left: 10px;
  display: flex;
  border: 1px solid #550039;
  margin-top: 10px;
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
  width: 35%;
  height: 8vh;
  justify-content: center;
  align-items: center;
}
.animateStart {
  animation: open-modal 0.5s both ease-in;
}
.animateClose {
  animation: close-modal 0.5s both ease-in;
}
.line {
  margin-top: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #b6b6b636;
}
.card {
  display: block;
  width: 70px;
  height: 13vh;
  border: none;
}
.card img {
  height: 100%;
  width: 100%;
  margin-top: 1px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #b6b6b636;
}
.card-full {
  position: relative;
  display: inline;
}
.card-full p {
  margin: 0;
  margin-top: 2px;
  font-size: 12px;
}
.adetMobile {
  position: absolute;

  background-color: transparent;
  padding: 0 4px;
  z-index: 666666;
  border: none;
  display: inline-block;
  color: black;
}

@media (max-width: 768px) {
  .sepet-summon-list {
    display: flex;
  }
}

.main2 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  transition: 0.5s;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0);
}

.main2.active {
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
}

.sepet {
  position: fixed;
  top: 100%;
  bottom: 0;
  width: 100%;
  height: 62vh;
  background-color: white;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  z-index: 999;
  transition: 0.2s all ease-in;
  transform: translate(0, 100%) !important;
}

.sepet.active {
  display: block;
  transition: 0.2s all ease-in;
  transform: translate(0, -100%) !important;
}

.checkout-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 30px 0 10px;
}

.stepper-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  color: #5c0038;
}

.stepper-item:disabled {
  cursor: default;
}

.stepper-item .step-index {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #5c0038;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  background: #fff;
}

.stepper-item .step-label {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stepper-item.active .step-index {
  background: #5c0038;
  color: #fff;
}

.stepper-item.disabled {
  color: #b8b8b8;
}

.stepper-item.disabled .step-index {
  border-color: #d0d0d0;
}

.checkout-steps .stepper-item::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 50%;
  width: 50px;
  height: 2px;
  background: #e0e0e0;
  transform: translateY(-50%);
}

.checkout-steps .stepper-item:last-child::after {
  display: none;
}

.loader-wrapper {
  width: 100%;
  display: none;
}

.basket-loader {
  animation: rotate 1s infinite;
  height: 50px;
  width: 50px;
  margin: 0 auto;
}

.basket-loader:before,
.basket-loader:after {
  border-radius: 50%;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
}

.basket-loader:before {
  animation: ball1 1s infinite;
  background-color: var(--primary);
  box-shadow: 30px 0 0 var(--primary);
  margin-bottom: 10px;
}

.basket-loader:after {
  animation: ball2 1s infinite;
  background-color: var(--primary);
  box-shadow: 30px 0 0 var(--primary);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) scale(0.8);
  }

  50% {
    transform: rotate(360deg) scale(1.2);
  }

  100% {
    transform: rotate(720deg) scale(0.8);
  }
}

@keyframes ball1 {
  0% {
    box-shadow: 30px 0 0 var(--primary);
  }

  50% {
    box-shadow: 0 0 0 var(--primary);
    margin-bottom: 0;
    transform: translate(15px, 15px);
  }

  100% {
    box-shadow: 30px 0 0 var(--primary);
    margin-bottom: 10px;
  }
}

@keyframes ball2 {
  0% {
    box-shadow: 30px 0 0 var(--primary);
  }

  50% {
    box-shadow: 0 0 0 var(--primary);
    margin-top: -20px;
    transform: translate(15px, 15px);
  }

  100% {
    box-shadow: 30px 0 0 var(--primary);
    margin-top: 0;
  }
}

.form-error {
  text-align: center;
  color: white;
  background: #FF3333;
  font-size: 18px;
}


  .home-social-media-category {
    position: relative;
    min-height: 800px;
    padding: 60px 0;
    overflow: hidden;
    color: var(--primary);
    padding-bottom: 0px;
    margin-bottom: -110px;
    margin-top: -100px;
    z-index: -10;
  }

  .br-mobile-only {
    display: none;
  }

  .home-social-media-category .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 100%;
    z-index: 5;
  }

  .home-social-media-category .left-illustration {
    position: absolute;
    width: 546px;
    height: 797.18px;
    left: -150px;
    right: inherit;
    top: 50px;
    z-index: -30;
    opacity: 0.8;
  }

  .home-social-media-category .hand-holding-phone {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 2px;
  }

  .home-social-media-category .phone-mockup {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    left: -5px;
    top: 10px;
    z-index: 15;
    display: block;
  }

  .home-social-media-category .logo-ec-image {
    display: block;
    height: auto;
    position: absolute;
    width: 100%;
    max-width: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
    z-index: 1;
    top: 32%;
    left: 0;
    right: auto;
    transform: translate(25%, -50%);
  }


  .home-social-media-category .right-content {
    max-width: 470px;
    margin-left: auto;
    margin-right: 0;
    position: relative;
    z-index: 20;
    padding-top: 200px;
    left: -100px
  }

  .home-social-media-category .social-text-main {
    width: 470px;
    height: 125px;
    font-family: 'Helvetica', sans-serif;
    font-weight: 400;
    font-size: 22px;
    /* line-height: 25px; */
    text-align: center;
    color: #550039;
    margin: 0 auto;
  }

  .home-social-media-category .social-follow-callout {
    width: 313px;
    height: 40px;
    font-family: 'Helvetica', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 17px;
    text-align: center;
    color: #550039;
    margin: 20px auto 10px auto;
  }

  .home-social-media-category .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 148.38px;
    height: 24.51px;
    margin: 0 auto 50px auto;
  }

  .home-social-media-category .social-icons .icon {
    display: block;
    line-height: 1;
    cursor: pointer;
  }

  .home-social-media-category .social-icons .icon .icon-img {
    display: block;
    width: 100%;
    height: 100%;
  }

  .home-social-media-category .social-icons .icon.youtube {
    width: 27.19px;
    height: 19.04px;
  }

  .home-social-media-category .social-icons .icon.facebook {
    width: 24.6px;
    height: 24.51px;
  }

  .home-social-media-category .social-icons .icon.x {
    width: 22.13px;
    height: 22.06px;
  }

  .home-social-media-category .social-icons .icon.instagram {
    width: 24.59px;
    height: 24.51px;
  }

  .home-social-media-category .background-watermark {
    position: absolute;
    width: 900px;
    height: 900px;
    left: 50%;
    top: 1%;
    transform: translate(-50%, -50%) rotate(-18deg);
    background: url(assets/images/logo-ec.png) no-repeat center center / contain;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
  }

  .home-social-media-category .category-info-full-width {
    width: 644px;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    bottom: -120px;
  }

  .home-social-media-category .category-heading {
    width: 350px;
    height: 38px;
    margin: 0 auto;
    font-family: 'Bellota Text', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 38px;
    color: var(--primary);
    margin-bottom: 10px;
  }

  .home-social-media-category .category-description {
    width: 644px;
    height: 38px;
    margin: 0 auto;
    font-family: 'Bellota Text', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 19px;
    text-align: center;
    color: var(--primary);
  }

  @media (min-width: 769px) {
    .home-social-media-category .social-text-main {
      width: 100% !important;
      max-width: 500px !important;
      height: auto !important;
      min-height: 125px;
    }

    .home-social-media-category .social-follow-callout {
      width: 100% !important;
      max-width: 313px !important;
      height: auto !important;
      min-height: 40px;
    }

    .home-social-media-category .category-info-full-width {
      width: 90% !important;
      max-width: 644px !important;
    }

    .home-social-media-category .category-heading {
      width: 100% !important;
      max-width: 350px !important;
      height: auto !important;
    }

    .home-social-media-category .category-description {
      width: 100% !important;
      max-width: 644px !important;
      height: auto !important;
    }
  }

  @media (max-width: 1200px) {
    .br-mobile-only {
      display: inline;
    }

    .home-social-media-category .logo-ec-image {
      opacity: 0.5;
      z-index: -100;
      position: absolute;

    }

    .home-social-media-category {
      min-height: auto;
      padding: 10px 0;
      padding-bottom: 0px;
      margin-bottom: 0;
      margin-top: 0;
      z-index: auto;
      position: relative;
      padding-top: 160px
    }

    .home-social-media-category .container {
      width: 100%;
      max-width: unset;
      flex-direction: column;
      align-items: center;
      padding: 0;
      padding-top: 10px;
    }

    .home-social-media-category .left-illustration {
      display: block;
      position: relative;
      left: unset;
      top: -10px;
      max-width: 90%;
      height: auto;
      margin: 0;
      margin-left: -150px;
      z-index: -50;
      width: 314px;
    }

    .home-social-media-category .hand-holding-phone {
      display: block;
      position: relative;
      right: unset;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
    }

    .home-social-media-category .right-content {
      width: 100vw;
      max-width: unset;
      margin: 0;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      padding: 10px 15px;
      padding-top: 20px;
      padding-bottom: 0px;
      color: white;
      margin-top: 180px;
      z-index: -1;
    }

    .home-social-media-category .right-content .socials{
      color: white !important;
    }

    .home-social-media-category .right-content::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: #550039;
      z-index: -1;
      height: 100%;
    }

    .home-social-media-category .social-text-main {
      width: 100%;
      font-family: 'Helvetica';
      font-weight: 700;
      font-size: 14px;
      height: auto;
      margin-top: -10px;
      margin-bottom: 20px;
      text-align: center;
      color: #FFFFFF;
    }

    .home-social-media-category .social-follow-callout {
      width: 100%;
      height: auto;
      font-family: 'Helvetica';
      font-weight: 700;
      text-align: center;
      margin: 5px auto;
      color: #FFFFFF;
    }

    .home-social-media-category .social-icons {
      width: 100%;
      text-align: center;
      gap: 10px;
      margin: 10px auto 0 auto;
      margin-bottom: -10px;
    }

    .home-social-media-category .social-icons .icon.youtube .icon-img {
      content: url(assets/images/youtube_icon_white.svg);
    }

    .home-social-media-category .social-icons .icon.facebook .icon-img {
      content: url(assets/images/facebook_icon_white.svg);
    }

    .home-social-media-category .social-icons .icon.x .icon-img {
      content: url(assets/images/x_icon_white.svg);
    }

    .home-social-media-category .social-icons .icon.instagram .icon-img {
      content: url(assets/images/instagram_icon_white.svg);
    }

    .home-social-media-category .background-watermark {
      display: none;
    }

    .home-social-media-category .mobile-purple-rectangle {
      display: none;
    }

    .home-social-media-category .category-info-full-width {
      position: relative;
      width: 100%;
      height: auto;
      left: 0;
      transform: none;
      z-index: 30;
      bottom: auto;
      margin-top: 0;
      padding: 15px;
      background-color: #EDEDED;
      margin-bottom: -10px;
    }

    .home-social-media-category .category-heading {
      color: #550039;
      width: 100%;
      height: auto;
      position: relative;
      font-family: 'Bellota Text';
      font-weight: 700;
      font-size: 15px;
      line-height: 1.2;
      text-align: center;
      margin-bottom: 5px;
      margin-top: 0;
    }

    .home-social-media-category .category-description {
      color: #550039;
      width: 100%;
      height: auto;
      position: relative;
      font-family: 'Bellota Text';
      font-weight: 300;
      /* font-size: 12px;
      line-height: 1.4; */
      text-align: center;
      margin: 0 auto;
    }
  }

  @media (min-width: 1200px) {
    .home-social-media-category .logo-ec-image {
      top: 300px;
      left: 470px;
      z-index: 20;
      pointer-events: initial;
      transform: none;
      max-width: initial;
      width: auto;
      right: auto;
      opacity: 1;
    }
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);

    align-items: center;
    justify-content: center;
  }

  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  }

  .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
  }

  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }

  @media only screen and (max-width: 1200px) {
    .modal-content {
      width: 95%;
    }

    .close {
      top: 10px;
      right: 20px;
      font-size: 30px;
    }
  }

/* gizlilik politikası */
.privacy-policy-wrapper {
    background-color: #550039;
    color: #f0f0f0;
    font-family: 'Bellota Text', sans-serif;
    line-height: 1.6;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.privacy-policy-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.privacy-policy-wrapper .privacy-content-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 2px;
    border: 1px solid rgba(240, 240, 240, 0.1);
}

.privacy-policy-wrapper .privacy-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(240, 240, 240, 0.2);
    padding-bottom: 20px;
}

.privacy-policy-wrapper .privacy-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f0f0f0;
}

.privacy-policy-wrapper .privacy-subtitle {
    font-weight: 300;
    color: #f0f0f0;
    margin-bottom: 15px;
}

.privacy-policy-wrapper .privacy-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid #f0f0f0;
    padding-left: 10px;
    border-radius: 2px;
    color: #f0f0f0;
    letter-spacing: 0.01rem;
}

.privacy-policy-wrapper .privacy-text {
    margin-bottom: 15px;
    font-weight: 300;
    color: #f0f0f0;
}

.privacy-policy-wrapper .privacy-list {
    list-style-position: inside;
    margin-bottom: 15px;
    padding-left: 10px;
    color: #f0f0f0;
}

.privacy-policy-wrapper .privacy-list-item {
    margin-bottom: 8px;
}

@media (max-width: 600px) {
    .privacy-policy-wrapper .privacy-content-box {
        padding: 20px;
    }

    .privacy-policy-wrapper .privacy-title {
        font-size: 1.8rem;
    }

    .privacy-policy-wrapper .privacy-heading {
        font-size: 1.3rem;
    }
}

/* tüketici-haklari */
.consumer-rights {
    background-color: #550039;
    color: #f0f0f0;
    font-family: 'Bellota Text', sans-serif;
    line-height: 1.6;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.consumer-rights * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.consumer-rights .consumer-content-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 2px;
    border: 1px solid rgba(240, 240, 240, 0.1);
}

.consumer-rights .consumer-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(240, 240, 240, 0.2);
    padding-bottom: 20px;
}

.consumer-rights .consumer-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f0f0f0;
}

.consumer-rights .consumer-subtitle {
    font-weight: 300;
    color: #f0f0f0;
    margin-bottom: 15px;
}

.consumer-rights .consumer-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid #f0f0f0;
    padding-left: 10px;
    border-radius: 2px;
    color: #f0f0f0;
    letter-spacing: 0.01rem;
}

.consumer-rights .consumer-text {
    margin-bottom: 15px;
    font-weight: 300;
    color: #f0f0f0;
}

.consumer-rights .consumer-list {
    list-style-position: inside;
    margin-bottom: 15px;
    padding-left: 10px;
    color: #f0f0f0;
}

.consumer-rights .consumer-list-item {
    margin-bottom: 8px;
}

@media (max-width: 600px) {
    .consumer-rights .consumer-content-box {
        padding: 20px;
    }

    .consumer-rights .consumer-title {
        font-size: 1.8rem;
    }

    .consumer-rights .consumer-heading {
        font-size: 1.3rem;
    }
}

/* mesafeli-satış-sözleşmesi */
.distance-selling {
    background-color: #550039;
    color: #f0f0f0;
    font-family: 'Bellota Text', sans-serif;
    line-height: 1.6;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.distance-selling * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.distance-selling .distance-selling-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 2px;
    border: 1px solid rgba(240, 240, 240, 0.1);
}

.distance-selling .distance-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(240, 240, 240, 0.2);
    padding-bottom: 20px;
}

.distance-selling .distance-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f0f0f0;
}

.distance-selling .distance-subtitle {
    font-weight: 300;
    color: #f0f0f0;
    margin-bottom: 15px;
}

.distance-selling .distance-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid #f0f0f0;
    padding-left: 10px;
    border-radius: 2px;
    color: #f0f0f0;
    letter-spacing: 0.01rem;
    letter-spacing: 0.01rem;
}

.distance-selling .distance-text {
    margin-bottom: 15px;
    font-weight: 300;
    color: #f0f0f0;
}

.distance-selling .distance-list {
    list-style-position: inside;
    margin-bottom: 15px;
    padding-left: 10px;
    color: #f0f0f0;
}

.distance-selling .distance-list-item {
    margin-bottom: 8px;
}

@media (max-width: 600px) {
    .distance-selling .distance-selling-box {
        padding: 20px;
    }

    .distance-selling .distance-title {
        font-size: 1.8rem;
    }

    .distance-selling .distance-heading {
        font-size: 1.3rem;
    }
}

/* iade-kosullari */
.return-policy-wrapper {
    background-color: #550039;
    color: #f0f0f0;
    font-family: 'Bellota Text', sans-serif;
    line-height: 1.6;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.return-policy-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.return-policy-wrapper .return-policy-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 2px;
    border: 1px solid rgba(240, 240, 240, 0.1);
}

.return-policy-wrapper .return-policy-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(240, 240, 240, 0.2);
    padding-bottom: 20px;
}

.return-policy-wrapper .return-policy-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f0f0f0;
}

.return-policy-wrapper .return-policy-subtitle {
    font-weight: 300;
    color: #f0f0f0;
    margin-bottom: 15px;
}

.return-policy-wrapper .return-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid #f0f0f0;
    padding-left: 10px;
    border-radius: 2px;
    color: #f0f0f0;
    letter-spacing: 0.01rem;
}

.return-policy-wrapper .return-text {
    margin-bottom: 15px;
    font-weight: 300;
    color: #f0f0f0;
}

.return-policy-wrapper .return-list {
    list-style-position: inside;
    margin-bottom: 15px;
    padding-left: 10px;
    color: #f0f0f0;
}

.return-policy-wrapper .return-list-item {
    margin-bottom: 8px;
}

@media (max-width: 600px) {
    .return-policy-wrapper .return-policy-box {
        padding: 20px;
    }

    .return-policy-wrapper .return-policy-title {
        font-size: 1.8rem;
    }

    .return-policy-wrapper .return-heading {
        font-size: 1.3rem;
    }
}

/* çerez-politikası */
.cookie-policy {
    background-color: #550039;
    color: #f0f0f0;
    font-family: 'Bellota Text', sans-serif;
    line-height: 1.6;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.cookie-policy * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.cookie-policy .cookie-policy-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 2px;
    border: 1px solid rgba(240, 240, 240, 0.1);
}

.cookie-policy .cookie-policy-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(240, 240, 240, 0.2);
    padding-bottom: 20px;
}

.cookie-policy .cookie-policy-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f0f0f0;
}

.cookie-policy .cookie-policy-subtitle {
    font-weight: 300;
    color: #f0f0f0;
    margin-bottom: 15px;
}

.cookie-policy .cookie-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid #f0f0f0;
    padding-left: 10px;
    border-radius: 2px;
    color: #f0f0f0;
    letter-spacing: 0.01rem;
}

.cookie-policy .cookie-text {
    margin-bottom: 15px;
    font-weight: 300;
    color: #f0f0f0;
}

.cookie-policy .cookie-list {
    list-style-position: inside;
    margin-bottom: 15px;
    padding-left: 10px;
    color: #f0f0f0;
}

.cookie-policy .cookie-list-item {
    margin-bottom: 8px;
}

@media (max-width: 600px) {
    .cookie-policy .cookie-policy-box {
        padding: 20px;
    }

    .cookie-policy .cookie-policy-title {
        font-size: 1.8rem;
    }

    .cookie-policy .cookie-heading {
        font-size: 1.3rem;
    }
}  


/* product-detail */
.product-detail-wrapper {
    padding-top: 40px;
    padding-bottom: 60px;
    font-family: var(--font);
    background-color: #f9f9f9;
}

.detail-left-box {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 20px;
    min-height: 500px; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.detail-main-img {
    max-width: 100%;
    max-height: 400px;
    height: auto;
}

.detail-right-box {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 30px;
    min-height: 500px;
    font: var(--font);
}

.main-title-row {
    margin-bottom: 5px;
}

.detail-main-title {
    font-size: 20px;
    color: #550039;
    font-weight: 700;
    line-height: 1.3;
    display: inline;
    font: var(--font);
}

.detail-sub-text {
    font-size: 20px;
    color: #333; 
    font-weight: 400;
    margin-left: 4px;
    font: var(--font);
}

.detail-blue-brand {
    display: block;
    color: #550039;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 15px;
    text-decoration: none;
    cursor: pointer;
    font: var(--font);
}

.price-container {
    margin-bottom: 15px;
}

.current-price {
    font-size: 20px; 
    color: #333;
    font-weight: 400; 
    letter-spacing: 0;
    font: var(--font);
}

.detail-divider {
    border: 0;
    border-top: 1px solid #e6e6e6;
    margin: 20px 0;
}

.action-area {
    margin-top: 20px;
}

.qty-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font: var(--font);
}

.action-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

.add-cart-btn {
    flex: 1; 
    background-color: #550039;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    height: 50px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    text-transform: none;
    font: var(--font);
}

.add-cart-btn:hover {
    background-color: #6b004f;
}

.fav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 20px;
    cursor: pointer;
    background: #fff;
}

.fav-btn:hover {
    border-color: #550039;
    color: #550039;
}

.detail-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    position: relative;
    padding-left: 20px;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    left: 8px;
    font: var(--font);
}

.feature-item::before {
    content: "•";
    color: #550039;
    font-weight: bold;
    font-size: 24px;
    position: absolute;
    left: -12px;
    top: -8px;
}

.feature-item p {
    margin: 0 !important;
    padding: 0 !important;
    display: inline;
}

.detail-qty-input {
    width: 50px;
    height: 50px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    text-align: center;
    padding: 0; 
    text-indent: 0; 
    font-size: 18px;
    font-weight: 600;
    color: #333;
    outline: none;
    -moz-appearance: textfield; 
}

.detail-qty-input:focus {
    border-color: #550039;
}

.detail-qty-input::-webkit-outer-spin-button,
.detail-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media (max-width: 768px) {
    .detail-left-box, .detail-right-box {
        min-height: auto;
    }
}

.custom-tab-container {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    font: var(--font);
}

.tab-header {
    border-bottom: 1px solid #e6e6e6;
    background-color: #fff;
    display: flex;
}

.tab-link {
    background-color: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 15px 25px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    border-bottom: 3px solid transparent;
    font: var(--font);
}

.tab-link:hover {
    color: #550039; 
}

.tab-link.active {
    color: #550039; 
    border-bottom: 3px solid #550039; 
}

.tab-content {
    display: none;
    padding: 30px;
    animation: fadeEffect 0.5s;
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

.tab-content h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
    color: #333;
}

.tab-content p, .tab-content li {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.tab-content ul li {
    margin-bottom: 5px;
}