/* Vendor ve plugin CSS'ler artık index.php'de doğrudan <link> ile yükleniyor.
   @import zinciri kaldırıldı — CSS parse blocking sona erdi. */
/* Google Fonts artık index.php'de preload pattern ile yükleniyor.
   @import burada kasıtlı olarak yok — render blocking kaldırıldı. */

:root {
  --clr-primary: #F59E0B;
  --clr-primary-hover: #D97706;
  --clr-secondary: #D97706;
  --clr-price: #16A34A;
  --clr-text: #1F2937;
  --clr-muted: #6B7280;
  --clr-surface: #fff;
  --clr-border: #E5E7EB;
  --clr-border-soft: #D1D5DB;
  --clr-bg: #F8FAFC;
  --clr-primary-light: #FEF3C7;
  --radius-base: 15px;
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 999px;
  --shadow-sm: 0 1px 20px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 15px 30px rgba(0, 0, 0, 0.08);
  --transition-base: 0.2s ease;
}

/*RESET*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

thead {
  font-weight: 600;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
}

*:focus,
select:focus,
.custom-select:focus,
button:focus,
textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

input:focus::-moz-placeholder {
  opacity: 0;
  -webkit-transition: .4s;
  transition: .4s;
}

a {
  color: #6c757d;
}

a:hover {
  color: #FDC040;
}

li.hr span {
  width: 100%;
  height: 1px;
  background-color: #e4e4e4;
  margin: 20px 0;
  display: block;
}

/*--- Common Classes---------------------*/
::selection,
::-moz-selection {
  background: var(--clr-primary);
  color: #fff;
}

::placeholder,
::-webkit-input-placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder {
  color: #838383;
}

#reklam a{display: grid;}
#reklam img{width: 100%;}

.fix {
  overflow: hidden;
}

.hidden {
  display: none;
}

.clear {
  clear: both;
}

.section {
  float: left;
  width: 100%;
}

.f-right {
  float: right;
}

.f-left {
  float: left;
}

.capitalize {
  text-transform: capitalize;
}

.uppercase {
  text-transform: uppercase;
}

.bg-img {
  background-position: center center;
  background-size: cover;
}

.position-relative {
  position: relative;
}

.height-100vh {
  height: 100vh !important;
}

button,
.btn,
.button {
  cursor: pointer;
  transition: background-color var(--transition-base), border-color var(--transition-base),
              color var(--transition-base), transform var(--transition-base), opacity var(--transition-base);
}

input,
textarea,
select {
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.link-reset {
  text-decoration: none;
  color: inherit;
}

.bg-grey-9 {
  background-color: var(--clr-bg);
}

.border-radius {
  border-radius: 4px;
}

.border-radius-5 {
  border-radius: 5px;
}

.border-radius-10 {
  border-radius: 10px;
}

.border-radius-15 {
  border-radius: 15px;
}

.border-radius-20 {
  border-radius: 20px;
}

.img-hover-scale img {
  transition: transform 0.5s ease;
}

.img-hover-scale:hover img {
  transform: scale(1.05);
}

.hover-up {
  -webkit-transition: transform 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
  transition: transform 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.hover-up:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: transform 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
  transition: transform 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.text-brand {
  color: #6c757d !important;
}

.text-brand-2 {
  color: #FDC040 !important;
}

.text-primary {
  color: #5a97fa !important;
}

.text-warning {
  color: #ff9900 !important;
}

.text-danger {
  color: #FD6E6E !important;
}

.text-success {
  color: #81B13D !important;
}

.text-info {
  color: #2cc1d8 !important;
}

.text-grey-4 {
  color: #adadad !important;
}

.text-muted {
  color: #B6B6B6 !important;
}

.text-7 {
  color: #d77f7a !important;
}

.text-8 {
  color: #63a2c1 !important;
}

.text-white {
  color: #fff !important;
}

.text-grey-5, .text-grey-5 a, .text-hover-grey-5:hover {
  color: #a2a2a2 !important;
}

.bg-brand {
  background-color: #6c757d !important;
}

.bg-primary {
  background-color: #5a97fa !important;
}

.bg-warning {
  background-color: #ff9900 !important;
}

.bg-danger {
  background-color: #FD6E6E !important;
}

.bg-success {
  background-color: #81B13D !important;
}

.bg-info {
  background-color: #2cc1d8 !important;
}

.bg-grey-4 {
  background-color: #adadad !important;
}

.bg-1 {
  background-color: #fddde4 !important;
}

.bg-2 {
  background-color: #cdebbc !important;
}

.bg-3 {
  background-color: #d1e8f2 !important;
}

.bg-4 {
  background-color: #cdd4f8 !important;
}

.bg-5 {
  background-color: #f6dbf6 !important;
}

.bg-6 {
  background-color: #fff2e5 !important;
}

.bg-7 {
  background-color: #d77f7a !important;
}

.bg-8 {
  background-color: #63a2c1 !important;
}

.bg-9 {
  background-color: #F2FCE4 !important;
}

.bg-10 {
  background-color: #FFFCEB !important;
}

.bg-11 {
  background-color: #ECFFEC !important;
}

.bg-12 {
  background-color: #FEEFEA !important;
}

.bg-13 {
  background-color: #FFF3EB !important;
}

.bg-14 {
  background-color: #FFF3FF !important;
}

.bg-15 {
  background-color: #F2FCE4 !important;
}

.bg-grey-9 {
  background-color: #f4f5f9 !important;
}

.font-xs {
  font-size: 13px;
}

.div-center {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.bg-grey-1 {
  background: #fafbfc;
}

.box-shadow-none {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.flex-horizontal-center {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.w-36px {
  max-width: 36px;
}

.border {
  border: 1px solid #ececec !important;
}

.box-shadow-outer-6 {
  -webkit-box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.03);
  box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.03);
}

.box-shadow-outer-6:hover {
  -webkit-box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.05);
  box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.05);
}

.box-shadow-outer-7 {
  -webkit-box-shadow: 0 0 11px 0 rgba(78, 42, 222, 0.03), 0 8px 16px 0 rgba(78, 42, 222, 0.08);
  box-shadow: 0 0 11px 0 rgba(78, 42, 222, 0.03), 0 8px 16px 0 rgba(78, 42, 222, 0.08);
}

.box-shadow-outer-7:hover {
  -webkit-box-shadow: 0 0 14px 0 rgba(78, 42, 222, 0.03), 0 8px 18px 0 rgba(78, 42, 222, 0.09);
  box-shadow: 0 0 14px 0 rgba(78, 42, 222, 0.03), 0 8px 18px 0 rgba(78, 42, 222, 0.09);
}

.box-shadow-outer-3, .box-hover-shadow-outer-3:hover {
  -webkit-box-shadow: 0 5px 16px 0 rgba(118, 126, 173, 0.09);
          box-shadow: 0 5px 16px 0 rgba(118, 126, 173, 0.09);
}

/*****************************
*********  BORDER  *****
******************************/
.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-dotted {
  border-style: dotted !important;
}

.border-solid {
  border-style: solid !important;
}

.border-double {
  border-style: double !important;
}

.border-dashed {
  border-style: dashed !important;
}

.border-brand {
  border-color: #6c757d !important;
}

.border-muted {
  border-color: #f7f8f9;
}

.section-border {
  border-top: 1px solid #e6e9ec;
  border-bottom: 1px solid #e6e9ec;
}

.border-color-1 {
  border-color: #e0dede;
}

a {
  -webkit-transition: color .3s ease, opacity .3s ease;
  transition: color .3s ease, opacity .3s ease;
}
img {
  -webkit-transition: transform .3s ease, opacity .3s ease;
  transition: transform .3s ease, opacity .3s ease;
}
button, input {
  -webkit-transition: background-color .3s ease, border-color .3s ease, color .3s ease;
  transition: background-color .3s ease, border-color .3s ease, color .3s ease;
}
/* span, h4: animasyon yok, transition maliyeti sıfırlandı */

@-webkit-keyframes slideleft {
  10% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    right: 0;
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    right: 100%;
  }
}

@keyframes slideleft {
  10% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    right: 0;
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    right: 100%;
  }
}

[data-loader='spinner'] {
  width: 35px;
  height: 35px;
  display: inline-block;
  -webkit-animation: spinner 1.2s infinite ease-in-out;
  animation: spinner 1.2s infinite ease-in-out;
  background: url(../imgs/favicon.svg);
  -webkit-box-shadow: 0 0 10px #fff;
          box-shadow: 0 0 10px #fff;
}

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: perspective(120px) rotateX(0) rotateY(0);
    transform: perspective(120px) rotateX(0) rotateY(0);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(0);
    transform: perspective(120px) rotateX(-180deg) rotateY(0);
  }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: perspective(120px) rotateX(0) rotateY(0);
    transform: perspective(120px) rotateX(0) rotateY(0);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(0);
    transform: perspective(120px) rotateX(-180deg) rotateY(0);
  }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
  }
}

@-webkit-keyframes shadow-pulse {
  0%   { opacity: 1; -webkit-transform: scale(1);   transform: scale(1); }
  100% { opacity: 0; -webkit-transform: scale(1.8); transform: scale(1.8); }
}

@keyframes shadow-pulse {
  0%   { opacity: 1; -webkit-transform: scale(1);   transform: scale(1); }
  100% { opacity: 0; -webkit-transform: scale(1.8); transform: scale(1.8); }
}

@-webkit-keyframes shadow-pulse-big {
  0%   { opacity: 0.5; -webkit-transform: scale(1);   transform: scale(1); }
  100% { opacity: 0;   -webkit-transform: scale(2.8); transform: scale(2.8); }
}

@keyframes shadow-pulse-big {
  0%   { opacity: 0.5; -webkit-transform: scale(1);   transform: scale(1); }
  100% { opacity: 0;   -webkit-transform: scale(2.8); transform: scale(2.8); }
}

@-webkit-keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 20%, 0);
            transform: translate3d(0, 20%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 20%, 0);
            transform: translate3d(0, 20%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.jump {
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-animation: jump .5s linear alternate infinite;
          animation: jump .5s linear alternate infinite;
}

/*TYPOGRAPHY*/
body {
  color: #2b2b2b;
  font-family: "Lato", Arial, "Helvetica Neue", sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-style: normal;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading,
.display-1,
.display-2,
.heading-sm-1 {
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
  color: #253D4E;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

.display-1 {
  font-size: 96px;
  line-height: 1;
}

.display-2 {
  font-size: 72px;
  line-height: 1;
}

.heading-sm-1 {
  font-size: 14px;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 5px;
  color: #2b2b2b;
}

.text-heading {
  color: #253D4E;
}

p:last-child {
  margin-bottom: 0;
}

.font-weight-bold {
  font-weight: 700;
}

a,
button {
  text-decoration: none;
  cursor: pointer;
}

b {
  font-weight: 500;
}

strong,
.fw-600 {
  font-weight: 600;
}

.fw-900 {
  font-weight: 900;
}

.fw-300 {
  font-weight: 300;
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: end;
  margin-bottom: 20px;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.section-title .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.section-title h3 {
  font-weight: 700;
  font-size: 32px;
  margin-right: 30px;
}

.section-title a.show-all {
  font-size: 16px;
  color: #2b2b2b;
}

.section-title a.show-all:hover {
  color: #6c757d;
}

.section-title a.show-all i {
  font-size: 12px;
  margin-left: 5px;
}

.section-title.style-1 {
  position: relative;
  border-bottom: 1px solid #ececec;
  padding-bottom: 10px;
  font-size: 24px;
}

.section-title.style-1::after {
  content: "";
  width: 80px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #BCE3C9;
}

.section-title span {
  color: #6c757d;
}

h5.widget-title {
  font-size: 18px;
  font-weight: 600;
}

.title.style-3 {
  background-image: url(../images/wave.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  padding-bottom: 25px;
}

.text-body {
  color: #2b2b2b !important;
}

.font-xxs {
  font-size: 12px;
}

.font-xs {
  font-size: 13px;
}

.font-sm {
  font-size: 14px;
}

.font-md {
  font-size: 16px;
}

.font-lg {
  font-size: 17px;
}

.font-xl {
  font-size: 19px;
}

.font-xxl {
  font-size: 58px;
}

.text-hot {
  color: #f74b81;
}

.text-new {
  color: #55bb90;
}

.text-sale {
  color: #67bcee;
}

.text-best {
  color: #f59758;
}

.text-style-1 {
  position: relative;
}

.text-style-1::after {
  content: "";
  background-color: #ffdabf;
  height: 20%;
  width: 110%;
  display: block;
  position: absolute;
  bottom: 20%;
  left: -5%;
  z-index: -1;
  opacity: 0.8;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  transition: transform .5s,-webkit-transform .5s;
}

.text-style-1:hover::after {
  height: 30%;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  transition: transform .5s,-webkit-transform .5s;
}

.fw-700 {
  font-weight: 700;
}

/*COMPONENTS -> BUTTONS*/
.btn-default {
  color: #fff;
  background-color: #F59E0B;
  border-radius: 50px;
  padding: 13px 28px;
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
}

.btn-default i {
  font-weight: 400;
  font-size: 12px;
  margin-left: 10px;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.btn-default:hover i {
  margin-left: 15px;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.btn-lg {
  padding: 13px 28px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 18px !important;
  font-size: 12px;
}

.btn-md {
  padding: 10px 24px !important;
  font-size: 12px;
}

.btn-outline {
  background-color: transparent !important;
}

.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.btn {
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
}

.btn:hover {
  color: #fff;
}

.btn-shadow-brand {
  -webkit-box-shadow: 0 2px 6px 0 rgba(88, 151, 251, 0.16);
          box-shadow: 0 2px 6px 0 rgba(88, 151, 251, 0.16);
  border: 1px solid #f7f8f9;
}

.btn-shadow-brand:hover {
  border: 1px solid #6c757d;
}

.btn-brand {
  background-color: #F59E0B;
  border-color: #F59E0B;
}

.btn-heading, button.btn-heading[type="submit"] {
  background-color: #253D4E;
  border-color: #253D4E;
  font-weight: 700;
  border: 0;
}

button.submit, button[type='submit'] {
  font-size: 16px;
  font-weight: 500;
  padding: 15px 40px;
  color: #ffffff;
  border: none;
  background-color: #F59E0B;
  border: 1px solid #D97706;
  border-radius: 10px;
}

button.submit:hover, button[type='submit']:hover {
  background-color: #D97706 !important;
}

.btn-brand:hover {
  background-color: #D97706 !important;
}

.btn-login {
  font-weight: 13px;
}

.btn-login .btn {
  min-width: unset;
}

.btn-login li {
  margin: 0px 5px 0;
  display: inline-block;
}

.btn-login li a {
  border-radius: 5px;
  padding: 15px 25px;
  color: #fff;
  display: block;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
}

.btn, .button {
  display: inline-block;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 4px;
  color: #fff;
  border: 1px solid transparent;
  background-color: #6c757d;
  cursor: pointer;
  -webkit-transition: background-color 300ms linear, border-color 300ms linear, color 300ms linear, transform 300ms linear;
  transition: background-color 300ms linear, border-color 300ms linear, color 300ms linear, transform 300ms linear;
  letter-spacing: 0.5px;
}

.btn:hover, .button:hover {
  background-color: #FDC040;
}

.btn.btn-sm, .button.btn-sm {
  padding: 8px 18px;
  font-size: 12px;
  text-transform: none;
  line-height: 1.8;
}

.btn.btn-xs, .button.btn-xs {
  padding: 7px 8px 7px 12px;
  font-size: 12px;
  text-transform: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 1.3;
}

.btn.btn-xs i, .button.btn-xs i {
  font-size: 14px !important;
  line-height: 0;
}

.btn.btn-rounded, .button.btn-rounded {
  border-radius: 50px;
}

.btn.btn-secondary, .button.btn-secondary {
  background-color: #3e5379;
  border-color: #3e5379;
}

.btn.btn-facebook, .button.btn-facebook {
  background: #3b5998;
  border-color: #3b5998;
}

.btn.btn-google, .button.btn-google {
  background: #d85040;
  border-color: #d85040;
}

.btn.btn-brush, .button.btn-brush {
  background-color: transparent;
  color: #6c757d;
  border: 0;
  padding: 14px 80px 14px 65px;
  background-repeat: no-repeat;
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
}

.btn.btn-brush i, .button.btn-brush i {
  margin: 3px 0 0 5px;
}

.btn.btn-brush.btn-brush-1, .button.btn-brush.btn-brush-1 {
  background-image: url(../imgs/theme/btn-brush-bg-1.png);
}

.btn.btn-brush.btn-brush-2, .button.btn-brush.btn-brush-2 {
  background-image: url(../imgs/theme/btn-brush-bg-2.png);
}

.btn.btn-brush.btn-brush-3, .button.btn-brush.btn-brush-3 {
  background-image: url(../imgs/theme/btn-brush-bg-3.png);
}

.comments-area .btn-reply {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.comments-area .btn-reply i {
  margin-left: 5px;
  font-size: 12px;
}

.tags .btn, .tags .button {
  border-radius: 4px;
  float: left;
}

/*COMPONENTS -> FORM*/
input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 1;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
}

input {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  height: 64px;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding-left: 20px;
  font-size: 16px;
  width: 100%;
}

input:focus {
  background: transparent;
  border: 1px solid var(--clr-primary-light);
}

input.square {
  border-radius: 0;
}

input.coupon {
  height: 47px;
}

select {
  width: 100%;
  background: transparent;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 16px;
  color: #2b2b2b;
}

select:focus {
  background: transparent;
  border: 1px solid var(--clr-primary-light);
}

option {
  background: #fff;
  border: 0px solid #626262;
  padding-left: 10px;
  font-size: 16px;
}

textarea {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  height: 50px;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 10px 10px 10px 20px;
  font-size: 16px;
  width: 100%;
  min-height: 200px;
}

textarea:focus {
  background: transparent;
  border: 1px solid var(--clr-primary-light);
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border-bottom: 3px solid #414648;
  border-radius: 0;
  border-right: 0;
  height: 50px;
  padding-left: 0;
  border-top: 0;
  border-left: 0;
  font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 50px;
  font-size: 14px;
  padding: 0;
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
  color: #253D4E;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 12px;
  right: 15px;
  width: 20px;
}

.custom_select {
  position: relative;
  width: 100%;
}

.custom_select .select2-container {
  max-width: 155px;
}

.custom_select .nice-select {
  width: 100%;
  margin-bottom: 1rem;
}

.custom_select .select2-container--default .select2-selection--single {
  border: 1px solid #ececec;
  border-radius: 4px;
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
  font-size: 14px;
}

.custom_select .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 50px;
  font-size: 14px;
  padding-left: 0;
}

.custom_select .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 9px;
  right: 14px;
}

.select2-dropdown {
  border: 1px solid #ececec;
  border-radius: 0 0 4px 4px;
  padding: 15px;
  min-width: 220px;
}

.select2-dropdown .select2-search--dropdown {
  padding: 0;
}

.select2-dropdown .select2-search--dropdown .select2-search__field {
  border: 1px solid #BCE3C9;
  margin-bottom: 15px;
  border-radius: 5px;
  height: 40px;
  padding-left: 20px;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.select2-results__options::-webkit-scrollbar {
  width: 16px;
  background-clip: padding-box;
}

.select2-results__options::-webkit-scrollbar-track {
  background-color: #F4F4F4;
  height: 8px;
  background-clip: padding-box;
  border-right: 10px solid rgba(0, 0, 0, 0);
  border-top: 10px solid rgba(0, 0, 0, 0);
  border-bottom: 10px solid rgba(0, 0, 0, 0);
}

.select2-results__options::-webkit-scrollbar-thumb {
  background-clip: padding-box;
  background-color: #d1d1d1;
  border-right: 10px solid rgba(0, 0, 0, 0);
  border-top: 10px solid rgba(0, 0, 0, 0);
  border-bottom: 10px solid rgba(0, 0, 0, 0);
}

.select2-results__options::-webkit-scrollbar-button {
  display: none;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: #ececec;
  color: unset;
}

.select2-container {
  max-width: 135px;
}

/*contact form*/
.contact-from-area .contact-form-style button {
  font-size: 17px;
  font-weight: 500;
  padding: 20px 40px;
  color: #ffffff;
  border: none;
  background-color: #253D4E;
  border-radius: 10px;
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
}

.contact-from-area .contact-form-style button:hover {
  background-color: #6c757d !important;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input {
  background: #fff;
  border: 1px solid #ececec;
  height: 64px;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-left: 20px;
  font-size: 16px;
  width: 100%;
}

.form-group input:focus {
  background: transparent;
  border-color: #BCE3C9;
}

label {
  margin-bottom: 5px;
}

.security-code {
  display: inline-block;
  border-radius: 10px;
  height: 64px;
  line-height: 64px;
  padding: 0 40px;
  font-size: 24px;
  font-weight: bold;
  background: #BCE3C9;
}

.security-code b {
  font-size: 24px;
  font-weight: bold;
}

.custome-radio .form-check-label,
.custome-checkbox .form-check-label {
  position: relative;
  cursor: pointer;
}

.custome-checkbox .form-check-label {
  position: relative;
  cursor: pointer;
  color: #687188;
  padding: 0;
  vertical-align: middle;
}

.custome-checkbox .form-check-label::before {
  content: "";
  border: 2px solid #ced4da;
  height: 17px;
  width: 17px;
  margin: 0px 8px 0 0;
  display: inline-block;
  vertical-align: middle;
  border-radius: 2px;
}

.custome-checkbox .form-check-label span {
  vertical-align: middle;
}

.custome-checkbox input[type="checkbox"]:checked + .form-check-label::after {
  opacity: 1;
}

.custome-checkbox input[type="checkbox"] + .form-check-label::after {
  content: "";
  width: 11px;
  position: absolute;
  top: 50%;
  left: 3px;
  opacity: 0;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: translateY(-65%) rotate(-45deg);
  transform: translateY(-65%) rotate(-45deg);
}

.custome-radio .form-check-input,
.custome-checkbox .form-check-input {
  display: none;
}

.login_footer {
  margin-bottom: 20px;
  margin-top: 5px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.custome-checkbox input[type="checkbox"]:checked + .form-check-label::before {
  background-color: #6c757d;
  border-color: #6c757d;
}

.custome-checkbox input[type="checkbox"]:checked + .form-check-label::after {
  opacity: 1;
}

.divider-text-center {
  text-align: center;
  position: relative;
}

.divider-text-center::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  border-top: 1px solid #ddd;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.divider-text-center span {
  background-color: #fff;
  padding: 0 15px;
  position: relative;
  text-transform: uppercase;
}

/*comment*/
.comments-area {
  background: transparent;
  border-top: 1px solid #ececec;
  padding: 45px 0;
  margin-top: 50px;
}

.comments-area h5 {
  font-size: 16px;
  margin-bottom: 0px;
}


.comments-area .comment-list:last-child {
  padding-bottom: 0px;
}

.comments-area .comment-list.left-padding {
  padding-left: 25px;
}

.comments-area .comment-list .single-comment {
  margin: 0 0 15px 0;
  border: 1px solid #f2f2f2;
  border-radius: 15px;
  padding: 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.comments-area .comment-list .single-comment:not(:last-child) {
  border-bottom: 1px solid #ececec;
}

.comments-area .comment-list .single-comment img {
  min-width: 80px;
  max-width: 80px;
}

.comments-area .comment-list .single-comment .reply {
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.comments-area .comment-list .single-comment:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.comments-area .comment-list .single-comment:hover .reply {
  opacity: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.comments-area p {
  font-size: 16px !important;
}

.comments-area .thumb {
  margin-right: 20px;
}

.comments-area .thumb img {
  width: 70px;
  border-radius: 50%;
}

.comments-area .date {
  font-size: 14px;
  color: #999999;
  margin-bottom: 0;
  margin-left: 20px;
}

.comments-area .comment {
  margin-bottom: 10px;
  color: #777777;
  font-size: 15px;
}

.comments-area .btn-reply {
  background-color: transparent;
  color: #888888;
  padding: 5px 18px;
  font-size: 14px;
  display: block;
  font-weight: 400;
}

.comments-area.style-2 {
  border: 0;
  margin-top: 0;
  padding: 25px 0;
}

.comments-area h4 {
  margin-bottom: 35px;
  color: #2a2a2a;
  font-size: 18px;
}

.comment-form .email {
  padding-right: 0px;
}

.form-control {
  border: 1px solid #f0e9ff;
  border-radius: 10px;
  height: 48px;
  padding-left: 18px;
  font-size: 16px;
  background: transparent;
}

.comment-form {
  margin-bottom: 20px;
}

.comment-form .form-group {
  margin-bottom: 20px;
}

.comment-form textarea {
  min-height: 100px;
  padding-top: 15px;
}

.comment-form textarea:focus {
  background: transparent;
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #BCE3C9;
}

.comments-area--premium {
  margin-top: 26px;
  padding: 0;
  border: 0;
}

.comments-area--premium .comments-area__panel,
.comments-area--premium .comments-area__sidebar {
  position: relative;
  padding: 28px;
  border: 1px solid #E5E7EB;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.10), transparent 32%),
    linear-gradient(180deg, #FFFFFF 0%, #FCFCFD 100%);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.comments-area--premium .comments-area__heading {
  margin-bottom: 22px;
  color: #0F172A;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.comments-area--premium .comment-form {
  margin-bottom: 24px;
}

.comments-area--premium .comments-area__form {
  padding: 22px;
  border: 1px solid #F1F5F9;
  border-radius: 22px;
  background: linear-gradient(180deg, #FFFDF8 0%, #FFFFFF 100%);
}

.comments-area--premium .comment-form h4 {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 700;
  color: #1F2937;
}

.comments-area--premium .comment-form .form-control,
.comments-area--premium .comment-form .select-active {
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  background: #fff;
  min-height: 52px;
  color: #111827;
}

.comments-area--premium .comment-form textarea.form-control {
  min-height: 150px;
  padding: 16px 18px;
}

.comments-area--premium .comment-form .button-contactForm {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  border: 0;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(217, 119, 6, 0.18);
}

.comments-area--premium .comment-list .single-comment {
  margin: 0 0 16px 0;
  padding: 22px;
  border: 1px solid #EEF2F7;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.comments-area--premium .comment-list .single-comment:not(:last-child) {
  border-bottom: 1px solid #EEF2F7;
}

.comments-area--premium .comment-list .single-comment:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.10);
}

.comments-area--premium .thumb {
  margin-right: 18px;
}

.comments-area--premium .thumb img {
  width: 64px;
  height: 64px;
  min-width: 64px;
  max-width: 64px;
  border-radius: 18px;
  object-fit: cover;
  border: 3px solid #FFF7ED;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.16);
}

.comments-area--premium .font-heading.text-brand {
  display: inline-block;
  margin-top: 8px;
  color: #111827 !important;
  font-size: 14px;
  font-weight: 800;
}

.comments-area--premium .desc .font-xs.text-muted {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #F8FAFC;
  color: #64748B !important;
  font-size: 12px;
  font-weight: 700;
}

.comments-area--premium .desc p.mb-10 {
  margin-top: 14px;
  margin-bottom: 0 !important;
  color: #334155;
  font-size: 15px !important;
  line-height: 1.75;
}

.comments-area--premium .product-rate {
  background-color: #FFE7B3;
}

.comments-area--premium .comment-photos {
  margin-top: 16px;
}

.comments-area--premium .comment-photos img {
  width: 118px;
  height: 118px;
  max-height: none !important;
  border-radius: 18px !important;
  object-fit: cover;
  border: 4px solid #FFF7ED;
  box-shadow: 0 16px 36px rgba(148, 163, 184, 0.18);
}

.comments-area--premium .uploaddis {
  margin: 14px 0 18px;
  padding: 18px;
  border: 1px dashed #F59E0B;
  border-radius: 20px;
  background: linear-gradient(180deg, #FFFDF8 0%, #FFF7ED 100%);
}

.comments-area--premium .uploaddis:hover {
  border-color: #D97706;
  background: linear-gradient(180deg, #FFF8EB 0%, #FFF1D6 100%);
}

.comments-area--premium .uploaddis .upload .metin {
  color: #9A3412;
  font-weight: 700;
}

.comments-area--premium .uploaddis .upload .icon {
  color: #D97706;
}

.comments-area--premium .comments-area__sidebar .d-flex.mb-30 {
  align-items: center;
  gap: 14px;
  margin-bottom: 20px !important;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #FFF7ED 0%, #FFFFFF 100%);
  border: 1px solid #FDE7C7;
}

.comments-area--premium .comments-area__sidebar h6 {
  margin: 0;
  color: #0F172A;
  font-size: 22px;
  font-weight: 800;
}

.comments-area--premium .comments-area__sidebar .progress {
  height: auto;
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #F8FAFC;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.comments-area--premium .comments-area__sidebar .progress span {
  color: #334155;
  font-weight: 700;
  font-size: 13px;
}

.comments-area--premium .comments-area__sidebar .progress-bar {
  border-radius: 999px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  font-size: 12px;
  font-weight: 800;
}

.comments-area--premium .comments-area__sidebar .product-rate {
  transform: scale(1.05);
  transform-origin: left center;
}

.ugc-gallery {
  margin-bottom: 24px;
  padding: 22px;
  border: 1px solid #E8EDF3;
  border-radius: 24px;
  background: linear-gradient(180deg, #FFFDF9 0%, #FFFFFF 100%);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.ugc-gallery__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.ugc-gallery__eyebrow,
.ugc-home-strip__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #FFF7ED;
  color: #C2410C;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ugc-gallery__head h5 {
  margin: 10px 0 0;
  color: #0F172A;
  font-size: 22px;
  font-weight: 800;
}

.ugc-gallery__meta {
  color: #64748B;
  font-size: 13px;
  font-weight: 700;
}

.ugc-gallery__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(148px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.ugc-gallery__card {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #F8FAFC;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.ugc-gallery__card img {
  width: 100%;
  height: 190px;
  display: block;
  object-fit: cover;
}

.ugc-gallery__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #FBBF24;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ugc-gallery__name {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: #111827;
  font-size: 13px;
  font-weight: 800;
}

.ugc-home-strip {
  padding: 18px 0 8px;
}

.ugc-home-strip__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.ugc-home-strip__head h2 {
  margin: 10px 0 8px;
  color: #0F172A;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
}

.ugc-home-strip__head p {
  margin: 0;
  max-width: 700px;
  color: #64748B;
  font-size: 15px;
  line-height: 1.75;
}

.ugc-home-strip__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-weight: 800;
}

.ugc-home-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ugc-home-card {
  display: block;
  overflow: hidden;
  border: 1px solid #E8EDF3;
  border-radius: 26px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFDFF 100%);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.08);
  text-decoration: none;
}

.ugc-home-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #F8FAFC;
}

.ugc-home-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.ugc-home-card:hover .ugc-home-card__media img {
  transform: scale(1.04);
}

.ugc-home-card__rating {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.76);
  color: #FBBF24;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.ugc-home-card__body {
  padding: 18px 18px 20px;
}

.ugc-home-card__body strong {
  display: block;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
}

.ugc-home-card__body span {
  display: block;
  margin-top: 6px;
  color: #C2410C;
  font-size: 13px;
  font-weight: 700;
}

.ugc-home-card__body p {
  margin: 10px 0 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.ugc-home-card__body small {
  display: inline-block;
  margin-top: 12px;
  color: #94A3B8;
  font-size: 12px;
  font-weight: 700;
}

.form-control:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-control::-webkit-input-placeholder {
  font-weight: 300;
  color: #999999;
  color: #777777;
}

.form-control:-ms-input-placeholder {
  font-weight: 300;
  color: #999999;
  color: #777777;
}

.form-control::-ms-input-placeholder {
  font-weight: 300;
  color: #999999;
  color: #777777;
}

.form-control::placeholder {
  font-weight: 300;
  color: #999999;
  color: #777777;
}

.nice-select .list {
  width: 100%;
}

.button-contactForm {
  background: #6c757d;
  color: #fff;
  border-color: #6c757d;
  padding: 12px 25px;
}

.search-form form {
  position: relative;
}

.search-form form input {
  -webkit-transition: border-color 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: border-color 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.search-form form button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  border: none;
  font-size: 20px;
  height: 100%;
  padding: 0 24px;
  background-color: transparent;
  color: #242424;
}

.search-form form button:hover {
  color: #fff;
}

/*COMPONENTS -> SLIDER*/
.single-animation-wrap.slick-active .slider-animated-1 h1 {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1 h2 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1 h3 {
  -webkit-animation-delay: 1.0s;
  animation-delay: 1.0s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1 h4 {
  -webkit-animation-delay: 1.0s;
  animation-delay: 1.0s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1 span {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1 p {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1 a.btn {
  -webkit-animation-delay: 2.0s;
  animation-delay: 2.0s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1.slider-product-price {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

.single-animation-wrap.slick-active .slider-animated-1 .single-slider-img img {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1 .slider-product-offer-wrap,
.single-animation-wrap.slick-active .slider-animated-1 .slider-product-offer-wrap-2 {
  -webkit-animation-delay: 1.0s;
  animation-delay: 1.0s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.hero-slider-1 {
  position: relative;
}

.hero-slider-1 .single-hero-slider {
  height: 335px;
  border-radius: 30px;
  background-size: cover;
  background-position: center center;
}

.hero-slider-1 .single-hero-slider.rectangle {
  border-radius: 0;
}

.hero-slider-1 .single-hero-slider.rectangle .slider-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
}

.hero-slider-1 .single-hero-slider.rectangle .slider-content form {
  margin: 0 auto;
}

.hero-slider-1 img {
  max-height: 538px;
  border-radius: 30px;
}

.hero-slider-1 .slider-content {
  position: absolute;
  top: 50%;
  left: 6%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.hero-slider-1 .slider-content p {
  font-size: 30px;
}

.hero-slider-1 .slider-content form {
  background-color: #fff;
  max-width: 450px;
  border-radius: 50px;
}

.hero-slider-1 .slider-content form input {
  border: 0;
  border-radius: 50px 0 0 50px;
  padding-left: 58px;
  background: url(../imgs/theme/icons/icon-plane.png) no-repeat 25px center;
}

.hero-slider-1 .slider-content form button {
  border: 0;
  border-radius: 50px;
}

.hero-slider-1 .single-slider-img-1 {
  height: 538px;
  position: relative;
}

.hero-slider-1 .single-slider-img-1 .slider-1-1 {
  position: absolute;
  bottom: 30px;
  right: 0;
}

.hero-slider-1 .single-slider-img-1 .slider-1-2 {
  position: absolute;
  bottom: 20px;
  right: 0;
}

.hero-slider-1 .single-slider-img-1 .slider-1-3 {
  position: absolute;
  bottom: 30px;
  right: 0;
}

.hero-slider-1.style-5 .display-2 {
  font-size: 50px;
}

.hero-slider-1.style-5 .slider-content p {
  font-size: 24px;
}

.hero-slider-1.style-5 img {
  border-radius: 10px;
}

.hero-slider-1.style-5 .single-hero-slider {
  border-radius: 10px;
}

.dot-style-1 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dot-style-1 ul li {
  margin: 0 3px;
}

.dot-style-1 ul li button {
  width: 15px;
  height: 15px;
  border-radius: 30px;
  border: 1px solid;
  padding: 0;
  font-size: 0px;
  border-color: #253D4E;
  background: none;
  -webkit-transition: background-color 0.3s linear, border-color 0.3s linear;
  transition: background-color 0.3s linear, border-color 0.3s linear;
}

.dot-style-1 ul li button:hover {
  background: #BCE3C9;
}

.dot-style-1 ul li.slick-active button {
  background: #6c757d;
  border-color: #6c757d;
}

.dot-style-1.dot-style-1-position-1 ul {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 15px;
}

.dot-style-1.dot-style-1-position-2 ul {
  position: absolute;
  left: 6%;
  bottom: 15px;
}

.dot-style-1.dot-style-1-center ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.dot-style-1.dot-style-1-mt1 ul {
  margin-top: 30px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  width: 100%;
}

.slider-arrow .slider-btn {
  cursor: pointer;
  background: #F2F3F4;
  width: 45px;
  height: 45px;
  position: absolute;
  display: block;
  z-index: 100;
  border-radius: 50%;
  -webkit-transition: background-color .2s ease-out, color .2s ease-out, transform .2s ease-out;
  transition: background-color .2s ease-out, color .2s ease-out, transform .2s ease-out;
  text-align: center;
  line-height: 45px;
  font-size: 16px;
  color: #2b2b2b;
}

.slider-arrow .slider-btn.slider-prev {
  left: 20px;
}

.slider-arrow .slider-btn.slider-prev i {
  margin-right: 2px;
}

.slider-arrow .slider-btn.slider-next {
  right: 20px;
}

.slider-arrow .slider-btn.slider-next i {
  margin-left: 2px;
}

.slider-arrow .slider-btn:hover {
  background-color: #6c757d;
  color: #fff;
  border-color: #6c757d;
}

.slider-arrow.slider-arrow-2 .slider-btn {
  width: 40px;
  height: 40px;
  line-height: 44px;
  font-size: 24px;
}

.slider-arrow.slider-arrow-2.flex-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  max-width: 200px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  top: unset;
  -webkit-transform: unset;
          transform: unset;
}

.slider-arrow.slider-arrow-2.flex-right .slider-btn {
  position: relative;
  left: unset;
  right: unset;
}

.slider-arrow.slider-arrow-2.flex-right .slider-btn.slider-prev {
  margin-right: 10px;
}

.slider-arrow.slider-arrow-3 .slider-btn {
  width: 30px;
  height: 30px;
  line-height: 28px;
  font-size: 12px;
  margin-top: -15px;
}

.slider-arrow.style-3 .slider-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #dcdeed;
  line-height: 40px;
  font-size: 12px;
  margin-top: -20px;
}

.home-slide-cover {
  position: relative;
}

.home-slide-cover .slider-arrow {
  left: 0;
}

.home-slide-cover .hero-slider-content-2 {
  padding-left: 50px;
}

/*Carausel*/
.carausel-8-columns-cover .carausel-8-columns {
  overflow: hidden;
  margin: 0 -12px;
}

.carausel-8-columns-cover .carausel-8-columns .card-1 {
  margin-right: 12px;
  margin-left: 12px;
}

.carausel-8-columns-cover .product-img {
  border: 1px solid #cce7d0;
}

.carausel-8-columns-cover .slider-arrow {
  top: -80px;
}

.carausel-8-columns-cover .slider-arrow .slider-btn.slider-next {
  right: 0;
}

.carausel-8-columns-cover .slider-arrow .slider-btn.slider-prev {
  right: 48px;
  left: unset;
}

.carausel-8-columns-cover.arrow-center .slider-arrow {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: -50px;
}

.carausel-8-columns-cover.arrow-center .slider-arrow .slider-btn.slider-next {
  right: -30px;
}

.carausel-8-columns-cover.arrow-center .slider-arrow .slider-btn.slider-prev {
  left: -30px;
}

.carausel-8-columns-cover.arrow-center .slider-arrow.slider-arrow-3 {
  margin-top: 0;
}

.carausel-10-columns-cover .carausel-10-columns {
  overflow: hidden;
  margin: 0 -12px;
}

.carausel-10-columns-cover .carausel-10-columns .card-2 {
  margin-right: 12px;
  margin-left: 12px;
}

.carausel-4-columns-cover .carausel-4-columns {
  overflow: hidden;
  margin: 0 -12px;
}

.carausel-5-columns-cover .carausel-5-columns {
  overflow: hidden;
  margin: 0 -12px;
}

.carausel-4-columns-cover .carausel-4-columns .product-cart-wrap, .carausel-5-columns-cover .carausel-5-columns .product-cart-wrap {
  margin-right: 12px;
  margin-left: 12px;
}

.carausel-4-columns-cover .carausel-4-columns-arrow {
  margin-top: -100px;
}

.carausel-5-columns-cover .carausel-5-columns-arrow {
  margin-top: -100px;
}

.carausel-4-columns-cover .product-cart-wrap {
  margin-bottom: 20px;
}

.carausel-4-columns-cover .product-cart-wrap:hover {
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

.bg-grey-10 {
  background-color: #d0f3ec;
}

.home-slider .slider-arrow {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.home-slider:hover .slider-arrow {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.home-slider.style-2 {
  background: url(../imgs/banner/banner-12.png) no-repeat center bottom;
  background-size: cover;
  width: 100%;
  padding: 50px 0;
}

.carausel-3-columns-cover {
  position: relative;
}

.carausel-3-columns-cover .carausel-3-columns {
  overflow: hidden;
  margin: 0 -12px;
}

.carausel-3-columns-cover .carausel-3-columns img {
  margin-right: 12px;
  margin-left: 12px;
}

.carausel-3-columns-cover #carausel-3-columns-arrows {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  width: 100%;
  z-index: 3;
}

.carausel-3-columns-cover .slider-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  line-height: 44px;
  text-align: center;
  background: #F2F3F4;
  font-size: 27px;
  color: #6c757d;
  position: absolute;
}

.carausel-3-columns-cover .slider-btn.slider-prev {
  left: -20px;
}

.carausel-3-columns-cover .slider-btn.slider-next {
  right: -20px;
}

.carausel-3-columns-cover .slider-btn:hover {
  background: #6c757d;
  color: #fff;
}

/*COMPONENTS -> CARD*/
.card-1 {
  position: relative;
  background: #F4F6FA;
  text-align: center;
  border: 1px solid #F4F6FA;
  border-radius: 10px;
  padding: 40px 30px 28px 30px;
  margin-bottom: 20px;
  min-height: 215px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.card-1:hover {
  background: #fff;
  border: 1px solid #BCE3C9;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.card-1 figure {
  text-align: center;
  margin-bottom: 20px;
}

.card-1 figure img {
  border-radius: 10px;
  display: inline-block;
  max-width: 80px;
}

.card-1 h6 {
  margin: 0;
}

.card-1 h6 a {
  color: #253D4E;
}

.card-1:hover a {
  color: #6c757d;
}

.card-2 {
  position: relative;
  background: #F4F6FA;
  text-align: center;
  border: 1px solid #F4F6FA;
  border-radius: 10px;
  padding: 20px 0px 18px 0px;
  margin-bottom: 20px;
  min-height: 180px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.card-2:hover {
  background: #fff;
  border: 1px solid #BCE3C9;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.card-2 figure {
  text-align: center;
  margin-bottom: 10px;
}

.card-2 figure img {
  border-radius: 10px;
  display: inline-block;
  max-width: 80px;
}

.card-2 h6 {
  margin: 0;
}

.card-2 h6 a {
  color: #253D4E;
}

.card-2:hover a {
  color: #6c757d;
}

.hero-card {
  width: 100%;
  position: relative;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  -webkit-transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  border: 1px solid #eee;
}

.hero-card:hover {
  border: 1px solid #6c757d;
}

.hero-card .hero-card-icon {
  width: 65px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-card .hero-card-icon.icon-left {
  width: 135px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.hero-card .hero-card-icon.icon-left-2 {
  width: 265px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.hero-card .hero-card-icon i {
  font-size: 25px;
  color: #6143f7;
}

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid #ececec;
  border-radius: .25rem;
}

.card .card-header {
  padding: 1rem;
  margin-bottom: 0;
  background-color: #f7f8f9;
  border-bottom: 1px solid #ececec;
}

.featured-card {
  padding: 50px 30px;
  border-radius: 15px;
  border: 1px solid #ececec;
  background: #fff;
}

.featured-card img {
  margin-bottom: 30px;
  width: 100px;
}

.featured-card h4 {
  margin-bottom: 30px;
}

.featured-card p {
  font-size: 17px;
  margin-bottom: 30px;
}

.featured-card a {
  font-size: 16px;
}

.featured-card:hover {
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

.team-card {
  position: relative;
}

.team-card img {
  border-radius: 15px;
  z-index: 1;
}

.team-card:hover .content {
  -webkit-transform: translateY(-95px);
          transform: translateY(-95px);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.team-card .content {
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  background: #fff;
  padding: 30px;
  max-width: 80%;
  position: relative;
  z-index: 2;
  -webkit-transform: translateY(-90px);
          transform: translateY(-90px);
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.team-card .content span {
  font-size: 17px;
}

.team-card .content .social-network a {
  display: inline-block;
  padding: 0 5px;
}

.team-card .content .social-network a img {
  max-width: 30px;
  min-width: 20px;
}

.account .card {
  border: 0;
}

.account .card .card-header {
  border: 0;
  background: none;
}

.account .card table td, .account .card table th {
  border: 0;
}

.account .card .table > thead {
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
  font-size: 17px;
}

.card-login {
  padding: 50px;
  border-radius: 15px;
  border: 1px solid #ececec;
  margin-left: 30px;
}

.card-login .social-login {
  font-size: 20px;
  font-weight: 700;
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 15px 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.card-login .social-login img {
  min-width: 28px;
  max-width: 28px;
  margin-right: 15px;
}

.card-login .social-login.facebook-login {
  background-color: #1877F2;
  color: #fff;
}

.card-login .social-login.google-login {
  background-color: #fff;
  color: #2b2b2b;
  border: 1px solid #F2F3F4;
}

.card-login .social-login.apple-login {
  background-color: #6c757d;
  color: #fff;
  margin-bottom: 0;
}

.card-login .social-login:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

/*COMPONENTS -> TABS*/
.nav-tabs {
  border: 0;
  margin-bottom: 4px;
}

.nav-tabs .nav-link {
  background-color: #eeeeee;
  font-size: 15px;
  margin: 0 10px;
  margin-left: 10px;
  color: #444;
  border-radius: 4px;
  padding: 15px 24px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border: 0;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
  font-weight: 600;
  line-height: 1;
}

.nav-tabs .nav-link.active {
  color: #6c757d;
  background-color: #fde1bd;
}

.nav-tabs .nav-link:hover {
  color: #6c757d;
  background-color: #fde1bd;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.nav-tabs .nav-link:first-child {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.nav-tabs.links .nav-link {
  padding: 0 10px;
  background: none;
  font-size: 16px;
  color: #253D4E;
}

.nav-tabs.links .nav-link:hover, .nav-tabs.links .nav-link.active {
  color: #6c757d;
}

.nav-tabs.no-border {
  border: none;
}

.nav-tabs.right .nav-item:last-child .nav-link {
  margin-right: 0;
}

.nav.right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.dashboard-menu ul {
  padding: 0;
  margin: 0;
}

.dashboard-menu ul li {
  position: relative;
  border-radius: 10px;
  border: 1px solid #ececec;
  border-radius: 10px;
}

.dashboard-menu ul li a {
  font-size: 16px;
  color: #2b2b2b;
  padding: 15px 30px;
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
  font-weight: 700;
}

.dashboard-menu ul li a i {
  color: #2b2b2b;
  font-size: 19px;
  opacity: 0.6;
}

.dashboard-menu ul li a.active {
  color: #fff;
  background-color: #6c757d;
  border-radius: 10px;
}

.dashboard-menu ul li a.active i {
  color: #fff;
}

.dashboard-menu ul li:not(:last-child) {
  margin-bottom: 10px;
}

.tab-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tab-header .view-more {
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 2px solid #cce7d0;
  margin-bottom: 20px;
}

.tab-header .view-more i {
  margin-left: 5px;
  margin-top: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.tab-header .view-more:hover i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/*COMPONENTS -> MISC*/
/*Countdown*/
.deals-countdown .countdown-section {
  position: relative;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  padding: 20px 5px 30px 5px;
  margin-left: 7px;
  margin-right: 7px;
  background-color: #fff;
  border-radius: 4px;
  border: none;
  margin-bottom: 2rem;
}

.deals-countdown .countdown-section .countdown-amount {
  display: inline-block;
  color: #6c757d;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 15px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
}

.deals-countdown .countdown-section .countdown-period {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 10px;
  display: block;
  color: #2b2b2b;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
  font-size: 16px;
  text-transform: capitalize;
}

.img-grey-hover {
  opacity: .5;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.img-grey-hover:hover {
  -webkit-filter: none;
          filter: none;
  opacity: 1;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.brand-logo img {
  width: auto;
  display: inline-block;
  padding: 10px 0;
}

/*Heading tab*/
.heading-tab {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-align: left;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*page loading*/
.preloader {
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  -webkit-transition: .6s;
  transition: .6s;
  margin: 0 auto;
}

.preloader img.jump {
  max-height: 100px;
}

/*custom amine*/
.loader,
.bar {
  width: 100px;
  height: 20px;
}

.bar {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bar::before,
.bar::after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  background: #6c757d;
  opacity: 0;
  border-radius: 10px;
  -webkit-animation: slideleft 3s ease-in-out infinite;
          animation: slideleft 3s ease-in-out infinite;
}

.bar1::before {
  -webkit-animation-delay: 0.00s;
          animation-delay: 0.00s;
}

.bar1::after {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.bar2::before {
  -webkit-animation-delay: 0.60s;
          animation-delay: 0.60s;
}

.bar2::after {
  -webkit-animation-delay: 0.90s;
          animation-delay: 0.90s;
}

.bar3::before {
  -webkit-animation-delay: 1.20s;
          animation-delay: 1.20s;
}

.bar3::after {
  -webkit-animation-delay: 1.50s;
          animation-delay: 1.50s;
}

/*page header*/
.page-header .page-title {
  font-weight: 900;
  font-size: 4rem;
}

.page-header.breadcrumb-wrap {
  padding: 18px 0;
  background: #f8f9fb;
  border-bottom: 1px solid #ebebf0;
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  padding: 0;
  text-transform: capitalize;
  color: #999;
  font-size: 13px;
  font-weight: 500;
  background: none;
  margin: 0;
  border-radius: 0;
  gap: 2px;
}

.breadcrumb a {
  color: #999;
  text-decoration: none;
  transition: color .15s;
}

.breadcrumb a:hover {
  color: #6c757d;
}

.breadcrumb span {
  position: relative;
  text-align: center;
  padding: 0 7px;
  font-size: 7px;
  color: #ccc;
}

.breadcrumb span::before {
  content: "\f111";
  font-family: "uicons-regular-straight" !important;
  display: inline-block;
  font-size: 7px;
  vertical-align: middle;
}

/*****************************
*********  SOCIAL NETWORKS  **********
******************************/
.text-center.social-icons ul {
  display: inline-block;
}

.social-icons li {
  float: left;
  list-style: none;
}

.social-icons li a {
  float: left;
  font-size: 16px;
  text-align: center;
  margin: 0 4px 4px 0;
  border-radius: 4px;
  border: 0;
  background: 0 0;
  color: #333;
  overflow: hidden;
  -webkit-transition: background-color .3s ease, color .3s ease, opacity .3s ease;
  transition: background-color .3s ease, color .3s ease, opacity .3s ease;
}

.dark .social-icons li a {
  color: #fff;
}

.social-icons.social-icons-colored a,
.social-icons.social-icons-colored-hover a:hover {
  color: #fff !important;
  border: 0;
}

.social-icons.social-icons-colored .social-rss a,
.social-icons.social-icons-colored-hover .social-rss a:hover,
.social-icons.social-icons-colored .social-snapchat a,
.social-icons.social-icons-colored-hover .social-snapchat a:hover {
  background-color: #faa33d;
}

.social-icons.social-icons-colored .social-facebook a,
.social-icons.social-icons-colored-hover .social-facebook a:hover {
  background-color: #5d82d1;
}

.social-icons.social-icons-colored .social-twitter a,
.social-icons.social-icons-colored-hover .social-twitter a:hover {
  background-color: #40bff5;
}

.social-icons.social-icons-colored .social-vimeo a,
.social-icons.social-icons-colored-hover .social-vimeo a:hover {
  background-color: #35c6ea;
}

.social-icons.social-icons-colored .social-myspace a,
.social-icons.social-icons-colored-hover .social-myspace a:hover {
  background-color: #008dde;
}

.social-icons.social-icons-colored .social-youtube a,
.social-icons.social-icons-colored-hover .social-youtube a:hover {
  background-color: #ef4e41;
}

.social-icons.social-icons-colored .social-instagram a,
.social-icons.social-icons-colored-hover .social-instagram a:hover {
  background-color: #e53d00;
}

.social-icons.social-icons-colored .social-gplus a,
.social-icons.social-icons-colored-hover .social-gplus a:hover {
  background-color: #d68400;
}

.social-icons.social-icons-colored .social-stumbleupon a,
.social-icons.social-icons-colored-hover .social-stumbleupon a:hover {
  background-color: #ff5c30;
}

.social-icons.social-icons-colored .social-lastfm a,
.social-icons.social-icons-colored-hover .social-lastfm a:hover {
  background-color: #f34320;
}

.social-icons.social-icons-colored .social-pinterest a,
.social-icons.social-icons-colored-hover .social-pinterest a:hover {
  background-color: #e13138;
}

.social-icons.social-icons-colored .social-google a,
.social-icons.social-icons-colored-hover .social-google a:hover {
  background-color: #eb5e4c;
}

.social-icons.social-icons-colored .social-evernote a,
.social-icons.social-icons-colored-hover .social-evernote a:hover {
  background-color: #9acf4f;
}

.social-icons.social-icons-colored .social-dribbble a,
.social-icons.social-icons-colored-hover .social-dribbble a:hover {
  background-color: #f7659c;
}

.social-icons.social-icons-colored .social-skype a,
.social-icons.social-icons-colored-hover .social-skype a:hover {
  background-color: #13c1f3;
}

.social-icons.social-icons-colored .social-forrst a,
.social-icons.social-icons-colored-hover .social-forrst a:hover {
  background-color: #45ad76;
}

.social-icons.social-icons-colored .social-linkedin a,
.social-icons.social-icons-colored-hover .social-linkedin a:hover {
  background-color: #238cc8;
}

.social-icons.social-icons-colored .social-wordpress a,
.social-icons.social-icons-colored-hover .social-wordpress a:hover {
  background-color: #2592c3;
}

.social-icons.social-icons-colored .social-grooveshark a,
.social-icons.social-icons-colored-hover .social-grooveshark a:hover {
  background-color: #ffb21d;
}

.social-icons.social-icons-colored .social-delicious a,
.social-icons.social-icons-colored-hover .social-delicious a:hover {
  background-color: #377bda;
}

.social-icons.social-icons-colored .social-behance a,
.social-icons.social-icons-colored-hover .social-behance a:hover {
  background-color: #1879fd;
}

.social-icons.social-icons-colored .social-dropbox a,
.social-icons.social-icons-colored-hover .social-dropbox a:hover {
  background-color: #17a3eb;
}

.social-icons.social-icons-colored .social-soundcloud a,
.social-icons.social-icons-colored-hover .social-soundcloud a:hover {
  background-color: #ff7e30;
}

.social-icons.social-icons-colored .social-deviantart a,
.social-icons.social-icons-colored-hover .social-deviantart a:hover {
  background-color: #6a8a7b;
}

.social-icons.social-icons-colored .social-yahoo a,
.social-icons.social-icons-colored-hover .social-yahoo a:hover {
  background-color: #ab47ac;
}

.social-icons.social-icons-colored .social-flickr a,
.social-icons.social-icons-colored-hover .social-flickr a:hover {
  background-color: #ff48a3;
}

.social-icons.social-icons-colored .social-digg a,
.social-icons.social-icons-colored-hover .social-digg a:hover {
  background-color: #75788d;
}

.social-icons.social-icons-colored .social-blogger a,
.social-icons.social-icons-colored-hover .social-blogger a:hover {
  background-color: #ff9233;
}

.social-icons.social-icons-colored .social-tumblr a,
.social-icons.social-icons-colored-hover .social-tumblr a:hover {
  background-color: #426d9b;
}

.social-icons.social-icons-colored .social-quora a,
.social-icons.social-icons-colored-hover .social-quora a:hover {
  background-color: #ea3d23;
}

.social-icons.social-icons-colored .social-github a,
.social-icons.social-icons-colored-hover .social-github a:hover {
  background-color: #3f91cb;
}

.social-icons.social-icons-colored .social-amazon a,
.social-icons.social-icons-colored-hover .social-amazon a:hover {
  background-color: #ff8e2e;
}

.social-icons.social-icons-colored .social-xing a,
.social-icons.social-icons-colored-hover .social-xing a:hover {
  background-color: #1a8e8c;
}

.social-icons.social-icons-colored .social-wikipedia a,
.social-icons.social-icons-colored-hover .social-wikipedia a:hover {
  background-color: #b3b5b8;
}

.social-icons.social-icons-border li a {
  border: 1px solid #d7d7d7;
  background: 0 0;
  color: #333;
}

.dark .social-icons.social-icons-border li a {
  border: 1px solid #333 !important;
}

.dark .social-icons li a .social-icons.social-icons-dark li a {
  background: #888;
  color: #fff;
}

.social-icons.social-icons-light li a {
  background: #fff;
  color: #333;
  border: 1px solid #ececec;
}

.social-icons.social-icons-rounded li a {
  border-radius: 50%;
}

.social-icons.social-icons-square li a {
  border-radius: 0;
}

.social-icons.social-icons-xs li a {
  height: 20px;
  width: 20px;
  line-height: 20px;
  font-size: 12px;
}

.social-icons.social-icons-sm li a {
  height: 30px;
  width: 30px;
  line-height: 30px;
  font-size: 13px;
}

.social-icons.social-icons-md li a {
  height: 38px;
  width: 38px;
  line-height: 38px;
  font-size: 16px;
}

.social-icons.social-icons-lg li a {
  height: 42px;
  width: 42px;
  line-height: 42px;
  font-size: 18px;
}

.social-icons.social-icons-xl li a {
  height: 48px;
  width: 48px;
  line-height: 48px;
  font-size: 18px;
}

.dark .social-icons:not(.social-icons-colored):not(.social-icons-colored-hover) li a:hover {
  background-color: #1f1f1f;
}

.social-icons li:hover i {
  -webkit-animation: toTopFromBottom .2s forwards;
  animation: toTopFromBottom .2s forwards;
}

/*Map*/
.leaflet-map {
  height: 350px;
  width: 100%;
}

/*table*/
table {
  width: 100%;
  margin-bottom: 1.5rem;
  border-collapse: collapse;
  vertical-align: middle;
}

table td, table th {
  padding: 10px 20px;
  border: 1px solid #ececec;
  vertical-align: middle;
}

table thead > tr > th {
  vertical-align: middle;
  border-bottom: 0;
}

table p {
  margin-bottom: 0;
}

table.clean td, table.clean th {
  border: 0;
  border-top: 1px solid #ececec;
}

table .product-thumbnail img {
  max-width: 80px;
}

/*divider*/
.divider {
  position: relative;
  overflow: hidden;
  height: 4px;
  z-index: 9;
}

.divider.center_icon {
  text-align: center;
  height: auto;
}

.divider::before, .divider::after {
  content: '';
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0px;
  height: 0;
  border-top: 1px solid #ececec;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.divider::before {
  margin-top: -1px;
}

.divider::after {
  margin-top: 1px;
}

.divider i {
  background-color: #fff;
  color: #aaa;
  position: relative;
  z-index: 1;
  font-size: 20px;
  padding: 0 20px;
  line-height: 1;
}

.divider-2 {
  width: 100%;
  height: 1px;
  background-color: #ececec;
}

.bg-square {
  position: absolute;
  left: auto;
  top: 150px;
  right: 0%;
  bottom: auto;
  width: 100%;
  height: 100%;
  max-height: 70%;
  max-width: 45%;
  min-width: 300px;
  background-color: #f3fbf5;
  z-index: -1;
  max-height: 1200px;
}

.mobile-promotion {
  display: none;
}

.bg-green {
  background-color: #cee8e0;
}

/*modal*/
.custom-modal .modal-dialog {
  max-width: 888px !important;
  border-radius: 0px;
  overflow: hidden;
  border: 0;
  margin: auto;
  top: 50%;
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}

.custom-modal .modal-dialog .modal-content {
  border-radius: 25px;
  padding: 40px;
  border: 1px solid #BCE3C9;
}

.custom-modal .modal-dialog .btn-close {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 2;
}

.zoomContainer, .zoomWindow {
  z-index: 9999;
}

.single-product .zoomContainer, .single-product .zoomWindow {
  z-index: 99;
}

/*COMPONENTS -> BANNERS*/
.banner-left-icon {
  position: relative;
  background: #F4F6FA;
  padding: 20px;
  border-radius: 10px;
}

.banner-left-icon:hover .banner-icon {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.banner-left-icon .banner-icon {
  max-width: 60px;
  margin-right: 20px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.banner-left-icon .banner-text h3 {
  color: #242424;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.banner-left-icon .banner-text p {
  margin-bottom: 0;
  color: #adadad;
}

.banner-left-icon.style-2 {
  position: relative;
  border: 1px solid #ececec;
  padding: 20px;
}

.banner-img {
  position: relative;
  clear: both;
  border-radius: 10px;
  overflow: hidden;
}

.banner-img img {
  border-radius: 10px;
}

.banner-img:hover img {
  opacity: 0.9;
}

.banner-img.banner-1 .banner-text {
  top: 30%;
}

.banner-img.banner-1.home-3 {
  margin-bottom: 24px;
  border-radius: 10px;
  overflow: hidden;
  max-height: 348px;
}

.banner-img.banner-2 .banner-text {
  right: 10px;
}

.banner-img .banner-text {
  position: absolute;
  top: 50%;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0 50px;
}

.banner-img .banner-text span {
  color: #adadad;
}

.banner-img .banner-text h4 {
  font-weight: 700;
  margin-bottom: 15px;
  min-height: 100px;
}

.banner-img .banner-text:hover h4 {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.banner-img .banner-text a i {
  margin-left: 5px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  font-size: 10px;
}

.banner-img .banner-text a:hover i {
  margin-left: 10px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.banner-img.style-2 {
  border-radius: 15px;
  overflow: hidden;
  height: 520px;
  background: url(../imgs/banner/banner-4.png) no-repeat center bottom;
  background-size: cover;
  width: 100%;
}

.banner-img.style-2 .banner-text {
  top: 50px;
  -webkit-transform: none;
          transform: none;
}

.banner-img.style-3 {
  border-radius: 15px;
  overflow: hidden;
  height: 538px;
  background: url(../imgs/banner/banner-11.png) no-repeat center bottom;
  background-size: cover;
  width: 100%;
}

.banner-img.style-3 .banner-text {
  top: 50px;
  -webkit-transform: none;
          transform: none;
}

.banner-img.style-4 .banner-text h4 {
  font-size: 28px;
}

.banner-img.style-5 .banner-text {
  right: 0;
  padding: 0 30px;
}

.banner-img.style-6 .banner-text {
  right: 0;
  padding: 0 20px 0 0;
}

.banner-img.style-6 .banner-text h6 {
  font-size: 16px;
}

.banner-big .btn {
  background: #6c757d !important;
  color: #fff;
  border-radius: 3px;
  font-size: 13px;
  padding: 10px 22px;
  border: 0;
}

.banner-big .btn:hover {
  background: #FDC040 !important;
}

/*Deal banners*/
.deal {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  background-color: #fff;
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  max-height: 420px;
}

.deal > div {
  width: 100%;
}

.deal h2 {
  color: #FD6E6E;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 5px;
}

.deal h5 {
  color: #242424;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 20px;
  max-width: 240px;
}

.deal .deal-content {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.deal .product-title {
  max-width: 57%;
  margin-bottom: 20px;
  font-size: 45px;
  line-height: 1.23;
}

.deal .product-title a {
  color: #253D4E;
}

.deal .btn {
  background: #6c757d;
  border: 0;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  padding: 7px 10px;
}

.deal .btn i {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  font-size: 19px;
}

.deal .btn:hover i {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.deal .deal-bottom {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.deal .deal-bottom .deals-countdown {
  margin-left: -12px;
  margin-bottom: 20px;
}

.deal .deal-bottom .deals-countdown .countdown-section {
  border: 2px solid #6c757d;
  -webkit-box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.03);
          box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.03);
}

.banner-bg {
  background-position: center;
  background-size: cover;
  padding: 50px;
}

.banner-features {
  text-align: center;
  padding: 25px 15px;
  border-radius: 4px;
  border: 1px solid #ececec;
  -webkit-box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.03);
          box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.03);
}

.banner-features:hover {
  -webkit-box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.05);
          box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.05);
}

.banner-features img {
  display: inline-block;
  margin-bottom: 15px;
}

.banner-features h4 {
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  padding: 9px 8px 6px 8px;
  line-height: 1;
  border-radius: 4px;
  color: #6c757d;
}

/*Page > About*/
.hero-2 {
  padding: 160px 0 100px;
  min-height: 640px;
}

.hero-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-preferred-size: content;
      flex-basis: content;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: url(../imgs/page/home-6-bg.jpg) no-repeat center center;
  background-size: cover;
  height: 330px;
}

.hero-3 form {
  background-color: #fff;
  max-width: 520px;
  border-radius: 50px;
  -webkit-box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.07);
          box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.07);
}

.hero-3 form input {
  border: 0;
  border-radius: 50px 0 0 50px;
  padding-left: 58px;
  background: url(../imgs/theme/icons/icon-search.png) no-repeat 25px center;
}

.hero-3 form button {
  border: 0;
  border-radius: 50px;
}

.hero-3 .nav-link {
  font-size: 14px !important;
}

.parallax-wrapper {
  position: absolute;
  z-index: 3;
  width: 100%;
}

.parallax-wrapper .parallax-img-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.parallax-wrapper .parallax-img-area .parallax-img {
  position: absolute;
  z-index: 2;
  text-align: right;
}

.parallax-wrapper .parallax-img-area .parallax-img.img-1 {
  right: 0;
  width: 52%;
  z-index: 2;
  top: 100px;
}

.parallax-wrapper .parallax-img-area .parallax-img.img-2 {
  right: 220px;
  width: 52%;
  top: 40px;
  z-index: 3;
}

.parallax-wrapper .parallax-img-area .parallax-img.img-3 {
  opacity: 0.1 !important;
  left: -210px;
  width: 320px;
  top: 193px;
}

.parallax-wrapper .parallax-img-area .parallax-img.img-4 {
  opacity: 0.08 !important;
  width: 180px;
  left: 50%;
}

.parallax-wrapper .parallax-img-area .parallax-img.img-5 {
  right: 0;
  width: 12%;
  z-index: 2;
  opacity: 0.3;
  bottom: 20%;
}

.parallax-wrapper .parallax-img-area .parallax-img.img-6 {
  width: 25%;
  z-index: 3;
  opacity: 0.2;
  bottom: 0;
  left: -150px;
}

.parallax-wrapper .parallax-img-area .parallax-img.img-7 {
  opacity: 0.2 !important;
  width: 16%;
  top: 10%;
  left: 10%;
}

.parallax-wrapper .parallax-img-area .parallax-img.img-8 {
  opacity: 0.2 !important;
  width: 10%;
  bottom: 40%;
  left: 50%;
}

.hero-content {
  position: absolute;
  z-index: 4;
  width: 100%;
}

.hero-content h1 {
  line-height: 1.1;
}

.about-count {
  z-index: 100;
  position: relative;
  color: #fff;
  background: url(../imgs/page/about-9.png) no-repeat center center;
  border-radius: 15px;
  padding: 100px 0;
  overflow: hidden;
}

.about-count::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: #4B675A;
  z-index: 2;
  opacity: 0.8;
}

.about-count h1 {
  font-size: 72px;
  color: #fff;
}

.about-count h4 {
  color: #fff;
}

.about-count .text-center {
  z-index: 3;
  position: relative;
}

.hero-card-icon {
  width: 65px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-card-icon.icon-left {
  width: 165px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.single-content > ol {
  list-style-type: decimal;
  margin-bottom: 30px;
  padding-left: 1em;
}

.single-content > ol li:not(:last-child) {
  margin-bottom: 16px;
}

.single-content > ol ol {
  list-style-type: lower-alpha;
  margin: 20px 0 30px;
  padding-left: 25px;
}

.single-content > ol ol ol {
  list-style-type: lower-roman;
}

/*page 404*/
.page-404 {
  background-color: #fff;
}

.page-404 img {
  max-width: 300px;
}

.page-404 img.logo {
  max-width: 150px;
}

.page-404 .search-form {
  max-width: 400px;
  margin: 0 auto;
}

/*SHOP*/
.product-cart-wrap {
  position: relative;
  background-color: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-base);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}

.product-cart-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  border-color: rgba(188, 227, 201, 0.8);
}

.product-cart-wrap .product-img-action-wrap {
  position: relative;
  background-color: #fff;
  overflow: visible;
  padding: 0px;
}

/* .product-action-1 appearance is handled by the standalone rule below */

.product-cart-wrap .product-img-action-wrap .product-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 0;
  background: #f8fafc;
  border-bottom: 1px solid rgba(236, 236, 236, 0.9);
}

.product-cart-wrap .product-img-action-wrap .product-img a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.product-cart-wrap .product-img-action-wrap .product-img a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-cart-wrap .product-img-action-wrap .product-img a:hover img {
  transform: scale(1.03);
}

.product-cart-wrap .product-img-action-wrap .product-img a img.hover-img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s opacity, 0.25s visibility, transform 1.5s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
}

.product-cart-wrap .product-img-action-wrap .product-img-zoom a img {
  -webkit-transition: transform 1.5s cubic-bezier(0, 0, 0.05, 1), opacity 1.5s cubic-bezier(0, 0, 0.05, 1);
  transition: transform 1.5s cubic-bezier(0, 0, 0.05, 1), opacity 1.5s cubic-bezier(0, 0, 0.05, 1);
}

.product-cart-wrap .product-action-1 {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  z-index: 10;
  touch-action: manipulation;
}

.product-cart-wrap:hover .product-action-1,
.product-cart-wrap .product-action-1.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.product-cart-wrap .product-action-1 button, .product-cart-wrap .product-action-1 a.action-btn {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-right: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  border: 1px solid rgba(188, 227, 201, 0.7);
  color: #253D4E;
  transition: background-color .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
}

.product-cart-wrap .product-action-1 button:last-child, .product-cart-wrap .product-action-1 a.action-btn:last-child {
  border-right: none; /* already none */
}

.product-cart-wrap .product-action-1 button.small, .product-cart-wrap .product-action-1 a.action-btn.small {
  width: 32px;
  height: 32px;
  line-height: 32px;
}

.product-cart-wrap .product-action-1 button.small i, .product-cart-wrap .product-action-1 a.action-btn.small i {
  font-size: 12px;
}

.product-cart-wrap .product-action-1 button i, .product-cart-wrap .product-action-1 a.action-btn i {
  font-size: 14px;
  margin-left: 0;
}

.product-cart-wrap .product-action-1 button:hover, .product-cart-wrap .product-action-1 a.action-btn:hover {
  color: #F59E0B;
  background-color: #fff;
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.18);
  transform: scale(1.08);
}

.product-cart-wrap .product-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-cart-wrap .product-badges.product-badges-mrg {
  margin: 0 0 10px;
}

.product-cart-wrap .product-badges.product-badges-position {
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 9;
}

.product-cart-wrap .product-badges span {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  border-radius: 15px 0 20px 0;
  color: #fff;
  padding: 9px 20px 10px 20px;
}

.product-cart-wrap .product-badges span:last-child {
  margin-right: 0px;
}

.product-cart-wrap .product-badges span.hot {
  background-color: #f74b81;
}

.product-cart-wrap .product-badges span.new {
  background-color: #6c757d;
}

.product-cart-wrap .product-badges span.sale {
  background-color: #67bcee;
}

.product-cart-wrap .product-badges span.best {
  background-color: #f59758;
}

.product-cart-wrap .product-content-wrap {
  padding: 12px 14px 14px;
}

.product-cart-wrap .product-content-wrap .product-category {
  margin-bottom: 8px;
}

.product-cart-wrap .product-content-wrap .product-category a {
  color: #7a8a97;
  font-size: 12px;
}

.product-cart-wrap .product-content-wrap .product-category a:hover {
  color: #6c757d;
}

.product-cart-wrap .product-content-wrap h2,
.product-cart-wrap .product-content-wrap h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.35;
}

.product-cart-wrap .product-content-wrap h2 a,
.product-cart-wrap .product-content-wrap h3 a {
  color: #253D4E;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  min-height: 2.7em;
}

.product-cart-wrap .product-content-wrap h2 a:hover,
.product-cart-wrap .product-content-wrap h3 a:hover {
  color: #6c757d;
}

.product-cart-wrap .product-content-wrap .product-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  font-size: 12px;
  color: #6f7e8f;
  margin-bottom: 7px;
  flex-wrap: nowrap;
}

.product-cart-wrap .product-content-wrap .product-meta .product-rate {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.product-cart-wrap .product-content-wrap .product-score {
  font-size: 13px;
  font-weight: 700;
  color: #253D4E;
  line-height: 1;
  letter-spacing: -0.2px;
  flex-shrink: 0;
}

.product-cart-wrap .product-content-wrap .product-review-count {
  white-space: nowrap;
  font-size: 11px;
  font-weight: 400;
  color: #b0bbc8;
  margin-left: 2px;
}

.product-cart-wrap .product-content-wrap .product-price {
  padding-top: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px 6px;
}

.product-cart-wrap .product-content-wrap .product-price span:not(.old-price):not(.indirim) {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.15;
  color: #16A34A;
  flex: 0 0 100%;
  order: 3;
  margin-top: 2px;
}

.product-cart-wrap .product-content-wrap .product-price span.new-price {
  color: #16A34A;
  flex: 0 0 100%;
  order: 3;
  margin-top: 2px;
}

.product-cart-wrap .product-content-wrap .product-price span.old-price {
  font-size: 12.5px;
  color: #9ba8b4;
  text-decoration: line-through;
  order: 1;
  font-weight: 400;
  opacity: 0.65;
}

.product-cart-wrap .product-content-wrap .product-price .indirim {
  color: #D97706;
  font-weight: 700;
  font-size: 11px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-lg);
  padding: 2px 7px;
  line-height: 1.5;
  order: 2;
}

.product-cart-wrap .product-content-wrap .product-price .old-price + .indirim {
  background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.12);
}

.product-cart-wrap .product-content-wrap .rating-result {
  display: flex;
}

.product-cart-wrap .product-content-wrap .rating-result > span {
  display: block;
  overflow: hidden;
  margin-left: 5px;
}

.product-cart-wrap .product-content-wrap .rating-result::before {
  font-family: "uicons-regular-straight"  !important;
  font-size: 11px;
  letter-spacing: 2px;
  content: '\f225' '\f225' '\f225' '\f225' '\f225';
  color: #F59E0B;
}

.product-cart-wrap .product-card-bottom {
  margin-top: 6px;
}

.product-cart-wrap .product-card-bottom .add-cart {
  flex-shrink: 0;
}

.product-cart-wrap .product-card-bottom .add-cart .add {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 17px;
  min-width: 110px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #F59E0B 0%, #D97706 100%);
  border: 1px solid transparent;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.22);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.product-cart-wrap .product-card-bottom .add-cart .add:hover {
  background: linear-gradient(180deg, #D97706 0%, #B45309 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(217, 119, 6, 0.26);
}

@media (max-width: 768px) {
  .product-cart-wrap .product-img-action-wrap .product-img {
    min-height: 0;
  }

  .product-cart-wrap .product-action-1 {
    display: none;
  }

  .product-cart-wrap .product-action-1 button, .product-cart-wrap .product-action-1 a.action-btn {
    width: 28px;
    height: 28px;
    line-height: 28px;
  }

  .product-cart-wrap .product-action-1 button i, .product-cart-wrap .product-action-1 a.action-btn i {
    font-size: 13px;
  }

  .product-cart-wrap .product-content-wrap {
    padding: 10px 12px 12px;
  }

  .product-cart-wrap .product-content-wrap h2 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .product-cart-wrap .product-content-wrap .product-meta {
    margin-bottom: 6px;
  }

  .product-cart-wrap .product-content-wrap .product-price span:not(.old-price):not(.indirim) {
    font-size: 18px;
  }

  .product-cart-wrap .product-content-wrap .product-price span.old-price {
    font-size: 11.5px;
  }

  .product-cart-wrap .product-content-wrap .product-price .indirim {
    font-size: 10.5px;
    padding: 2px 6px;
  }

  .product-cart-wrap .product-card-bottom {
    margin-top: 5px;
  }

  .product-cart-wrap:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
  }

  .product-cart-wrap .product-card-bottom .add-cart {
    width: 100%;
  }

  .product-cart-wrap .product-card-bottom .add-cart .add {
    width: 100%;
  }
}

.product-cart-wrap .product-stock .status-bar {
  background-color: #ededed;
  margin: 0px 0 10px;
  border-radius: 5px;
}

.product-cart-wrap .product-stock .status-bar .sold-bar {
  background-image: linear-gradient(90deg, #16A34A 0%, #22C55E 100%);
  border-radius: 4px;
  height: 8px;
}

.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-33 {
  width: 33.333333333333%;
}

.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-10 {
  width: 10%;
}

.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-40 {
  width: 40%;
}

.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-6 {
  width: 6.6666666666667%;
}

.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-42 {
  width: 42.857142857143%;
}

.product-cart-wrap .product-stock .product-stock-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-cart-wrap .product-stock .product-stock-status .sold {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-right: 20px;
}

.product-cart-wrap .product-stock .product-stock-status .available {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.product-cart-wrap .product-stock .product-stock-status .stock-status-same-style span {
  font-size: 15px;
}

.product-cart-wrap .product-stock .product-stock-status .stock-status-same-style span.label {
  color: #253D4E;
}

.product-cart-wrap .product-stock .product-stock-status .stock-status-same-style span.value {
  font-weight: 700;
  color: #333;
}

.product-cart-wrap .progress {
  height: 5px;
}

.product-cart-wrap:hover .product-img-action-wrap .product-img a img.hover-img {
  opacity: 1;
  visibility: visible;
}

.product-cart-wrap:hover .product-img-action-wrap .product-action-1 {
  opacity: 1;
  visibility: visible;
}

.product-cart-wrap:hover .product-img-zoom a img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05) translateZ(0);
  transform: scale3d(1.05, 1.05, 1.05) translateZ(0);
}

.product-cart-wrap.small {
  border: 0;
  text-align: center;
}

.product-cart-wrap.small .rating-result {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.product-cart-wrap.small .product-content-wrap {
  padding: 5px 15px 0 15px;
}

.product-cart-wrap.small .product-price {
  padding-top: 0;
}

.product-cart-wrap.small:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.product-cart-wrap.small h2 {
  border-bottom: 0;
  padding: 0;
  margin-bottom: 0;
}

.product-cart-wrap.small .product-badges span {
  font-size: 10px;
}

.product-cart-wrap.style-2 {
  border: 0;
  padding-bottom: 25px;
}

.product-cart-wrap.style-2:hover {
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.product-cart-wrap.style-2 .product-img-action-wrap {
  padding: 0;
  position: relative;
  z-index: 1;
  max-height: unset;
}

.product-cart-wrap.style-2 .product-img-action-wrap img {
  border-radius: 15px;
}

.product-cart-wrap.style-2 .product-content-wrap {
  position: relative;
  margin-top: -90px;
  z-index: 3;
  padding: 0;
  max-width: 86%;
  margin-left: auto;
  margin-right: auto;
  transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  -o-transition: .3s;
}

.product-cart-wrap.style-2 .product-content-wrap .deals-content {
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px 30px;
}

.product-cart-wrap.style-2 .product-content-wrap .deals-countdown-wrap {
  position: absolute;
  top: -80px;
  width: 100%;
  text-align: center;
}

.product-cart-wrap.style-2:hover .product-content-wrap {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  -o-transition: .3s;
}

.product-price {
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
}

.product-list-small article:not(:last-child) {
  margin-bottom: 20px;
}

.product-list-small h6 a {
  color: #253D4E;
}

.product-list-small h6 a:hover {
  color: #6c757d;
}

.product-list-small figure img {
  min-height: 100%;
  float: left;
  border-right: 1px solid #ddd;
}

.product-list-small .product-price {
  color: #6c757d;
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
}

.product-list-small .product-price span.old-price {
  font-size: 14px;
  color: #adadad;
  text-decoration: line-through;
}

.range .list-group-item {
  position: relative;
  display: block;
  padding: 0;
  background: none;
  border: 0;
}

.range .checkbox {
  font-size: 0.8em;
}

.range .price-filter {
  display: block;
  margin-top: 20px;
}

.range #slider-range {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  height: 4px;
  border-radius: 0px;
  background: #6c757d;
  color: #6c757d;
}

.range #slider-range .ui-slider-range {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #222;
  border-radius: 0px;
  border: none;
}

.range .ui-slider-handle.ui-state-default.ui-corner-all {
  width: 14px;
  height: 14px;
  line-height: 10px;
  background: #6c757d;
  border: none;
  border-radius: 100%;
  top: -5px;
}

.range .label-input {
  margin-top: 15px;
}

.range .label-input span {
  margin-right: 5px;
  color: #282828;
}

.range .label-input input {
  border: none;
  margin: 0;
  height: unset;
  font-weight: 600;
  font-size: 14px;
  background: transparent;
  padding-left: 0;
}

.range .check-box-list {
  margin-top: 15px;
}

.range .check-box-list li {
  margin-bottom: 5px;
}

.range .check-box-list li:last-child {
  margin: 0;
}

.range .check-box-list li label {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  cursor: pointer;
}

.range .check-box-list li label input {
  display: inline-block;
  margin-right: 6px;
  position: relative;
  top: 1px;
}

.range .check-box-list .count {
  margin-left: 5px;
  color: #666;
}

.btn.btn-small {
  line-height: 1;
  padding: 10px 15px;
  min-width: unset;
  display: table;
  border-radius: 3px;
}

.product-sidebar .single-post {
  position: relative;
}

.product-sidebar .single-post:not(:last-child) {
  margin-bottom: 10px;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
  padding-bottom: 10px;
}

.product-sidebar .single-post .content {
  padding-left: 95px;
}

.product-sidebar .single-post i {
  font-size: 12px;
}

.product-sidebar .image {
  height: 80px;
  width: 80px;
  float: left;
  margin-right: 10px;
  overflow: hidden;
}

.shop-product-fillter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 30px;
}

.shop-product-fillter.style-2 {
  padding-bottom: 20px;
  border-bottom: 1px solid #ececec;
}

.shop-product-fillter .sort-by-product-area {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.shop-product-fillter .sort-by-product-area .sort-by-cover {
  position: relative;
}

.shop-product-fillter .sort-by-product-area .sort-by-product-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border: 1px solid #f7f8f9;
  color: #777;
  padding: 9px 16px;
  border-radius: 10px;
  -webkit-transition: background-color .3s ease, box-shadow .3s ease, color .3s ease;
  transition: background-color .3s ease, box-shadow .3s ease, color .3s ease;
  cursor: pointer;
  border: 1px solid #ececec;
}

.shop-product-fillter .sort-by-product-area .sort-by-product-wrap:hover {
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

.shop-product-fillter .sort-by-product-area .sort-by-product-wrap .sort-by {
  margin-right: 5px;
}

.shop-product-fillter .sort-by-product-area .sort-by-product-wrap .sort-by i {
  margin-right: 10px;
  font-size: 14px;
  color: #ababab;
  position: relative;
  top: 2px;
}

.shop-product-fillter .sort-by-product-area .sort-by-product-wrap .sort-by span {
  font-size: 13px;
  font-weight: 500;
}

.shop-product-fillter .sort-by-product-area .sort-by-product-wrap .sort-by-dropdown-wrap span {
  font-size: 13px;
  font-weight: 500;
  color: #2b2b2b;
}

.shop-product-fillter .sort-by-product-area .sort-by-product-wrap .sort-by-dropdown-wrap span i {
  font-size: 15px;
  color: #2b2b2b;
  margin-left: 10px;
  position: relative;
  top: 2px;
}

.sort-by-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
  right: 0;
  padding: 16px 0 21px;
  background: #fff;
  border: 0;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  min-width: 100%;
  -webkit-box-shadow: 0 -3px 23px rgba(0, 0, 0, 0.06);
  box-shadow: 0 -3px 23px rgba(0, 0, 0, 0.06);
  color: #2b2b2b;
  font-weight: 500;
}

.sort-by-dropdown.show {
  opacity: 1;
  visibility: visible;
}

.sort-by-dropdown ul li {
  display: block;
}

.sort-by-dropdown ul li a {
  font-weight: 500;
  font-size: 13px;
  padding: 5px 30px;
  display: block;
  position: relative;
  color: #2b2b2b;
}

.sort-by-dropdown ul li a.active::before {
  content: "\f143";
  position: absolute;
  top: 5px;
  left: 10px;
  font-size: 12px;
  color: #6c757d;
  font-family: 'uicons-regular-straight'  !important;
  font-weight: 900;
}

.sort-by-dropdown ul li a.active:hover::before {
  color: #fff;
}

.sort-by-dropdown ul li a:hover {
  background-color: #6c757d;
  color: #ffffff;
}

/*Product list*/
.product-list {
  position: relative;
}

.product-list .product-cart-wrap {
  border: 0;
  border-radius: 0;
  overflow: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-list .product-cart-wrap:not(:last-child) {
  margin-bottom: 30px;
}

.product-list .product-cart-wrap:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.product-list .product-cart-wrap:hover .product-img {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.product-list .product-cart-wrap .product-badges.product-badges-position {
  left: 0;
  top: 0;
}

.product-list .product-cart-wrap .product-img-action-wrap {
  max-width: 28%;
  position: relative;
  padding: 0;
  max-height: unset;
}

.product-list .product-cart-wrap .product-img-action-wrap .product-img {
  border: 1px solid #ececec;
  border-radius: 15px;
}

.product-list .product-cart-wrap .product-img-action-wrap .product-img .product-img-inner {
  overflow: hidden;
  padding: 10px;
}

.product-list .product-img-inner img {
  height: auto;
}

.product-list .product-cart-wrap h2 {
  font-size: 32px;
}

.product-list .product-category a {
  font-size: 16px;
  margin-top: 15px;
  display: block;
}

.product-list .product-price span {
  font-size: 32px;
}

.product-list .product-price .old-price {
  font-size: 20px;
}

.product-list .product-action-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  bottom: unset;
  padding: 0 20px;
  margin-top: 20px;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

.product-list .product-action-1 .action-btn {
  border: none;
  width: auto;
  border-radius: 50px;
  background-color: #6c757d;
  color: #fff;
  text-align: center;
  margin-right: 0;
  position: relative;
  display: inline-block;
  padding: 0px 23px;
  height: 44px;
  font-weight: 500;
}

.product-list .product-action-1 .action-btn i {
  margin-right: 8px;
  color: #fff;
}

/*PRODUCT DETAILS*/
.detail-gallery {
  position: relative;
}

.detail-gallery .zoom-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  font-size: 22px;
  opacity: 0.6;
}

.slider-nav-thumbnails .slick-list {
  margin: 0 -10px;
}

.slider-nav-thumbnails .slick-slide {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.slider-nav-thumbnails .slick-slide img {
  border-radius: 17px;
}

.slider-nav-thumbnails .slick-slide.slick-current::before {
  border-bottom: 5px solid #333;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  content: "";
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  top: -6px;
  width: 0;
}

.slider-nav-thumbnails .slick-slide.slick-current img {
  border: 2px solid #a2d2c9;
}

.slider-nav-thumbnails div.slick-slide {
  margin: 0 10px;
}

.slider-nav-thumbnails button {
  opacity: 0;
}

.slider-nav-thumbnails button.slick-arrow {
  margin: 0;
  border: 0;
  background: #F2F3F4;
  border-radius: 40px;
  width: 40px;
  height: 40px;
  line-height: 44px;
  font-size: 24px;
  z-index: 9;
  color: #2b2b2b;
}

.slider-nav-thumbnails button.slick-arrow:hover {
  color: #fff;
  background-color: #6c757d;
}

.slider-nav-thumbnails button.slick-arrow.slick-prev {
  left: -20px;
}

.slider-nav-thumbnails button.slick-arrow.slick-next {
  right: -20px;
}

.slider-nav-thumbnails:hover button {
  opacity: 1;
}

.slider-nav-thumbnails .slick-prev,
.slider-nav-thumbnails .slick-next {
  font-size: 12px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.product-rate {
  background-image: url("../images/rating-stars.png");
  background-position: 0 -12px;
  background-repeat: repeat-x;
  height: 12px;
  width: 72px;
}

.product-rating {
  height: 12px;
  background-repeat: repeat-x;
  background-image: url("../images/rating-stars.png");
  background-position: 0 0;
}

.list-filter {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
  width: 100%;
}

.list-filter li {
  display: inline-block;
}

.list-filter li a {
  text-align: center;
  transition: background-color 0.5s ease-out, color 0.5s ease-out, border-color 0.5s ease-out;
  -webkit-transition: background-color 0.5s ease-out, color 0.5s ease-out, border-color 0.5s ease-out;
}

.color-filter.list-filter a span {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 40px;
}

.color-filter.list-filter a span.product-color-white {
  border: 1px solid #ddd;
}

.color-filter.list-filter li.active a::before {
  content: "";
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  position: absolute;
  right: 3px;
  top: -3px;
  background: #4cd964;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
}

.size-filter.list-filter a {
}

.size-filter.list-filter li a {border-radius: 3px;border: solid 2px #999999;font-size: 13px;color: #333333;padding: 5px 10px 4px;cursor: pointer;margin-right: 10px;margin-bottom: 2.5px;margin-top: 2.5px;}

.size-filter.list-filter li a:hover,
.size-filter.list-filter li.active a {
  color: #fff;
  background-color: #ef637c;
  border-color: #b9374c;
}

.detail-qty {
  max-width: 80px;
  padding: 9px 20px;
  position: relative;
  width: 100%;
  border-radius: 5px;
}

.detail-qty > a {
  font-size: 16px;
  position: absolute;
  right: 8px;
  color: #6c757d;
}

.detail-qty > a:hover {
  color: #29A56C;
}

.detail-qty > a.qty-up {
  top: 0;
}

.detail-qty > a.qty-down {
  bottom: -4px;
}

.attr-detail .select-box select {
  height: 40px;
  width: 100%;
}

.attr-detail.attr-brand {
  margin-top: 23px;
}

.attr-detail.attr-brand .select-box {
  display: block;
  margin-bottom: 20px;
}

.attr-detail.attr-color table {
  margin-bottom: 15px;
}

.detail-extralink > div {
}

.detail-extralink .detail-qty {
  margin: 0 6px 15px 0;
  background: #fff;
  border: 2px solid #6c757d !important;
  font-size: 16px;
  font-weight: 700;
  color: #6c757d;
  border-radius: 5px;
  padding: 11px 20px 11px 15px;
  max-width: 75px;
  float: left;
}

.stock-status {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.stock-status.in-stock {
  background: #DEF9EC;
  color: #6c757d;
}

.stock-status.out-stock {
  color: #f74b81;
  background: #fde0e9;
}

.detail-info .product-price-cover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 10px;
}

.detail-info .product-price-cover .product-price {
  line-height: 1;
}

.detail-info .product-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.detail-info .product-price .current-price {
  font-size: 30px;
  text-decoration: none;
  font-weight: 900;
}

.detail-info .product-price .old-price {
  text-decoration: line-through;
  color: #B6B6B6;
  margin-left: 20px;
  font-size: 24px;
  font-weight: 700;
  display: block;
}

.detail-info .product-price .save-price {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #FDC040;
}

.detail-info .product-meta {
  border-top: 1px solid #ececec;
  padding-top: 15px;
}

.button.button-add-to-cart {
  padding: 8px 40px;
}

.product-extra-link2 a {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #f1f1f1;
  color: #333;
  border-radius: 5px;
  display: inline-block;
  height: 50px;
  line-height: 55px;
  position: relative;
  text-align: center;
  vertical-align: top;
  width: 50px;
  margin: 0 5px;
  transition: background-color 0.5s ease-out, color 0.5s ease-out, transform 0.5s ease-out;
  -webkit-transition: background-color 0.5s ease-out, color 0.5s ease-out, transform 0.5s ease-out;
}

.product-extra-link2 a:hover {
  background-color: #6c757d;
  color: #fff;
}

.product-extra-link2 a:hover i {
  opacity: 1;
}

.product-extra-link2 a i {
  font-size: 18px;
  margin-top: 15px;
  display: -webkit-inline-box;
}

.product-extra-link2 .button.button-add-to-cart {
  position: relative;
  padding: 0px 10px;
  border-radius: 5px;
  border: 0;
  height: 50px;
  line-height: 50px;
  font-weight: 700;
  font-size: 14px;
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
}

.product-extra-link2 .button.button-add-to-cart i {
  margin-right: 10px;
}

.product-info {
  border: 1px solid #ececec;
  border-radius: 15px;
  padding: 40px 50px;
}

.tab-style3 .nav-tabs .nav-item a.active, .tab-style3 .nav-tabs .nav-item a:hover {
  color: #6c757d;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

.tab-style3 .nav-tabs li.nav-item a {
  display: block;
  padding: 13px 24px !important;
  text-align: center;
  font-weight: 700;
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
  text-transform: none;
  font-size: 17px;
  border-radius: 30px;
  border: 1px solid #ececec;
  background: #fff;
  color: #2b2b2b;
}

.tab-content.shop_info_tab {
  margin-top: 40px;
}

.tab-pane .comments-area {
  padding-top: 0;
  border: 0;
  max-height: 580px;
  overflow-x: hidden;
  overflow-y: scroll;
}

.product-color-red {
  background: #ff596d;
}

.product-color-yellow {
  background: #ffdb33;
}

.product-color-white {
  background: #ffffff;
}

.product-color-orange {
  background: #ffbb51;
}

.product-color-cyan {
  background: #80e6ff;
}

.product-color-green {
  background: #38cf46;
}

.product-color-purple {
  background: #ff8ff8;
}

.detail-gallery .product-image-slider {
  background-color: #fff;
  margin-bottom: 30px;
  border-radius: 15px;
  border: 1px solid #ececec;
  overflow: hidden;
}

.detail-gallery .product-image-slider img {
  opacity: 1;
  border-radius: 16px;
}

.detail-gallery .product-image-slider.slider-nav-thumbnails {
  background: none;
  border-radius: 0;
}

.detail-gallery .product-image-slider button.slick-arrow {
  background: none;
  border: 0;
  padding: 0;
  font-size: 14px;
}

.detail-gallery .product-image-slider button.slick-arrow i {
  color: #adadad;
}

.mail-to-friend {
  color: #adadad;
  font-size: 12px;
}

.mail-to-friend i {
  margin-right: 5px;
}

.attr-color, .attr-size {
    float: left;
    width: 100%;
}

.product-detail-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product-detail .section-title.style-1 {
  font-size: 22px;
}

.product-more-infor {
  padding: 0 0 0px 14px;
}

.product-more-infor li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 10px;
  position: relative;
}

.product-more-infor li ::before {
  position: absolute;
  left: -14px;
  top: 9px;
  content: "";
  height: 6px;
  width: 6px;
  border-radius: 100%;
  background-color: #9b9b9b;
}

.product-more-infor li span {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 165px;
  flex: 0 0 165px;
  display: inline-block;
}

.product-more-infor li:last-child {
  margin: 0 0 0;
}

.progress + .progress {
  margin-top: 1rem;
}

.progress span {
  line-height: 16px;
  background: #fff;
  padding-right: 10px;
  width: 70px;
}

.progress-bar {
  background-color: #6c757d;
}

.shop-filter-toogle {
  margin-bottom: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-radius: 30px;
  border: 1px solid #ececec;
  font-size: 17px;
  font-weight: 700;
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  padding: 10px 20px;
}

.shop-filter-toogle i {
  margin-left: 5px;
  color: #B6B6B6;
}

.shop-filter-toogle i.angle-down {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.shop-filter-toogle .fi-rs-filter {
  font-size: 14px;
  color: #B6B6B6;
}

.shop-filter-toogle.active i.angle-down {
  opacity: 1;
  visibility: visible;
  display: inline-block;
}

.shop-filter-toogle.active i.angle-up {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.shop-product-fillter-header .card {
  border: 1px solid #ececec;
  border-radius: 20px;
  margin-bottom: 50px;
  padding: 30px 40px;
  -webkit-box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.03);
  box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.03);
}

.shop-product-fillter-header .categor-list li {
  font-size: 12px;
}

.shop-product-fillter-header .categor-list li + li {
  border-top: 1px solid #f7f8f9;
  padding-top: 5px;
  margin-top: 5px;
}

.shop-product-fillter-header .categor-list li a {
  font-size: 14px;
  color: #2b2b2b;
  margin-right: 10px;
}

.shop-product-fillter-header .categor-list li a:hover {
  color: #6c757d;
}

.shop-product-fillter-header .color-filter {
  border-bottom: 1px solid #ececec;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.shop-product-fillter-header .product-rate-cover + .product-rate-cover {
  margin-top: 15px;
}

.shopping-summery table > :not(caption) > * > * {
  padding: 15px 0;
}

.shopping-summery table td, .shopping-summery table th, .shopping-summery table thead {
  border: 0;
  vertical-align: top;
}

.shopping-summery table thead th {
  background-color: #efefef;
  padding: 10px;
  border-right: 1px solid #e1e1e1;
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #253D4E;
}

.shopping-summery table thead th.start {
}

.shopping-summery table thead th.end {
}

.shopping-summery table tbody tr img {
  max-width: 120px;
  border: 1px solid #ececec;
  border-radius: 15px;
  margin: 0 auto;
  display: block;
}

table.no-border td, table.no-border th, table.no-border thead {
  border: 0;
}

.shipping_calculator .custom_select .select2-container {
  max-width: unset;
}

.shipping_calculator .custom_select .select2-container--default .select2-selection--single {
  border-radius: 10px;
  height: 64px;
  line-height: 64px;
}

.shipping_calculator .custom_select .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 64px;
}

.shipping_calculator .custom_select .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.shipping_calculator .w-100 .select2-container {
  max-width: unset;
  min-width: 445.5px;
}

.cart-totals {
  border-radius: 15px;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px 40px;
  background: #fff;
}

.order_review {
  border: 1px solid #ececec;
  padding: 30px;
  border-radius: 10px;
}

.toggle_info {
  padding: 12px 20px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #ececec;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

.login_form .panel-body, .coupon_form .panel-body {
  border: 1px solid #ececec;
  padding: 30px;
  margin-top: 30px;
  border-radius: 10px;
}

.payment_option .custome-radio {
  margin-bottom: 10px;
}

.payment_option .custome-radio .form-check-label {
  color: #292b2c;
  font-weight: 600;
}

.custome-radio .form-check-label::before {
  content: "";
  border: 1px solid #908f8f;
  height: 16px;
  width: 16px;
  display: inline-block;
  border-radius: 100%;
  vertical-align: middle;
  margin-right: 8px;
}

.custome-radio input[type="radio"] + .form-check-label::after {
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 100%;
  position: absolute;
  top: 9px;
  left: 3px;
  opacity: 0;
}

.custome-radio input[type="radio"]:checked + .form-check-label::after {
  opacity: 1;
  background-color: #6c757d;
}

.related-products .product-img-action-wrap {
  padding: 0;
  margin-bottom: 15px;
}

.col-lg-4-5 .product-cart-wrap .product-action-1 a.action-btn {
  width: 35px;
}

.col-lg-4-5 .countdown-section .countdown-amount {
  width: 38px;
}

.zoomWindow {
  border-radius: 15px;
  overflow: hidden;
}

.table-wishlist {
  border: 0;
  background: #fff;
  min-width: 700px;
}

.apply-coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.apply-coupon input {
  height: 51px;
  border-radius: 10px 0 0 10px;
  background-image: url("../imgs/theme/icons/coupon.png");
  background-position: 20px center;
  background-repeat: no-repeat;
  padding-left: 50px;
}

.apply-coupon button {
  min-width: 150px;
  height: 51px;
  border-radius: 0 10px 10px 0;
  background-color: #253D4E;
}

.apply-coupon button:hover {
  background-color: #6c757d;
}

.order_table table .product-thumbnail img {
  max-width: 120px;
  border-radius: 15px;
  border: 1px solid #ececec;
  padding: 5px;
}

.order_table table .w-160 {
  max-width: 160px;
}

.table.table-compare {
  border-radius: 15px;
}

.table.table-compare > :not(caption) > * > * {
  padding: 30px 0;
}

.mw-200 {
  min-width: 200px;
}

/*BLOG*/
.archive-header {
  background: url(../imgs/blog/header-bg.png) no-repeat center center;
  border-radius: 20px;
  padding: 70px 80px;
  background-size: cover;
}

.tags-list li {
  display: inline-block;
  margin: 0 15px 0 0;
}

.tags-list li a {
  background-color: #fff;
  display: inline-block;
  border-radius: 30px;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  padding: 10px 20px;
  border: 1px solid #ececec;
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.tags-list li a i {
  color: #B6B6B6;
  font-size: 10px;
}

.tags-list li.active a {
  color: #253D4E;
}

.post-list article:not(:last-child) {
  margin-bottom: 20px;
}

.post-list .post-thumb {
  max-width: 221px;
  overflow: hidden;
}

.post-list .post-thumb a {
  margin-bottom: 0;
}

.post-list .post-title {
  font-weight: 500;
}

.post-list .post-title a {
  color: #253D4E;
}

.single-content {
  text-rendering: optimizeLegibility;
  color: #253D4E;
  font-size: 17px;
}

.single-content h1 {
  font-size: 56px;
  line-height: 72px;
  margin-bottom: 32px;
}

.single-content h2 {
  font-size: 48px;
  line-height: 64px;
  margin-bottom: 30px;
}

.single-content h3 {
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 28px;
}

.single-content h4 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 26px;
}

.single-content h5 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 24px;
}

.single-content h6 {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.single-content p {
  margin-bottom: 1.2em;
  font-weight: 400;
}

.single-content ul {
  list-style: circle;
  padding-left: 1rem;
  font-size: 1rem;
}

.single-content ul li {
  position: relative;
  margin-bottom: 7px;
}

.single-content ol li {
  font-size: 1rem;
}

.single-content .single-excerpt {
  font-size: 24px;
  line-height: 32px;
}

.single-content p {
  color: #253D4E;
  font-size: 17px;
}

.single-content blockquote {
  background-color: #F4F6FA;
  padding: 40px 60px;
  border-radius: 15px;
  margin: 30px auto;
  font-size: 24px;
  max-width: 80%;
}

.single-content blockquote p {
  font-size: 24px;
  line-height: 32px;
  color: #2b2b2b;
  margin-bottom: 0;
}

.single-header {
  margin-bottom: 30px;
}

.single-header .entry-meta.meta-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single-header .single-header-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single-header .single-header-meta .social-icons ul {
  margin-top: 15px;
}

.single-thumbnail {
  margin-bottom: 30px;
}

.single-thumbnail img {
  border-radius: 15px;
  overflow: hidden;
}

.entry-bottom {
  border-top: 1px solid #ececec;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.entry-bottom .social-icons ul {
  margin-top: 15px;
}

.entry-bottom .social-icons ul img {
  width: 20px;
  opacity: .6;
}

.author-bio {
  border-radius: 15px;
  border: 1px solid #ececec;
}

.author-bio .author-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.author-bio .author-image img {
  margin-right: 10px;
}

.author-bio .author-image p {
  font-size: 14px;
}

/*Entry meta*/
.entry-meta {
  line-height: 1;
}

.entry-meta.meta-2 .author-img img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.entry-meta.meta-2 .author-name {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-top: 5px;
}

.entry-meta.meta-2 a.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
}

.entry-meta .author-add {
  font-size: 12px;
}

.entry-meta.meta-1 span {
  margin-right: 10px;
}

.entry-meta.meta-1 a.text-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.entry-meta.meta-1 a.text-brand i {
  margin-left: 5px;
}

.entry-meta.meta-0 span {
  padding: 4px 10px 4px 19px;
  font-size: 11px;
  letter-spacing: 0.8px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 30px;
  position: relative;
  margin-left: -5px;
}

.entry-meta.meta-0 span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: none;
  margin-right: 3px;
  border-radius: 5px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 8px;
  margin-top: -3px;
  border: 1px solid #6c757d;
}

.entry-meta .author-avatar img {
  max-width: 30px;
  margin-right: 5px;
}

span.has-dot {
  position: relative;
  padding-left: 10px;
}

span.has-dot::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #d2d2d2;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  display: block;
  left: -2px;
}

h6.post-title {
  font-size: 14px;
}

.post-title a {
  color: #253D4E;
}

.post-title a:hover {
  color: #6c757d;
}

.post-thumb {
  overflow: hidden;
  position: relative;
  width: 250px;
}

.post-thumb.border-radius-5 img {
  border-radius: 5px;
}

.post-thumb a {
  line-height: 1;
}

.post-thumb .entry-meta {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.post-thumb .entry-meta a {
  display: inline-block;
  color: #fff !important;
  background-color: #FDC040;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 35px;
}

/*Loop Grid*/
.loop-grid {
  position: relative;
}

.loop-grid article {
  position: relative;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-evenly;
}

.loop-grid .entry-content {
  padding: 30px;
}

.loop-grid .entry-content-2 {
  padding: 20px 30px;
  text-align: left;
  width: calc(100% - 250px);
}

.loop-grid.loop-list {
  position: relative;
}

.loop-grid.loop-list article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #ececec;
  border-radius: 15px;
}

.loop-grid.loop-list article:not(:last-child) {
  margin-bottom: 30px;
}

.loop-grid.loop-list article .post-thumb {
  min-height: 366px;
  min-width: 438px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  transition: background-position 0.4s ease, transform 0.4s ease;
  -webkit-transition: background-position 0.4s ease, transform 0.4s ease;
  -moz-transition: background-position 0.4s ease, transform 0.4s ease;
  -ms-transition: background-position 0.4s ease, transform 0.4s ease;
}

.img-hover-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 280px;
  overflow: hidden;
  transition: background-position 0.4s ease, transform 0.4s ease;
  -webkit-transition: background-position 0.4s ease, transform 0.4s ease;
  -moz-transition: background-position 0.4s ease, transform 0.4s ease;
  -ms-transition: background-position 0.4s ease, transform 0.4s ease;
}

.top-right-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  border-radius: 5px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  z-index: 3;
  color: #fff;
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.4s ease;
  -webkit-transition: background-color 0.4s ease, color 0.4s ease, transform 0.4s ease;
  -moz-transition: background-color 0.4s ease, color 0.4s ease, transform 0.4s ease;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -ms-transition: background-color 0.4s ease, color 0.4s ease, transform 0.4s ease;
}

.top-left-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  display: inline-block;
  color: #fff !important;
  background-color: #FDC040;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 35px;
}

.entry-meta.meta-1, .entry-meta.meta-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.entry-meta.meta-1.meta-3, .entry-meta.meta-2.meta-3 {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.entry-meta a.read-more {
  font-size: 12px;
  border-radius: 30px;
  border: 1px solid #abd7ab;
  padding: 10px 15px;
  color: #98ca98;
  font-weight: 600;
  display: inline-block;
}

.invoice-content .invoice-header-1 {
  text-transform: uppercase;
  font-weight: 700;
}

.invoice-content .invoice-header-2 {
  text-transform: uppercase;
  font-weight: 600;
}

.invoice-content .invoice-title-1 {
  font-size: 18px;
}

.invoice-content .invoice-addr-1 {
  font-size: 15px;
  margin-bottom: 20px;
}

.invoice-content .item-desc-1 {
  text-align: left;
}

.invoice-content .item-desc-1 span {
  display: block;
}

.invoice-content .item-desc-1 small {
  display: block;
}

.invoice-content .important-notes-list-1 {
  font-size: 13px !important;
  padding-left: 15px;
  margin-bottom: 15px;
  list-style: disc;
}

.invoice-content .important-notes-list-1 li {
  margin-bottom: 5px;
}

.invoice-content .bank-transfer-list-1 {
  font-size: 13px !important;
  padding-left: 0px;
}

.invoice-content .important-notes {
  font-size: 12px !important;
}

.invoice-content .invoice-btn-section {
  text-align: center;
  margin-top: 30px;
}

.invoice-content .btn-lg {
  font-size: 16px;
  font-weight: 600;
  height: 50px;
  padding: 0 35px;
  line-height: 50px;
  border-radius: 3px;
  color: #ffffff;
  border: none;
  margin: 3px;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  text-transform: capitalize;
  -webkit-transition: background-color 0.3s linear, border-color 0.3s linear, color 0.3s linear;
  transition: background-color 0.3s linear, border-color 0.3s linear, color 0.3s linear;
  z-index: 1;
  position: relative;
  overflow: hidden;
  text-align: center;
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
}

.invoice-content .btn-check:focus + .btn,
.invoice-content .btn:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.invoice-content .btn-download {
  background: #6c757d;
}

.invoice-content .btn-download:after {
  background: #29A56C;
}

.invoice-content .btn-print {
  background: #253D4E;
}

.invoice-content .btn-print:after {
  background: #242424;
}

.invoice-content .invoice-content .invoice-table th:first-child,
.invoice-content .invoice-content .invoice-table td:first-child {
  text-align: left;
}

.invoice-content .btn-custom {
  border: none;
  z-index: 1;
}

.invoice-content .btn-custom img {
  max-height: 14px;
  margin-right: 5px;
}

.invoice-content .btn-custom:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  -webkit-box-shadow: inset 0px 0px 0px 0px rgba(255, 255, 255, 0.5), 7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0px 0px 0px 0px rgba(255, 255, 255, 0.5), 7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.invoice-content .btn-custom:hover {
  color: #fff;
}

.invoice-content .btn-custom:hover:after {
  left: 0;
  width: 100%;
}

.invoice-content .btn-custom:active {
  top: 2px;
}

.invoice-content table thead {
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
  color: #253D4E;
  font-weight: 700;
}

.invoice-content .f-w-600 {
  font-weight: 600;
}

.invoice-content .mobile-social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
}

.invoice-content .mobile-social-icon h6 {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 0;
}

.invoice-content .mobile-social-icon a {
  text-align: center;
  font-size: 14px;
  margin-right: 5px;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  height: 30px;
  width: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #6c757d;
  border-radius: 30px;
  line-height: 1;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.invoice-content .mobile-social-icon a img {
  max-width: 16px;
}

.invoice-content .mobile-social-icon a img:hover {
  opacity: 0.8;
}

.invoice-content .mobile-social-icon a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  margin-top: -2px;
}

.invoice-content .mobile-social-icon a:last-child {
  margin-right: 0;
}

/** Invoice 1 **/
.invoice {
  padding: 50px 0;
  background: #F2F3F4;
}

.invoice .invoice-info {
  background: #fff;
  margin-bottom: 30px;
  border-radius: 20px;
  -webkit-box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.03);
          box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.03);
}

.invoice .invoice-inner {
  max-width: 1296px;
  margin: 0 auto;
}

.invoice .item-desc-1 small {
  font-size: 14px;
}

.invoice .item-desc-1 span {
  font-size: 14px;
  font-weight: 600;
}

.invoice .invoice-header {
  padding: 80px 150px;
  border-radius: 20px 20px 0 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.invoice .table-striped > tbody > tr:nth-of-type(odd) {
  --bs-table-accent-bg: rgb(255 255 255 / 5%);
  color: var(--bs-table-striped-color);
}

.invoice .invoice-top {
  padding: 40px 150px 25px 150px;
  font-size: 15px;
  border-bottom: 1px solid #ececec;
  margin-bottom: 50px;
}

.invoice .invoice-center {
  padding: 0 150px 40px;
}

.invoice .invoice-center .table {
  margin-bottom: 0;
}

.invoice .table-section {
  text-align: center;
}

.invoice .table > :not(caption) > * > * {
  padding: 15px 20px;
}

.invoice .table td {
  font-size: 15px;
  font-weight: 400;
}

.invoice table th {
  font-size: 15px;
}

.invoice .caption-top {
  caption-side: top;
  text-align: right;
  margin-bottom: 0;
}

.invoice .invoice-bottom {
  padding: 0 150px 25px;
}

.invoice .invoice-bottom .amount {
  text-align: right;
}

.invoice .invoice-bottom h3 {
  margin-bottom: 15px;
}

.invoice .bg-active {
  background: #f3f3f3;
  color: #535353 !important;
}

.invoice .invoice-contact {
  padding: 70px 150px 40px;
}

.invoice .social-list {
  float: left;
}

.invoice .social-list span {
  margin-right: 5px;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}

.invoice .social-list a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  font-size: 17px;
  background: #fff;
  margin: 0 2px 2px 0;
  color: #25cc7e;
  border-radius: 50%;
}

.invoice .social-list a:hover {
  background: #fff6f6;
}

.invoice-top .float-end p {
  margin-bottom: 0;
}

.invoice-1 .invoice-info-buttom .table .invoice-1 .invoice-info-buttom .table tr,
.table tr {
  border: 1px solid #e9ecef;
}

.table > :not(caption) > * > * {
  background-color: var(--bs-table-bg);
  border-bottom-width: 0;
}

.invoice-1 .table td,
.invoice-1 .table th {
  vertical-align: middle;
  border: none !important;
}

.invoice-1 .invoice-header {
  background: rgba(0, 0, 0, 0.04) url(../imgs/invoice/header-bg-1.png) top left repeat;
}

.invoice-2 .invoice-info {
  border-radius: 0;
}

.invoice-2 .invoice-header {
  border-bottom: 1px solid #ececec;
}

.invoice-3 .invoice-header {
  background: url(../imgs/invoice/header-bg-2.jpg) top left no-repeat;
  background-size: cover;
  padding: 50px 150px;
  color: #fff;
}

.invoice-3 .invoice-table thead {
  color: #fff !important;
  background-color: #6c757d;
}

.invoice-4 .invoice-info {
  border-radius: 5px;
}

.invoice-4 .invoice-header {
  border-bottom: 1px solid #ececec;
  padding: 50px 150px 30px 150px;
  margin-bottom: 50px;
}

.invoice-4 .invoice-bottom .hr {
  width: 100%;
  height: 1px;
  background-color: #ececec;
}

.invoice-5 .invoice-info {
  border-radius: 0;
}

.invoice-5 .invoice-header {
  padding: 50px 150px;
}

.invoice-5 .invoice-banner {
  padding: 0 150px 50px 150px;
}

.invoice-5 .invoice-bottom .hr {
  width: 100%;
  height: 1px;
  background-color: #ececec;
}

.invoice-6.invoice {
  background-color: #fff;
}

.invoice-6 .invoice-info {
  border-radius: 10px;
  border: 1px solid #BCE3C9;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

.invoice-6 .hr {
  width: 100%;
  height: 1px;
  background-color: #6c757d;
}

.invoice-6 .invoice-header {
  background-color: #f7f8f9;
  padding: 80px 150px 50px 150px;
  margin-bottom: 50px;
  border-radius: 10px 10px 0 0;
}

.invoice-6 .invoice-icon {
  border-radius: 0 10px 0 0;
}

.invoice-icon {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #6c757d;
}

.invoice-icon img {
  width: 30px;
}

/*Responsive*/
@media only screen and (max-width: 992px) {
  .invoice .invoice-header {
    padding: 80px 50px;
  }
  .invoice .invoice-top {
    padding: 40px 50px 25px 50px;
  }
  .invoice .invoice-center {
    padding: 0 50px 40px;
  }
  .invoice .invoice-bottom {
    padding: 0 50px 25px;
  }
  .invoice .back-top-home {
    margin-bottom: 30px;
    text-align: center;
  }
}

.vendor-wrap {
  position: relative;
  background-color: #fff;
  border: 1px solid #ececec;
  border-radius: 15px;
  overflow: hidden;
  transition: .2s;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
}

.vendor-wrap:hover {
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #BCE3C9;
  transition: .2s;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
}

.vendor-wrap .vendor-img-action-wrap {
  padding: 25px 25px 0 25px;
}

.vendor-wrap .vendor-img-action-wrap img {
  max-width: 144px;
}

.vendor-wrap .vendor-content-wrap {
  padding: 20px 20px 30px 20px;
}

.vendor-wrap .vendor-content-wrap h4 a {
  color: #253D4E;
}

.vendor-wrap .vendor-content-wrap h4 a:hover {
  color: #6c757d;
}

.vendor-wrap .vendor-content-wrap .total-product {
  position: relative;
  display: inline-block;
  padding: 6px 20px 6px 20px;
  border-radius: 4px;
  background-color: #DEF9EC;
  font-size: 14px;
  font-weight: 700;
  color: #6c757d;
  min-width: 123px;
}

.vendor-wrap .product-badges.product-badges-position {
  position: absolute;
  right: 0;
  top: 0px;
  z-index: 9;
}

.vendor-wrap .product-badges.product-badges-position span {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  border-radius: 0px 10px 0 20px;
  color: #fff;
  padding: 9px 20px 10px 20px;
  background-color: #6c757d;
}

.vendor-wrap .product-badges.product-badges-position span.hot {
  background-color: #f74b81;
}

.vendor-wrap .product-badges.product-badges-position span.new {
  background-color: #6c757d;
}

.vendor-wrap .product-badges.product-badges-position span.sale {
  background-color: #67bcee;
}

.vendor-wrap .product-badges.product-badges-position span.best {
  background-color: #f59758;
}

.vendor-wrap.style-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.vendor-wrap.style-2 .vendor-img-action-wrap {
  position: relative;
  padding: 20px;
}

.vendor-wrap.style-2 .vendor-img-action-wrap .total-product {
  position: relative;
  display: inline-block;
  padding: 6px 20px 6px 20px;
  border-radius: 4px;
  background-color: #DEF9EC;
  font-size: 14px;
  font-weight: 700;
  color: #6c757d;
  min-width: 123px;
}

.vendor-wrap.style-2 .vendor-info .btn {
  min-width: 105px;
  padding: 8px 10px 8px 13px;
}

.archive-header-2 .search-form input {
  border-radius: 30px;
  padding-left: 30px;
  -webkit-box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.07);
          box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.07);
}

.archive-header-3 {
  position: relative;
  border-radius: 20px;
  padding: 50px;
}

.archive-header-3 .archive-header-3-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*LAYOUT -> HEADER STYLE*/
/*Header default*/
.header-top-ptb-1 {
  padding: 7px 0;
  border-bottom: 1px solid #ececec;
  font-size: 13px;
  line-height: 1;
}

#news-flash, #news-flash1 {
  width: 100%;
  font-size: 14px;
  line-height: 37px;
  font-weight: 600;
  height: 35px !important;
}

#news-flash ul, #news-flash1 ul {
  width: 100%;
  /* height YOK — vTicker ul'u serbest bırakır, tüm li'leri dikey yığar */
}

#news-flash li, #news-flash1 li {
  height: 35px !important;
  display: block;
  width: 100%;
  color: #fff;
}

#news-flash i, #news-flash1 i{
  line-height: 6px;
  margin-right: 5px;
}

.header-info-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header-info > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-info > ul > li {
  margin-right: 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-info > ul > li:before {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background: #dedfe2;
}

.header-info > ul > li:last-child {
  margin-right: 0;
}

.header-info > ul > li:last-child:before {
  display: none;
}

.header-info > ul > li a {
  color: #2b2b2b;
  font-weight: 500;
}

.header-info > ul > li a i {
  font-size: 12px;
  margin-right: 5px;
}

.header-info > ul > li a.language-dropdown-active i.fa-chevron-down {
  font-size: 8px;
  margin-left: 5px;
}

.header-info > ul > li > ul.language-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  min-width: 120px;
  background: #fff;
  border-radius: 0 0 4px 4px;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  visibility: hidden;
  opacity: 0;
  padding: 10px 15px;
  -webkit-transition: opacity 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), visibility 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), visibility 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  border: 1px solid #ececec;
}

.header-info > ul > li > ul li {
  display: block;
}

.header-info > ul > li > ul li a {
  display: block;
  color: #696969;
  padding: 5px;
}

.header-info > ul > li > ul li a:hover {
  color: #6c757d;
  background-color: none;
}

.header-info > ul > li > ul li a img {
  max-width: 15px;
  display: inline-block;
  margin-right: 5px;
}

.header-info > ul > li:hover > a {
  color: #333;
}

.header-info > ul > li:hover > ul.language-dropdown {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  top: 25px;
}

.header-info i {
  font-size: 12px;
  margin-right: 5px;
  line-height: 6px;
}

.header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.header-wrap .header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-wrap .header-right {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header-center {
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 20px;
}

.logo a {
  display: block;
}

.logo.logo-width-1 {
  margin-right: 15px;
}

.logo.logo-width-1 a img {
  width: 180px;
  min-width: 180px;
}

.search-style-1 form {
  width: 370px;
  position: relative;
}

.search-style-1 form input {
  font-size: 16px;
  height: 48px;
  color: #253D4E;
  border-radius: 26px;
  padding: 3px 50px 3px 20px;
  border: 1px solid #f5f5f5;
  background-color: #f5f5f5;
  -webkit-transition: border-color 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: border-color 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.header-action .header-action-icon.header-action-mrg-none2 {
  margin-right: 0px;
}

.header-action .header-action-icon:last-child {
  margin-right: 0;
}

.header-action .header-action-icon > a span.pro-count {
  position: absolute;
  right: -5px;
  bottom: -4px;
  color: #ffffff;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  line-height: 20px;
}

.header-action-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.header-action-2 .header-action-icon-2 span.lable {
  font-size: 13px;
  font-weight: 600;
  margin: 3px 0 0 5px;
}

.header-action-2 .header-action-icon-2:last-child {
  padding: 0 0px 0 5px;
}

.header-action-2 .header-action-icon-2 > a {
  font-size: 30px;
  color: #333;
  line-height: 1;
  display: inline-block;
  position: relative;
}

.header-action-2 .header-action-icon-2 > a img {
  width: 100%;
  max-width: 25px;
}

.header-action-2 .header-action-icon-2 > a span {
  font-size: 14px;
  color: #2b2b2b;
}

.header-action-2 .header-action-icon-2 > a span.pro-count {
  position: absolute;
  right: -11px;
  top: -5px;
  color: #ffffff;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  line-height: 20px;
}

.cart-dropdown-wrap ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 20px;
  border-bottom: 1px solid #ddd;
  padding: 5px 10px;
}

.cart-dropdown-wrap ul li .shopping-cart-img a {
  display: block;
}

.header-height-2 {
  border-bottom: 1px solid #ececec;
}

.header-height-3 {
  min-height: 132px;
}

.header-height-4 {
  min-height: 120px;
}

.search-popup-wrap.search-visible {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.mobile-header-wrapper-style.sidebar-visible {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-header-wrapper-style .mobile-header-top .mobile-header-logo a {
  display: block;
}

.mobile-header-wrapper-style .mobile-menu-wrap nav {
  height: 100%;
}

.mobile-header-wrapper-style .main-categori-wrap a i {
  margin-right: 15px;
}

.mobile-header-wrapper-style .main-categori-wrap .categori-dropdown-active-small {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
}

.header-action-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header-action-right .search-location {
  display: none;
}

.search-style-1 {
  margin-right: 28px;
}

.search-style-1 form input::-moz-input-placeholder {
  color: #253D4E;
  opacity: 1;
}

.search-style-1 form input::-webkit-input-placeholder {
  color: #253D4E;
  opacity: 1;
}

.search-style-1 form input:focus {
  border: 1px solid #6c757d;
  background-color: #ffffff;
}

.search-style-1 form button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  border: none;
  font-size: 19px;
  height: 100%;
  padding: 0 15px;
  background-color: transparent;
  color: #6c757d;
}

.search-style-1 form button:hover {
  color: #5a97fa;
}

.header-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-action .header-action-icon {
  margin-right: 28px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-action .header-action-icon.header-action-mrg-none {
  margin-right: 13px;
}

.header-action .header-action-icon > a {
  font-size: 24px;
  color: #333;
  line-height: 1;
  display: inline-block;
  position: relative;
}

.header-action .header-action-icon > a span.pro-count.blue {
  background-color: #6c757d;
}

.header-action .header-action-icon:hover > a {
  color: #6c757d;
}

.header-action .header-action-icon:hover .cart-dropdown-wrap {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 10px);
}

.header-action.header-action-hm3 .header-action-icon.header-action-mrg-none2 {
  margin-right: 0px;
}

.header-action.header-action-hm3 .header-action-icon:last-child {
  margin-right: 0;
}

.header-action-2 .header-action-icon-2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px;
}

.header-action-2 .header-action-icon-2 > a svg {
  width: 1em;
  height: 1em;
}

.header-action-2 .header-action-icon-2 > a span.pro-count.blue {
  background-color: #e86d0e;
}

.header-action-2 .header-action-icon-2:hover > a {
  color: #6c757d;
  fill: #6c757d;
}

.header-action-2 .header-action-icon-2:hover .cart-dropdown-wrap {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 10px);
}

.header-middle-ptb-1 {
  padding: 25px 0 0 0;
}

.cart-dropdown-wrap {
  position: absolute;
  right: 0;
  top: calc(100% + 20px);
  z-index: 99;
  width: 320px;
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), visibility 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), visibility 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  border-radius: 10px;
  border: 1px solid #ececec;
}


[data-sepet-icerik] .alert-heading{font-size: 15px;}

.cart-dropdown-wrap.cart-dropdown-hm2 {
  right: 0;
}

.cart-dropdown-wrap.account-dropdown {
  width: 200px;
}

.cart-dropdown-wrap.account-dropdown a {
  color: #253D4E;
}

.cart-dropdown-wrap.account-dropdown a:hover {
  color: #6c757d;
}

.cart-dropdown-wrap ul li:last-child {
  margin: 0 0 0px;
  border: none;
}

.cart-dropdown-wrap ul li .shopping-cart-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80px;
  flex: 0 0 50px;
  margin-right: 10px;
}

.cart-dropdown-wrap ul li .shopping-cart-img a img {
  max-width: 100%;
}

.cart-dropdown-wrap ul li .shopping-cart-title {
  margin: 0px;
  max-width: 70%;
}

.cart-dropdown-wrap ul li .shopping-cart-title h4 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 9px;
}

.cart-dropdown-wrap ul li .shopping-cart-title h4 a {
  color: #6c757d;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 5px;
  float: left;
  width: 100%;
}

.cart-dropdown-wrap ul li .shopping-cart-title h4 a:hover {
  color: #253D4E;
}

.cart-dropdown-wrap ul li .shopping-cart-title h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 0px;
  color: #6c757d;
}

.cart-dropdown-wrap ul li .shopping-cart-title h3 span {
  color: #696969;
  font-weight: 400;
  font-size: 16px;
}

.cart-dropdown-wrap ul li .shopping-cart-delete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 100;
  -ms-flex-positive: 100;
  flex-grow: 100;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 6px 0 0;
}

.cart-dropdown-wrap ul li .shopping-cart-delete a {
  font-size: 18px;
  color: #696969;
}

.cart-dropdown-wrap ul li .shopping-cart-delete a:hover {
  color: #333;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-total {
  border-top: 2px solid #f3f3f3;
  margin: 15px 0;
  padding: 17px 0 0;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-total h4 {
  color: #9b9b9b;
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-total h4 span {
  font-size: 18px;
  float: right;
  color: #6c757d;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 15px 0px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-button a {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  border-radius: 4px;
  line-height: 1;
  padding: 10px 20px;
  background-color: #6c757d;
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
  border: 2px solid #6c757d;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-button a.outline {
  background-color: transparent;
  border: 2px solid #6c757d;
  color: #6c757d;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-button a.outline:hover {
  color: #ffffff;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-button a:hover {
  background-color: #FDC040;
}

.sticky-bar.stick {
  -webkit-animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
  left: 0;
  -webkit-transition: background-color .3s ease, box-shadow .3s ease, border-color .3s ease;
  transition: background-color .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 2px solid #FDC040;
  background: #fff;
}

.sticky-bar.stick.sticky-white-bg {
  background-color: #fff;
}

.sticky-bar.stick.sticky-blue-bg {
  background-color: #3286e0;
}

.header-height-1 {
  min-height: 133px;
}

.search-style-2 {
  width: 100%;
}

.search-style-2 form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}


.search-style-2 form select:focus {
  color: #333;
}

.search-style-2 form select::after {
  position: absolute;
}

.search-style-2 form input {
  height: 52px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  background-color: #f7f9fc;
  padding-left: 20px;
  padding-right: 56px;
  font-size: 15px;
  width: 100%;
  transition: border-color var(--transition-base), background-color var(--transition-base);
}

.search-style-2 form input::-moz-input-placeholder {
  opacity: 1;
}

.search-style-2 form input::-webkit-input-placeholder {
  opacity: 1;
}

.search-style-2 form input:focus {
  border: 1px solid var(--clr-primary-light);
  background-color: #fff;
  outline: none;
}

.search-style-2 form button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  transform: none;
  background-color: var(--clr-primary);
  border: none;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-size: 18px;
  color: #fff;
  padding: 0 20px;
  transition: background-color var(--transition-base);
}

.search-style-2 form button:hover {
  background-color: #29A56C;
}

@media (min-width: 992px) {
  .header-middle .header-wrap.header-space-between {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: nowrap;
  }

  .header-middle .header-center {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0 24px;
    justify-content: center;
  }

  .header-middle .header-center .search-style-2 {
    width: 100%;
    max-width: 680px;
  }

  .header-middle .header-center .search-style-2 form {
    width: 100%;
  }

  .header-middle .header-right,
  .header-middle .header-action-right {
    width: auto;
    flex: 0 0 auto;
    margin-left: 0;
    float: none;
  }

  .header-middle .header-action-right .header-action-2 {
    gap: 14px;
  }

  .header-middle .header-action-right .header-action-icon-2,
  .header-middle .header-action-right .header-action-icon-2:last-child {
    padding: 0;
  }

  .header-middle .header-action-right .header-action-icon-2 > a {
    margin-right: 0;
    display: inline-flex;
    align-items: center;
    transition: color var(--transition-base), transform var(--transition-base), filter var(--transition-base);
  }

  .header-middle .header-action-right .header-action-icon-2:hover > a {
    color: #F59E0B;
    fill: #F59E0B;
    transform: translateY(-2px);
  }

  .header-middle .header-action-right .header-action-icon-2:hover > a img {
    filter: drop-shadow(0 2px 6px rgba(245, 158, 11, 0.28));
  }

  .header-middle .header-action-right .header-action-icon-2:hover .lable {
    color: #F59E0B;
  }
}

.header-bottom-shadow {
  -webkit-box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
}

.header-bottom .header-action-right a span.pro-count {
  background-color: #F59E0B;
  color: #fff;
}

.search-style-3 {
  margin-bottom: 10px;
}

.search-style-3 form {
  position: relative;
}

.search-style-3 form input {
  font-size: 14px;
  height: 45px;
  color: #253D4E;
  background-color: #F2F3F4;
  border-radius: 5px;
  padding: 3px 50px 3px 20px;
  -webkit-transition: border-color 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: border-color 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  border: 0;
}

.search-style-3 form input::-moz-input-placeholder {
  color: #253D4E;
  opacity: 1;
}

.search-style-3 form input::-webkit-input-placeholder {
  color: #253D4E;
  opacity: 1;
}

.search-style-3 form input:focus {
  border: 1px solid #BCE3C9;
}

.search-style-3 form button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  border: none;
  font-size: 16px;
  height: 100%;
  padding: 0 14px;
  background-color: transparent;
  color: #333;
}

.search-style-3 form button:hover {
  color: #6c757d;
}

.search-popup-wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background-color: white;
  -webkit-transition: opacity .5s ease-in-out, visibility .5s ease-in-out;
  transition: opacity .5s ease-in-out, visibility .5s ease-in-out;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.search-popup-wrap .search-popup-content form input {
  width: 1170px;
  background-color: transparent;
  border: 0;
  border-bottom: 3px solid #6c757d;
  font-size: 50px;
  padding: 21px 50px 16px 0px;
  color: #919191;
  font-weight: 300;
  max-width: 100%;
  height: auto;
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 0;
  -webkit-transition: transform .5s ease-in-out, opacity .5s linear;
  transition: transform .5s ease-in-out, opacity .5s linear;
}

.search-popup-wrap .search-popup-content form input::-moz-input-placeholder {
  color: #919191;
  opacity: 1;
}

.search-popup-wrap .search-popup-content form input::-webkit-input-placeholder {
  color: #919191;
  opacity: 1;
}

.search-popup-wrap.search-visible .search-popup-content form input {
  -webkit-transform: none;
  transform: none;
  opacity: 1;
  -webkit-transition-delay: .6s;
  transition-delay: .6s;
}

.close-style-wrap {
  position: absolute;
  right: 55px;
  top: 40px;
}

.close-style-wrap.close-style-position-inherit {
  position: inherit;
}

.close-style-wrap .close-style {
  position: relative;
  background-color: transparent;
  padding: 0;
  border: none;
  width: 26px;
  height: 26px;
  background-color: #DEF9EC;
  border-radius: 30px;
}

.close-style-wrap .close-style > i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  margin: 0 !important;
  -webkit-transform-origin: center;
  transform-origin: center;
  display: block;
  overflow: hidden;
}

.close-style-wrap .close-style > i.icon-top {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-style-wrap .close-style > i.icon-top::before {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s, -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  -webkit-transform: scaleX(1) translateZ(0);
  transform: scaleX(1) translateZ(0);
  -webkit-transform-origin: right;
  transform-origin: right;
}

.close-style-wrap .close-style > i.icon-top::after {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: scaleX(0) translateZ(0);
  transform: scaleX(0) translateZ(0);
  -webkit-transform-origin: left;
  transform-origin: left;
}

.close-style-wrap .close-style > i.icon-bottom {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.close-style-wrap .close-style > i.icon-bottom::before {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s, -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  -webkit-transform: scaleX(1) translateZ(0);
  transform: scaleX(1) translateZ(0);
  -webkit-transform-origin: right;
  transform-origin: right;
}

.close-style-wrap .close-style > i.icon-bottom::after {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: scaleX(0) translateZ(0);
  transform: scaleX(0) translateZ(0);
  -webkit-transform-origin: left;
  transform-origin: left;
}

.close-style-wrap .close-style:hover {
  -webkit-transform: rotateZ(360deg);
  transform: rotateZ(360deg);
}

.close-style-wrap .close-style > i::before,
.close-style-wrap .close-style > i::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #111;
}

.burger-icon {
  position: relative;
  width: 24px;
  height: 20px;
  cursor: pointer;
  -webkit-transition: opacity 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.burger-icon > span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
}

.burger-icon > span.burger-icon-top {
  top: 2px;
}

.burger-icon > span.burger-icon-bottom {
  bottom: 2px;
}

.burger-icon > span.burger-icon-mid {
  top: 9px;
}

.burger-icon > span::before,
.burger-icon > span::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #333;
  pointer-events: auto;
}

.burger-icon.burger-icon-white > span::before,
.burger-icon.burger-icon-white > span::after {
  background-color: #253D4E;
}

.body-overlay-1 {
  background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  -webkit-transition: opacity 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), visibility 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), visibility 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  visibility: hidden;
  width: 100%;
  cursor: crosshair;
  z-index: 9999;
}

.mobile-menu-active .body-overlay-1 {
  opacity: 1;
  visibility: visible;
}

.main-wrapper {
  -webkit-transition: transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-header-wrapper-style {
  position: fixed;
  top: 0;
  width: 360px;
  min-height: 100vh;
  bottom: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), visibility 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), visibility 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transform: translate(-200px, 0);
  transform: translate(-200px, 0);
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.09);
  z-index: 99999;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner {
  padding: 0px 0px 30px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-header-wrapper-style .mobile-header-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 20px 30px;
  background-color: #ffffff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-header-wrapper-style .mobile-header-top .mobile-header-logo a img {
  width: 100px;
}

.mobile-header-wrapper-style .mobile-header-content-area {
  padding: 30px 30px 30px;
}

.mobile-menu-wrap .mobile-menu li {
  display: block;
  position: relative;
  padding: 13px 0;
  border-bottom: 1px solid #ececec;
}

.mobile-menu-wrap .mobile-menu li:last-child {
  border-bottom: none;
}

.mobile-header-wrapper-style {
  width: min(360px, 100%);
}

.mobile-header-wrapper-style .mobile-menu-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.mobile-header-wrapper-style .mobile-menu-action-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid #ececec;
  border-radius: 12px;
  color: #253D4E;
  text-decoration: none;
  background-color: #fafafa;
  font-weight: 700;
}

.mobile-header-wrapper-style .mobile-menu-action-link img {
  width: 20px;
  height: auto;
}

.mobile-header-wrapper-style .mobile-search form {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.mobile-header-wrapper-style .mobile-search form input {
  flex: 1 1 auto;
  min-width: 0;
}

.mobile-header-wrapper-style .mobile-search form button {
  flex: 0 0 auto;
}

.mobile-menu-wrap .mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-wrap .mobile-menu li.menu-item-has-children > a {
  display: block;
  width: 100%;
  padding-right: 60px;
}

.mobile-menu-wrap .mobile-menu li.menu-item-has-children .menu-expand {
  position: absolute;
  cursor: pointer;
  z-index: 9;
  text-align: center;
  font-size: 12px;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #253D4E;
}

.mobile-menu-wrap .mobile-menu li .dropdown {
  display: none;
}

.mobile-menu-wrap .mobile-menu li.active > ul {
  display: block;
}

.mobile-menu-wrap .mobile-menu li ul {
  padding: 10px 0 0 10px;
}

.mobile-menu-wrap .mobile-menu li.menu-item-has-children.active > .menu-expand {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-wrap .mobile-menu li.menu-item-has-children.active > .menu-expand i::before {
  content: "\f112";
}

.mobile-menu-wrap .mobile-menu li a {
  font-size: 14px;
  line-height: 1;
  text-transform: capitalize;
  font-weight: 700;
  position: relative;
  display: block;
  width: 100%;
  color: #253D4E;
}

.mobile-menu-wrap .mobile-menu li a i {
  margin-right: 5px;
}

.mobile-menu-wrap .mobile-menu li ul {
  padding: 10px 0 0 10px;
}

.mobile-menu-wrap .mobile-menu li ul li {
  padding: 10px 0;
  border-bottom: none;
}

.mobile-menu-wrap .mobile-menu li ul li.menu-item-has-children .menu-expand {
  top: 0px;
}

.mobile-menu-wrap .mobile-menu li ul li a {
  font-size: 14px;
  display: block;
  font-weight: 500;
}

.mobile-menu-wrap .mobile-menu li ul li ul {
  margin-top: 0;
}

.mobile-menu-wrap .mobile-menu li ul li.menu-item-has-children.active {
  padding-bottom: 0;
}

.mobile-menu-wrap .mobile-menu li:hover > a {
  color: #6c757d;
}

.mobile-header-wrapper-style .categories-dropdown-wrap ul li a {
  padding: 5px 15px;
}

.mobile-header-wrapper-style .mobile-header-info-wrap {
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #ececec;
  margin: 17px 0 30px 0;
}

.mobile-header-info-wrap .single-mobile-header-info {
  position: relative;
  margin-bottom: 13px;
}

.mobile-header-info-wrap .single-mobile-header-info:last-child {
  margin-bottom: 0;
}

.mobile-header-info-wrap .single-mobile-header-info a {
  font-size: 14px;
  display: block;
  font-weight: 500;
  color: #253D4E;
}

.mobile-header-info-wrap .single-mobile-header-info a:hover {
  color: #6c757d;
}

.mobile-header-info-wrap .single-mobile-header-info a i {
  font-size: 14px;
  color: #6c757d;
  margin-right: 8px;
}

.mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown {
  margin-top: 5px;
  display: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 10px 0 0 0;
  width: 100%;
  z-index: 11;
}

.mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li {
  padding-bottom: 10px;
}

.mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li:last-child {
  padding-bottom: 0px;
}

.mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li a:hover {
  color: #6c757d;
}

.mobile-header-info-wrap .single-mobile-header-info:hover > a {
  color: #253D4E;
}

.mobile-header-wrapper-style .mobile-header-border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-header-wrapper-style .site-copyright {
  font-size: 13px;
  color: #B6B6B6;
}

.mobile-social-icon a {
  text-align: center;
  font-size: 14px;
  margin-right: 5px;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  height: 30px;
  width: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #6c757d;
  border-radius: 30px;
  line-height: 1;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mobile-social-icon a img {
  max-width: 16px;
}

.mobile-social-icon a img:hover {
  opacity: 0.8;
}

.mobile-social-icon a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  margin-top: -2px;
}

.mobile-social-icon a:last-child {
  margin-right: 0;
}

.mobile-search {
  padding: 0 0 10px 0;
}

.hotline img {
  min-width: 35px;
  margin-right: 12px;
}

.hotline p {
  color: #6c757d;
  font-size: 16px;
  font-weight: 700;
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
  display: block;
  line-height: 1.3;
}

.hotline p span {
  font-weight: 500;
  font-size: 12px;
  font-family: "Lato", Arial, "Helvetica Neue", sans-serif;
  color: #2b2b2b;
  display: block;
  letter-spacing: 0.9px;
}

/* Header style 1 */
.header-style-1 {
  position: relative;
  overflow-x: clip;
}

.header-style-1.header-height-2 {
  border-bottom: 0;
}

.header-style-1 .header-top-ptb-1 {
  padding: 10px 0;
}

.header-style-1 .header-top-ptb-1 .language-dropdown a {
  color: #253D4E;
}

.header-style-1 .header-middle-ptb-1 {
  padding: 20px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf5 100%);
  border-bottom: 1px solid rgba(245, 158, 11, 0.14);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.header-style-1 .select2-container {
  max-width: unset;
  min-width: 150px;
}

.header-style-1 .select2-container--default .select2-selection--single {
  border: 0;
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
  width: 155px;
  max-width: unset;
  border-radius: 5px 0 0 5px;
}

.header-style-1 .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 10px;
}

.header-style-1 .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: 0;
}

.header-style-1 .select2-container--default .select2-selection--single .select2-selection__arrow b::after {
  font-family: uicons-regular-straight !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1 !important;
  content: "\f10f";
  position: absolute;
  top: -4px;
}

.header-style-1 .select2-container--default .select2-selection--single .select2-selection__rendered {
  height: 50px;
  line-height: 50px;
  position: relative;
}

.header-style-1 .select2-container--default .select2-selection--single .select2-selection__rendered:after {
  content: '';
  height: 20px;
  width: 1px;
  background-color: #CACACA;
  position: absolute;
  right: 0;
  top: 15px;
}

.header-style-1 .search-location .select2-container--default .select2-selection--single {
  border: 0;
  height: 40px;
  line-height: 40px;
  padding-left: 13px;
  width: 164px;
  max-width: unset;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #ececec;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

.header-style-1 .search-location .select2-container--default .select2-selection--single:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.header-style-1 .search-location .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 10px;
  top: 7px;
}

.header-style-1 .search-location .select2-container--default .select2-selection--single .select2-selection__rendered {
  height: 40px;
  line-height: 35px;
  position: relative;
  color: #6c757d;
  font-weight: 500;
}

.header-style-1 .search-location .select2-container--default .select2-selection--single .select2-selection__rendered:after {
  content: none;
}

.header-style-1 .search-location .select2-container--default .select2-selection--single .select2-selection__rendered:before {
  font-family: uicons-regular-straight !important;
  content: "\f1c6";
  color: #B6B6B6;
  margin-right: 7px;
  display: inline-block;
}

.header-style-1 .search-location .select2-container {
  max-width: unset;
  min-width: 158px;
  max-width: 158px;
  margin-right: 30px;
}

.header-style-1 .search-style-2 form {
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: var(--radius-lg);
  max-width: 700px;
  background-color: #fff;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.07);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  margin: 0 auto;
}

.header-style-1 .search-style-2 form:focus-within {
  border-color: #F59E0B;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16), 0 10px 24px rgba(245, 158, 11, 0.10);
}

.header-style-1 .search-style-2 form input {
  max-width: 100%;
  border-width: 0;
  border-radius: var(--radius-lg);
  background-color: transparent;
  border: none;
  height: 46px;
  padding-right: 58px;
}
.header-style-1 .search-style-2 form button {
  border: none;
  border-left: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  color: #fff;
  background-color: #F59E0B;
  transition: background-color var(--transition-base), transform var(--transition-base);
}

.header-style-1 .search-style-2 form button:hover {
  background-color: #D97706;
}

.header-style-1 .header-bottom-bg-color {
  background-color: #fff;
  padding: 13px 0;
}

.header-style-1 .main-categori-wrap > a {
  color: #fff;
  line-height: 70px;
  background: #F59E0B;
  padding: 0 30px;
}

.header-style-1 .main-categori-wrap > a i.up {
  right: 30px;
}

.header-style-1 .main-categori-wrap > a.categories-button-active {
  line-height: 44px;
  border-radius: 5px;
  padding: 0 20px;
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
  font-size: 16px;
}

.header-style-1 .main-categori-wrap > a.categories-button-active i {
  color: #fff;
  margin-left: 12px;
  font-size: 10px;
  margin-bottom: 5px;
}

.header-style-1 .main-categori-wrap > a:hover {
  background-color: #29A56C;
}

.header-style-1 .main-menu.main-menu-light-white > nav > ul > li > a {
  color: #494949;
}

.header-style-1 .stick .main-menu.main-menu-light-white > nav > ul > li > a {
  color: #ffffff !important;
}

.header-style-1 .categories-dropdown-active-large {
  top: 100%;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

.header-style-1 .hotline p {
  color: #6c757d !important;
}

.header-style-1 .main-categori-wrap > a span {
  color: #fff !important;
}

.header-style-1.header-style-5 .header-bottom-bg-color {
  background: linear-gradient(90deg, #412e66 0%, #960869 64%, #e86d0e 100%) !important;
  box-shadow: 0px 0px 8px #818181;
}

.header-style-1.header-style-5 .header-bottom-bg-color .main-categori-wrap > a {
  background: #FDC040;
}

.header-style-1.header-style-5 .main-menu > nav > ul > li > a {
  color: #fff;
}

.header-style-1.header-style-5 .hotline p {
  color: #fff !important;
}

.header-style-1.header-style-5 .hotline p span {
  color: #fff !important;
}

span.fi-rs-apps {
  font-size: 16px;
}

.hotline i {
  opacity: 0.7;
}

/*LAYOUT -> NAVIGATION STYLE*/
.main-menu.main-menu-mrg-1 {
  margin: 0 0 0 27px;
}

.main-menu > nav > ul > li.hot-deals {
  padding-right: 30px !important;
}

.main-menu > nav > ul > li.hot-deals img {
  position: relative;
  margin-bottom: -4px;
  margin-right: 8px;
}

.main-menu > nav > ul > li.position-static {
  position: static;
}

.main-menu > nav > ul > li > a {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #253D4E;
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
}

.main-menu > nav > ul > li > a i {
  font-size: 8px;
  position: relative;
  margin-left: 4px;
}

.main-menu > nav > ul > li > a.active {
  color: #6c757d;
}

.main-menu > nav > ul > li ul.sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #ffffff;
  min-width: 250px;
  padding: 25px 15px;
  -webkit-transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  opacity: 0;
  visibility: hidden;
  margin-top: 20px;
  border-radius: 10px;
  z-index: 999;
  border: 1px solid #ececec;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

.main-menu > nav > ul > li:hover ul.sub-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.main-menu > nav > ul > li ul.sub-menu li {
  line-height: 1;
  display: block;
  margin-bottom: 21px;
  position: relative;
}

.main-menu > nav > ul > li ul.sub-menu li:last-child {
  margin-bottom: 0;
}

.main-menu > nav > ul > li ul.sub-menu li ul.level-menu {
  position: absolute;
  left: 100%;
  top: -110px;
  background-color: #ffffff;
  width: 240px;
  padding: 33px 0 35px;
  -webkit-transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  margin-top: 20px;
  border: 1px solid #ececec;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

.main-menu > nav > ul > li ul.sub-menu li:hover ul.level-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.main-menu > nav > ul > li ul.sub-menu li ul.level-menu.level-menu-modify {
  top: -25px;
}

.main-menu > nav > ul > li ul.sub-menu li a i {
  font-size: 9px;
  float: right;
  position: relative;
  top: 4px;
}

.main-menu > nav > ul > li ul.sub-menu li:hover > a {
  color: #000;
}

.main-menu > nav > ul > li ul.sub-menu li:hover ul.level-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0px;
}

.main-menu > nav > ul > li ul.mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #ffffff;
  width: 100%;
  padding: 35px 25px 35px 35px;
  -webkit-transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  opacity: 0;
  visibility: hidden;
  margin-top: 20px;
  border-radius: 0 0 10px 10px;
  z-index: 999;
  border: 1px solid #ececec;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

.main-menu > nav > ul > li ul.mega-menu li {
  line-height: 1;
  display: block;
  position: relative;
  float: left;
  padding-right: 10px;
}

.main-menu > nav > ul > li ul.mega-menu li:last-child {
  margin-bottom: 0;
}

.main-menu > nav > ul > li ul.mega-menu li.sub-mega-menu-width-22 {
  width: 22%;
}

.main-menu > nav > ul > li ul.mega-menu li.sub-mega-menu-width-34 {
  width: 34%;
}

.main-menu > nav > ul > li ul.mega-menu li a.menu-title {
  font-size: 19px;
  font-weight: 700;
  display: block;
}

.main-menu > nav > ul > li ul.mega-menu li ul {
  margin-top: 28px;
}

.main-menu > nav > ul > li ul.mega-menu li ul li {
  line-height: 1;
  display: block;
  margin-bottom: 14px;
  float: none;
}

.main-menu > nav > ul > li ul.mega-menu li ul li:last-child {
  margin-bottom: 0;
}

.main-menu > nav > ul > li ul.mega-menu li ul li a {
  font-size: 15px;
  color: #2b2b2b;
  display: block;
  line-height: 1.4;
}

.main-menu > nav > ul > li ul.mega-menu li ul li a:hover {
  color: #6c757d;
}

.main-menu > nav > ul > li ul.mega-menu li .menu-banner-wrap {
  overflow: hidden;
  position: relative;
}

.main-menu > nav > ul > li ul.mega-menu li .menu-banner-wrap a {
  display: block;
}

.main-menu > nav > ul > li ul.mega-menu li .menu-banner-wrap a img {
  width: 100%;
}

.main-menu > nav > ul > li ul.mega-menu li .menu-banner-wrap .menu-banner-content {
  position: absolute;
  top: 32px;
  left: 30px;
}

.main-menu > nav > ul > li ul.mega-menu li .menu-banner-wrap .menu-banner-content h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin: 5px 0 11px;
}

.main-menu > nav > ul > li ul.mega-menu li .menu-banner-wrap .menu-banner-content .menu-banner-price span.old-price {
  font-size: 19px;
  font-weight: 400;
  color: #696969;
  text-decoration: line-through;
  margin-left: 5px;
}

.main-menu > nav > ul > li ul.mega-menu li .menu-banner-wrap .menu-banner-content .menu-banner-btn a {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  border-radius: 26px;
  padding: 12px 22px 14px;
  background-color: #6c757d;
}

.main-menu > nav > ul > li ul.mega-menu li .menu-banner-wrap .menu-banner-discount h3 span {
  display: block;
  line-height: 1;
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 3px;
}

.main-menu > nav > ul > li ul.mega-menu li .menu-banner-wrap:hover .menu-banner-btn a {
  background-color: #FD6E6E;
}

.main-menu > nav > ul > li:hover > a {
  color: #6c757d;
}

.main-menu > nav > ul > li:hover ul.sub-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 12px;
}

.main-menu > nav > ul > li:hover ul.mega-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.main-menu.hover-boder > nav > ul > li > a {
  position: relative;
}

.main-menu.hover-boder > nav > ul > li > a::after {
  content: none;
  position: absolute;
  left: auto;
  right: 0;
  bottom: 34px;
  height: 1px;
  width: 0;
  -webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: #6c757d;
}

.main-menu.hover-boder > nav > ul > li:hover > a::after {
  width: 100%;
  left: 0;
  right: auto;
}

.main-menu.hover-boder.hover-boder-white > nav > ul > li > a::after {
  bottom: 18px;
  background: #ffffff;
}

.main-menu.hover-boder.hover-boder-modify > nav > ul > li > a::after {
  bottom: 28px;
}

.main-menu.main-menu-light-white > nav > ul > li > a {
  color: white;
}

.main-menu.main-menu-padding-1 > nav > ul > li {
  padding: 0 17px;
}

.main-menu.main-menu-padding-1 > nav > ul > li:first-child {
  padding-left: 0 !important;
}

.main-menu.main-menu-lh-2 > nav > ul > li {
  border-right: 1px solid #ffffff59;
  line-height: 45px;
}

.main-menu.main-menu-lh-3 > nav > ul > li {
  line-height: 80px;
}

.main-menu.main-menu-grow {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.main-menu > nav > ul > li {
  display: inline-block;
  position: relative;
}

.main-menu > nav > ul > li ul.sub-menu li a {
  font-size: 14px;
  color: #2b2b2b;
  display: block;
  padding: 0 15px;
}

.main-menu > nav > ul > li ul.sub-menu li a:hover {
  color: #6c757d;
}

.main-menu > nav > ul > li ul.mega-menu li .menu-banner-wrap .menu-banner-content h4 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0;
}

.main-menu > nav > ul > li ul.mega-menu li .menu-banner-wrap .menu-banner-content .menu-banner-price {
  margin: 0 0 28px;
}

.main-menu > nav > ul > li ul.mega-menu li .menu-banner-wrap .menu-banner-content .menu-banner-price span.new-price {
  font-size: 24px;
  font-weight: 700;
  color: #FD6E6E;
}

.main-menu > nav > ul > li ul.mega-menu li .menu-banner-wrap .menu-banner-discount {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ffd55a;
  position: absolute;
  top: 13%;
  right: 7%;
}

.main-menu > nav > ul > li ul.mega-menu li .menu-banner-wrap .menu-banner-discount h3 {
  color: #333;
  margin: 0;
  text-align: center;
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
}

.main-menu.main-menu-lh-1 > nav > ul > li {
  line-height: 70px;
}

.main-categori-wrap {
  position: relative;
  margin-right: 35px;
}

.main-categori-wrap > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
}

.main-categori-wrap > a span {
  margin-right: 7px;
  color: #2b2b2b;
}

.main-categori-wrap > a > i {
  margin-left: 5px;
  margin-top: 7px;
  color: #999;
}

.main-categori-wrap > a > i.up {
  position: absolute;
  top: 40%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  opacity: 0;
  visibility: hidden;
}

.main-categori-wrap > a.open > i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.main-categori-wrap .categori-dropdown-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 412px;
}

.categories-dropdown-active-large {
  list-style-type: none;
  position: absolute;
  top: 177%;
  left: 0;
  z-index: 99;
  margin: 0;
  padding: 30px;
  background: #fff;
  border: 1px solid #BCE3C9;
  border-radius: 10px;
  font-size: 16px;
  min-width: 270px;
  -webkit-transition: opacity 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), visibility 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), visibility 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
  visibility: hidden;
  margin-top: 26px;
}

.categories-dropdown-active-large.open {
  opacity: 1;
  visibility: visible;
}

.categori-dropdown-active-small {
  z-index: 9;
  margin: 0;
  padding: 14px 0 23px;
  background: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.07);
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.07);
  font-size: 16px;
  font-weight: 400;
  display: none;
  width: 100%;
}

.categories-dropdown-wrap ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 48px;
  border-radius: 5px;
  border: 1px solid #F2F3F4;
  padding: 9px 18px;
  margin: 0 15px 15px 0;
  height: 50px;
  transition: border-color .3s, box-shadow .3s;
  -moz-transition: border-color .3s, box-shadow .3s;
  -webkit-transition: border-color .3s, box-shadow .3s;
  -o-transition: border-color .3s, box-shadow .3s;
}

.categories-dropdown-wrap ul li:hover {
  border: 1px solid #BCE3C9;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  -o-transition: .3s;
}

.categories-dropdown-wrap ul li:hover a {
  color: #6c757d;
}

.categories-dropdown-wrap ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  line-height: 1.5;
  color: #253D4E;
  font-size: 14px;
}

.categories-dropdown-wrap ul li a:hover {
  color: #6c757d;
  background-color: transparent;
}

.categories-dropdown-wrap ul li a img {
  max-width: 30px;
  margin-right: 15px;
}

.categories-dropdown-wrap ul li:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  margin-top: 0px;
  pointer-events: auto;
}

.categories-dropdown-wrap ul li.has-children {
  position: relative;
}

.categories-dropdown-wrap ul li.has-children > a::after {
  content: "\f111";
  font-family: 'uicons-regular-straight' !important;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -10px;
}

.categories-dropdown-wrap ul li.has-children .dropdown-menu {
  left: 100%;
  top: 0;
  margin: 0;
  margin-top: 0px;
  border: 1px solid #ececec;
  min-width: 800px;
  width: 100%;
  right: 0;
  border-radius: 0;
  padding: 20px;
}

.categories-dropdown-wrap ul li.has-children .dropdown-menu .submenu-title {
  font-size: 19px;
  font-weight: 700;
  display: block;
  color: #6c757d;
  padding: 5px 34px;
}

.categories-dropdown-wrap ul li.has-children .dropdown-menu .header-banner2 {
  display: block;
  position: relative;
  margin-bottom: 15px;
}

.categories-dropdown-wrap ul li.has-children .dropdown-menu .header-banner2 .banne_info {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 15px;
}

.categories-dropdown-wrap ul li.has-children .dropdown-menu .header-banner2 .banne_info a {
  text-transform: capitalize;
  position: relative;
  padding: 0;
  color: #272a2c !important;
}

.categories-dropdown-wrap ul li.has-children .dropdown-menu .header-banner2 .banne_info a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 50%;
  background-color: #272a2c;
  -webkit-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}

.categories-dropdown-wrap ul.end li {
  margin-right: 0;
}

.categories-dropdown-wrap .more_categories {
  margin-top: 15px;
  color: #6c757d;
  position: relative;
  font-size: 13px;
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.categories-dropdown-wrap .more_categories span.icon {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid;
  border-radius: 30px;
  margin-right: 5px;
}

.categories-dropdown-wrap .more_categories span.icon::before {
  content: "";
  width: 12px;
  height: 2px;
  background-color: #6c757d;
  position: absolute;
  right: 4px;
  top: 9px;
}

.categories-dropdown-wrap .more_categories span.icon::after {
  content: "";
  width: 2px;
  height: 12px;
  background-color: #6c757d;
  position: absolute;
  right: 9px;
  top: 4px;
}

.categories-dropdown-wrap .more_categories.show span.icon::after {
  display: none;
  content: none;
}

.categories-dropdown-wrap.style-2 {
  border: 1px solid #BCE3C9;
  border-radius: 10px;
  padding: 30px;
}

.categories-dropdown-wrap.style-2 ul li {
  border-radius: 0;
  border: 0;
  height: 24px;
  padding: 0;
  line-height: 24px;
  margin-bottom: 16px;
}

.categories-dropdown-wrap.style-2 ul li:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.categories-dropdown-wrap.style-2 ul li a {
  font-weight: 500;
}

.categories-dropdown-wrap.style-2 ul li img {
  max-height: 20px;
}

.categories-dropdown-wrap.style-2 .more_categories {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.categories-dropdown-wrap.style-2 .more_categories .icon {
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

/*Pagination*/
.pagination-area .page-item {
  margin: 0 5px;
}

.pagination-area .page-item:first-child {
  margin-left: 0;
}

.pagination-area .page-item:first-child .page-link {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.pagination-area .page-item:last-child .page-link {
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}

.pagination-area .page-item.active .page-link, .pagination-area .page-item:hover .page-link {
  color: #fff;
  background: #6c757d;
}

.pagination-area .page-item:last-child .page-link {
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  line-height: 43px;
}

.pagination-area .page-item:first-child .page-link {
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  line-height: 43px;
}

.pagination-area .page-link {
  border: 0;
  padding: 0 10px;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 40px;
  color: #2b2b2b;
  line-height: 40px;
  text-align: center;
  font-weight: 700;
  font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
  font-size: 16px;
  background-color: #F2F3F4;
}

.pagination-area .page-link.dot {
  background-color: transparent;
  color: #2b2b2b;
  letter-spacing: 2px;
}

/*LAYOUT -> SIDEBAR*/
.widget-category ul > li {
  padding: 6px 0;
  -webkit-transition-duration: .2s;
          transition-duration: .2s;
}

.widget-category ul > li:hover {
  padding-left: 5px;
  -webkit-transition-duration: .2s;
          transition-duration: .2s;
}

.widget-category ul > li a {
  color: #242424;
}

.widget-category ul > li a:hover {
  color: #6c757d;
}

.price_range {
  background: url(../imgs/banner/fillter-widget-bg.png) no-repeat right bottom;
  background-size: 150px;
}

.primary-sidebar .sidebar-widget {
  padding: 18px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  background: #fff;
}

@media (min-width: 992px) {
  .primary-sidebar {
    position: sticky;
    top: 88px;
    align-self: flex-start;
    max-height: calc(100vh - 108px);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #E5E7EB transparent;
  }
  .primary-sidebar::-webkit-scrollbar {
    width: 4px;
  }
  .primary-sidebar::-webkit-scrollbar-track {
    background: transparent;
  }
  .primary-sidebar::-webkit-scrollbar-thumb {
    background: #E5E7EB;
    border-radius: 4px;
  }
}

.widget-category-2 ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 48px;
  border-radius: 5px;
  border: 1px solid #F2F3F4;
  margin: 0 0 15px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  transition: border-color .3s, box-shadow .3s;
  -moz-transition: border-color .3s, box-shadow .3s;
  -webkit-transition: border-color .3s, box-shadow .3s;
  -o-transition: border-color .3s, box-shadow .3s;
}

.widget-category-2 ul li:last-child {
  margin-bottom: 0 !important;
}

.widget-category-2 ul li:hover {
  border: 1px solid #BCE3C9;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  -o-transition: .3s;
}

.widget-category-2 ul li:hover a {
  color: #6c757d;
}

.widget-category-2 ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  line-height: 1.5;
  color: #253D4E;
  font-size: 14px;
  float: left;
  width: 100%;
  padding: 5px 10px;
}

.widget-category-2 ul li a:hover {
  color: #ffffff;
  background-color: #67bcee;
}

.widget-category-2 ul li a img {
  max-width: 30px;
  margin-right: 15px;
}

.widget-category-2 ul li:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  margin-top: 0px;
  pointer-events: auto;
}

.widget-category-2 ul li.has-children {
  position: relative;
}

.widget-category-2 ul li.has-children > a::after {
  content: "\f111";
  font-family: 'uicons-regular-straight' !important;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -10px;
}

.widget-category-2 ul li.has-children .dropdown-menu {
  left: 100%;
  top: 0;
  margin: 0;
  margin-top: 0px;
  border: 1px solid #ececec;
  min-width: 800px;
  width: 100%;
  right: 0;
  border-radius: 0;
  padding: 20px;
}

.widget-category-2 ul li.has-children .dropdown-menu .submenu-title {
  font-size: 19px;
  font-weight: 700;
  display: block;
  color: #6c757d;
  padding: 5px 34px;
}

.widget-category-2 ul li.has-children .dropdown-menu .header-banner2 {
  display: block;
  position: relative;
  margin-bottom: 15px;
}

.widget-category-2 ul li.has-children .dropdown-menu .header-banner2 .banne_info {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 15px;
}

.widget-category-2 ul li.has-children .dropdown-menu .header-banner2 .banne_info a {
  text-transform: capitalize;
  position: relative;
  padding: 0;
  color: #272a2c !important;
}

.widget-category-2 ul li.has-children .dropdown-menu .header-banner2 .banne_info a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 50%;
  background-color: #272a2c;
  -webkit-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}

.widget-category-2 ul.end li {
  margin-right: 0;
}

.widget-category-2 .count {
  display: inline-block;
  background-color: #BCE3C9;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 20px;
  margin-left: 5px;
  font-size: 12px;
  color: #253D4E;
}

/*Social network widget*/
.follow-us a {
  display: block;
  padding: 12px 10px;
  color: #fff;
  width: 50%;
  border-radius: 5px;
  font-size: 11px;
  overflow: hidden;
  height: 46px;
}

.follow-us a .social-count {
  font-weight: bold;
}

.follow-us a:hover i {
  -webkit-transform: translateY(-35px) !important;
  transform: translateY(-35px) !important;
}

.follow-us a i {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.2s cubic-bezier(0.65, 0.23, 0.31, 0.88);
  transition: 0.2s cubic-bezier(0.65, 0.23, 0.31, 0.88);
  display: inline-block;
  font-size: 16px;
  vertical-align: middle;
}

.follow-us a i.nth-2 {
  position: absolute;
  top: 38px;
  left: 0;
}

.follow-us i.v-align-space {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  padding-right: 4px;
  line-height: 1;
}

.follow-us .social-icon {
  display: inline-block;
  position: relative;
  transition: background-color .5s ease-in-out, color .5s ease-in-out, transform .5s ease-in-out;
  -webkit-transition: background-color .5s ease-in-out, color .5s ease-in-out, transform .5s ease-in-out;
  -moz-transition: background-color .5s ease-in-out, color .5s ease-in-out, transform .5s ease-in-out;
  -o-transition: background-color .5s ease-in-out, color .5s ease-in-out, transform .5s ease-in-out;
  -ms-transition: background-color .5s ease-in-out, color .5s ease-in-out, transform .5s ease-in-out;
}

.follow-us a.follow-us-facebook,
.single-social-share a.facebook-icon {
  background: #305c99;
}

.follow-us a.follow-us-twitter,
.single-social-share a.twitter-icon {
  background: #00cdff;
}

.follow-us a.follow-us-instagram,
.single-social-share a.instagram-icon {
  background: #3f729b;
}

.follow-us a.follow-us-youtube,
.single-social-share a.pinterest-icon {
  background: #e22b26;
}

.sidebar-widget .widget-header {
  border-bottom: 1px solid #ececec;
}

.sidebar-widget .widget-header h5 {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 14px;
}

.sidebar-widget .banner-img {
  float: none;
}

.widget_categories li.cat-item,
.widget_archive li,
.widget_pages li,
.widget_recent_comments li,
.widget_nav_menu li {
  text-align: right;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
  display: table;
  width: 100%;
  font-size: 14px;
  padding: 7px 0;
}

.widget_categories li.cat-item:last-child {
  border: none;
}

.widget_categories li.cat-item a,
.widget_archive li a,
.widget_pages li a {
  text-align: left;
  float: left;
  padding: 0;
}

.widget-tags li {
  margin: 0 20px 20px 0;
}

.widget_instagram .insta-feed {
  padding-top: 5px;
  margin: -2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.widget_instagram .insta-feed li {
  width: 29.33%;
  margin: 5px;
}

.widget_instagram .insta-feed li img {
  width: 100%;
}

.social-network li {
  display: inline-block;
  margin: 0 5px 0 0;
}

.vendor-logo img {
  max-width: 150px;
}

/*newsletter*/
footer .mobile-social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: center;
  align-self: center;
}

footer .mobile-social-icon h6 {
  display: inline-block;
  margin-right: 15px;
}

footer .hotline {
  min-width: 200px;
}

footer .hotline img {
  min-width: 10px;
  margin-right: 12px;
  max-width: 30px;
  opacity: 0.5;
}

.newsletter {
  position: relative;
  margin-top: -63px;
  margin-bottom: 20px;
}

.newsletter .newsletter-inner {
  background: url(../images/sub.png) no-repeat center;
  background-size: 100%;
  padding: 0px 20px;
  clear: both;
  display: table;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.newsletter .newsletter-inner img {
  position: absolute;
  right: 50px;
  bottom: 0;
  max-width: 40%;
}

.newsletter .newsletter-inner .newsletter-content p {
  font-size: 18px;
}

.newsletter .newsletter-inner .newsletter-content form {
  background-color: #fff;
  max-width: 472px;
  border-radius: 50px;
  position: relative;
  padding: 0px 10px;
  z-index: 4;
}

.newsletter .newsletter-inner .newsletter-content form input {
  border: 0;
  border-radius: 50px 0 0 50px;
  padding-left: 58px;
  background: url(../images/icon-plane.png) no-repeat 25px center;
}

.newsletter .newsletter-inner .newsletter-content form button {
  border: 0;
  border-radius: 50px;
  font-weight: 700;
  min-width: 160px;
}

.widget-about {
  min-width: 300px;
  font-size: 15px;
}

.widget-install-app {
  min-width: 310px;
}

.contact-infor {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13.5px;
  color: #4B5563;
}

.contact-infor li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.contact-infor li:not(:last-child) {
  margin-bottom: 10px;
}

.contact-infor li img {
  margin-right: 0;
  max-width: 15px;
  margin-top: 3px;
  flex-shrink: 0;
  opacity: .7;
}

.footer-link-widget:not(:last-child) {
  margin-right: 0;
}

.footer-link-widget p {
  font-size: 15px;
  color: #253D4E;
}

.download-app {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 25px 0 33px;
}

.download-app a {
  display: block;
  margin-right: 12px;
}

.download-app a img {
  max-width: 128px;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.footer-list li {
  display: block;
  margin: 0 0 10px;
}

.footer-list li:last-child {
  margin: 0;
}

.footer-list li a {
  font-size: 14px;
  color: #4B5563;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .15s ease, transform .15s ease;
  transform: translateX(0);
}

.footer-list li a i {
  font-size: 12px;
  color: #F59E0B;
  transition: transform .15s ease;
}

.footer-list li a:hover {
  color: #F59E0B;
  transform: translateX(4px);
  text-decoration: none;
}

.footer-link-widget {
  margin-bottom: 30px;
  flex: 1;
  min-width: 200px;
}

.footer-bottom {
  border-top: 1px solid #E5E7EB;
  margin-top: 10px;
}

.footer-bottom-container {
  padding: 18px 0 14px;
}

.footer-bottom-card {
  padding: 0 15px;
}

.footer-bottom-card.footer-copy {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-bottom-card.footer-trust {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-bottom-card.footer-trust {
    align-items: flex-end;
  }
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .trust-badges {
    justify-content: flex-end;
  }
}

.footer-payment-methods {
  max-width: 180px;
  height: auto;
  display: inline-block;
  margin-bottom: 10px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 11px;
  border-radius: 20px;
  background-color: #fff;
  color: #374151;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #E5E7EB;
  transition: background .15s, border-color .15s;
}

.trust-badge i {
  color: #F59E0B;
}

a.trust-badge:hover {
  background-color: #FEF3C7;
  border-color: #F59E0B;
  text-decoration: none;
  color: #374151;
}

footer .mobile-social-icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

footer .mobile-social-icon h6 {
  width: 100%;
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: .5px;
}

footer .mobile-social-icon a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #E5E7EB;
  transition: background .15s, border-color .15s, transform .15s;
}

footer .mobile-social-icon a:hover {
  background-color: #F59E0B;
  border-color: #F59E0B;
  transform: translateY(-2px);
}

footer .mobile-social-icon a:hover img {
  filter: brightness(0) invert(1);
}

footer .mobile-social-icon a img {
  width: 15px;
  transition: filter .15s;
}

@media (max-width: 991px) {
  .footer-bottom-card {
    padding: 0 10px;
  }

  .footer-bottom-card.footer-trust {
    align-items: flex-start;
  }

  .footer-bottom-card.footer-copy {
    text-align: left;
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .footer-link-widget {
    margin-bottom: 20px;
    min-width: auto;
    flex: none;
  }

  .footer-bottom-container {
    padding: 16px 0 8px;
  }

  .trust-badges {
    justify-content: flex-start;
  }

  .bg-square {
    min-width: auto;
    max-width: 100%;
    right: -20px;
  }
}

#scrollUp {
  width: 40px;
  height: 40px;
  color: #fff;
  right: 24px;
  bottom: 28px;
  border-radius: 12px;
  text-align: center;
  overflow: hidden;
  z-index: 999 !important;
  border: none;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  box-shadow: 0 4px 14px rgba(245,158,11,.35);
  transition: transform .2s ease, box-shadow .2s ease;
}

#scrollUp i {
  display: block;
  line-height: 40px !important;
  font-size: 20px;
}

#scrollUp:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(245,158,11,.45);
}

.footer-mid .widget-title {
  margin: 0 0 18px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #F59E0B;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.2px;
  display: inline-block;
}

/*LAYOUT -> SPACING**/
.section-padding-30 {
  padding: 30px 0;
}

.section-padding-50 {
  padding: 50px 0;
}

.section-padding-60 {
  padding: 60px 0;
}

.section-padding {
  padding: 25px 0;
}

.ptb-0 {
  padding: 0;
}

.ptb-10 {
  padding: 10px 0;
}

.ptb-20 {
  padding: 20px 0;
}

.ptb-30 {
  padding: 30px 0;
}

.ptb-35 {
  padding: 35px 0;
}

.ptb-32 {
  padding: 32px 0;
}

.ptb-40 {
  padding: 40px 0;
}

.ptb-50 {
  padding: 50px 0;
}

.ptb-60 {
  padding: 60px 0;
}

.ptb-70 {
  padding: 70px 0;
}

.ptb-80 {
  padding: 80px 0;
}

.ptb-90 {
  padding: 90px 0;
}

.ptb-100 {
  padding: 100px 0;
}

.ptb-110 {
  padding: 110px 0;
}

.ptb-120 {
  padding: 120px 0;
}

.ptb-130 {
  padding: 130px 0;
}

.ptb-140 {
  padding: 140px 0;
}

.ptb-150 {
  padding: 150px 0;
}

.ptb-160 {
  padding: 160px 0;
}

.ptb-170 {
  padding: 170px 0;
}

.ptb-177 {
  padding: 177px 0;
}

.ptb-180 {
  padding: 180px 0;
}

.ptb-190 {
  padding: 190px 0;
}

.ptb-200 {
  padding: 200px 0;
}

.ptb-210 {
  padding: 210px 0;
}

.ptb-220 {
  padding: 220px 0;
}

.ptb-290 {
  padding: 290px 0;
}

.ptb-310 {
  padding: 310px 0;
}

.p-10 {
  padding: 10px !important;
}

.p-15 {
  padding: 15px !important;
}

.p-20 {
  padding: 20px !important;
}

.p-25 {
  padding: 25px !important;
}

.p-30 {
  padding: 30px !important;
}

.p-40 {
  padding: 40px !important;
}

.p-65 {
  padding: 65px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-55 {
  padding-top: 55px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-65 {
  padding-top: 65px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pt-75 {
  padding-top: 75px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pt-85 {
  padding-top: 85px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pt-95 {
  padding-top: 95px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pt-105 {
  padding-top: 105px !important;
}

.pt-110 {
  padding-top: 110px !important;
}

.pt-115 {
  padding-top: 115px !important;
}

.pt-120 {
  padding-top: 120px !important;
}

.pt-125 {
  padding-top: 125px !important;
}

.pt-130 {
  padding-top: 130px !important;
}

.pt-135 {
  padding-top: 135px !important;
}

.pt-140 {
  padding-top: 140px !important;
}

.pt-145 {
  padding-top: 145px !important;
}

.pt-150 {
  padding-top: 150px !important;
}

.pt-155 {
  padding-top: 155px !important;
}

.pt-160 {
  padding-top: 160px !important;
}

.pt-165 {
  padding-top: 165px !important;
}

.pt-170 {
  padding-top: 170px !important;
}

.pt-175 {
  padding-top: 175px !important;
}

.pt-180 {
  padding-top: 180px !important;
}

.pt-185 {
  padding-top: 185px !important;
}

.pt-190 {
  padding-top: 190px !important;
}

.pt-195 {
  padding-top: 195px !important;
}

.pt-200 {
  padding-top: 200px !important;
}

.pt-260 {
  padding-top: 260px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-55 {
  padding-bottom: 55px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-65 {
  padding-bottom: 65px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-75 {
  padding-bottom: 75px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-85 {
  padding-bottom: 85px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pb-95 {
  padding-bottom: 95px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pb-105 {
  padding-bottom: 105px !important;
}

.pb-110 {
  padding-bottom: 110px !important;
}

.pb-115 {
  padding-bottom: 115px !important;
}

.pb-120 {
  padding-bottom: 120px !important;
}

.pb-125 {
  padding-bottom: 125px !important;
}

.pb-130 {
  padding-bottom: 130px !important;
}

.pb-135 {
  padding-bottom: 135px !important;
}

.pb-140 {
  padding-bottom: 140px !important;
}

.pb-145 {
  padding-bottom: 145px !important;
}

.pb-150 {
  padding-bottom: 150px !important;
}

.pb-155 {
  padding-bottom: 155px !important;
}

.pb-160 {
  padding-bottom: 160px !important;
}

.pb-165 {
  padding-bottom: 165px !important;
}

.pb-170 {
  padding-bottom: 170px !important;
}

.pb-175 {
  padding-bottom: 175px !important;
}

.pb-180 {
  padding-bottom: 180px !important;
}

.pb-185 {
  padding-bottom: 185px !important;
}

.pb-190 {
  padding-bottom: 190px !important;
}

.pb-195 {
  padding-bottom: 195px !important;
}

.pb-200 {
  padding-bottom: 200px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pl-45 {
  padding-left: 45px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pl-55 {
  padding-left: 55px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pl-65 {
  padding-left: 65px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.pl-75 {
  padding-left: 75px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.pl-85 {
  padding-left: 85px !important;
}

.pl-90 {
  padding-left: 90px !important;
}

.pl-95 {
  padding-left: 95px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

.pl-105 {
  padding-left: 105px !important;
}

.pl-110 {
  padding-left: 110px !important;
}

.pl-115 {
  padding-left: 115px !important;
}

.pl-120 {
  padding-left: 120px !important;
}

.pl-125 {
  padding-left: 125px !important;
}

.pl-130 {
  padding-left: 130px !important;
}

.pl-135 {
  padding-left: 135px !important;
}

.pl-140 {
  padding-left: 140px !important;
}

.pl-145 {
  padding-left: 145px !important;
}

.pl-150 {
  padding-left: 150px !important;
}

.pl-155 {
  padding-left: 155px !important;
}

.pl-160 {
  padding-left: 160px !important;
}

.pl-165 {
  padding-left: 165px !important;
}

.pl-170 {
  padding-left: 170px !important;
}

.pl-175 {
  padding-left: 175px !important;
}

.pl-180 {
  padding-left: 180px !important;
}

.pl-185 {
  padding-left: 185px !important;
}

.pl-190 {
  padding-left: 190px !important;
}

.pl-195 {
  padding-left: 195px !important;
}

.pl-200 {
  padding-left: 200px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pr-45 {
  padding-right: 45px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pr-55 {
  padding-right: 55px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pr-65 {
  padding-right: 65px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pr-75 {
  padding-right: 75px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pr-85 {
  padding-right: 85px !important;
}

.pr-90 {
  padding-right: 90px !important;
}

.pr-95 {
  padding-right: 95px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

.pr-105 {
  padding-right: 105px !important;
}

.pr-110 {
  padding-right: 110px !important;
}

.pr-115 {
  padding-right: 115px !important;
}

.pr-120 {
  padding-right: 120px !important;
}

.pr-125 {
  padding-right: 125px !important;
}

.pr-130 {
  padding-right: 130px !important;
}

.pr-135 {
  padding-right: 135px !important;
}

.pr-140 {
  padding-right: 140px !important;
}

.pr-145 {
  padding-right: 145px !important;
}

.pr-150 {
  padding-right: 150px !important;
}

.pr-155 {
  padding-right: 155px !important;
}

.pr-160 {
  padding-right: 160px !important;
}

.pr-165 {
  padding-right: 165px !important;
}

.pr-170 {
  padding-right: 170px !important;
}

.pr-175 {
  padding-right: 175px !important;
}

.pr-180 {
  padding-right: 180px !important;
}

.pr-185 {
  padding-right: 185px !important;
}

.pr-190 {
  padding-right: 190px !important;
}

.pr-195 {
  padding-right: 195px !important;
}

.pr-200 {
  padding-right: 200px !important;
}

.plr-5-percent {
  padding: 0 5%;
}

/***************************
    Page section margin 
****************************/
.mtb-0 {
  margin: 0;
}

.mtb-10 {
  margin: 10px 0;
}

.mtb-15 {
  margin: 15px 0;
}

.mtb-20 {
  margin: 20px 0;
}

.mtb-30 {
  margin: 30px 0;
}

.mtb-40 {
  margin: 40px 0;
}

.mtb-50 {
  margin: 50px 0;
}

.mtb-60 {
  margin: 60px 0;
}

.mtb-70 {
  margin: 70px 0;
}

.mtb-80 {
  margin: 80px 0;
}

.mtb-90 {
  margin: 90px 0;
}

.mtb-100 {
  margin: 100px 0;
}

.mtb-110 {
  margin: 110px 0;
}

.mtb-120 {
  margin: 120px 0;
}

.mtb-130 {
  margin: 130px 0;
}

.mtb-140 {
  margin: 140px 0;
}

.mtb-150 {
  margin: 150px 0;
}

.mtb-290 {
  margin: 290px 0;
}

.mb-24 {
  margin-bottom: 24px;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-55 {
  margin-top: 55px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-65 {
  margin-top: 65px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-75 {
  margin-top: 75px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-85 {
  margin-top: 85px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mt-95 {
  margin-top: 95px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mt-105 {
  margin-top: 105px !important;
}

.mt-110 {
  margin-top: 110px !important;
}

.mt-115 {
  margin-top: 115px !important;
}

.mt-120 {
  margin-top: 120px !important;
}

.mt-125 {
  margin-top: 125px !important;
}

.mt-130 {
  margin-top: 130px !important;
}

.mt-135 {
  margin-top: 135px !important;
}

.mt-140 {
  margin-top: 140px !important;
}

.mt-145 {
  margin-top: 145px !important;
}

.mt-150 {
  margin-top: 150px !important;
}

.mt-155 {
  margin-top: 155px !important;
}

.mt-160 {
  margin-top: 160px !important;
}

.mt-165 {
  margin-top: 165px !important;
}

.mt-170 {
  margin-top: 170px !important;
}

.mt-175 {
  margin-top: 175px !important;
}

.mt-180 {
  margin-top: 180px !important;
}

.mt-185 {
  margin-top: 185px !important;
}

.mt-190 {
  margin-top: 190px !important;
}

.mt-195 {
  margin-top: 195px !important;
}

.mt-200 {
  margin-top: 200px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-55 {
  margin-bottom: 55px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-65 {
  margin-bottom: 65px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-75 {
  margin-bottom: 75px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-85 {
  margin-bottom: 85px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-95 {
  margin-bottom: 95px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mb-105 {
  margin-bottom: 105px !important;
}

.mb-110 {
  margin-bottom: 110px !important;
}

.mb-115 {
  margin-bottom: 115px !important;
}

.mb-120 {
  margin-bottom: 120px !important;
}

.mb-125 {
  margin-bottom: 125px !important;
}

.mb-130 {
  margin-bottom: 130px !important;
}

.mb-135 {
  margin-bottom: 135px !important;
}

.mb-140 {
  margin-bottom: 140px !important;
}

.mb-145 {
  margin-bottom: 145px !important;
}

.mb-150 {
  margin-bottom: 150px !important;
}

.mb-155 {
  margin-bottom: 155px !important;
}

.mb-160 {
  margin-bottom: 160px !important;
}

.mb-165 {
  margin-bottom: 165px !important;
}

.mb-170 {
  margin-bottom: 170px !important;
}

.mb-175 {
  margin-bottom: 175px !important;
}

.mb-180 {
  margin-bottom: 180px !important;
}

.mb-185 {
  margin-bottom: 185px !important;
}

.mb-190 {
  margin-bottom: 190px !important;
}

.mb-195 {
  margin-bottom: 195px !important;
}

.mb-200 {
  margin-bottom: 200px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.ml-45 {
  margin-left: 45px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.ml-55 {
  margin-left: 55px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.ml-65 {
  margin-left: 65px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.ml-75 {
  margin-left: 75px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.ml-85 {
  margin-left: 85px !important;
}

.ml-90 {
  margin-left: 90px !important;
}

.ml-95 {
  margin-left: 95px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

.ml-105 {
  margin-left: 105px !important;
}

.ml-110 {
  margin-left: 110px !important;
}

.ml-115 {
  margin-left: 115px !important;
}

.ml-120 {
  margin-left: 120px !important;
}

.ml-125 {
  margin-left: 125px !important;
}

.ml-130 {
  margin-left: 130px !important;
}

.ml-135 {
  margin-left: 135px !important;
}

.ml-140 {
  margin-left: 140px !important;
}

.ml-145 {
  margin-left: 145px !important;
}

.ml-150 {
  margin-left: 150px !important;
}

.ml-155 {
  margin-left: 155px !important;
}

.ml-160 {
  margin-left: 160px !important;
}

.ml-165 {
  margin-left: 165px !important;
}

.ml-170 {
  margin-left: 170px !important;
}

.ml-175 {
  margin-left: 175px !important;
}

.ml-180 {
  margin-left: 180px !important;
}

.ml-185 {
  margin-left: 185px !important;
}

.ml-190 {
  margin-left: 190px !important;
}

.ml-195 {
  margin-left: 195px !important;
}

.ml-200 {
  margin-left: 200px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-45 {
  margin-right: 45px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mr-55 {
  margin-right: 55px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mr-65 {
  margin-right: 65px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.mr-75 {
  margin-right: 75px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.mr-85 {
  margin-right: 85px !important;
}

.mr-90 {
  margin-right: 90px !important;
}

.mr-95 {
  margin-right: 95px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

.mr-105 {
  margin-right: 105px !important;
}

.mr-110 {
  margin-right: 110px !important;
}

.mr-115 {
  margin-right: 115px !important;
}

.mr-120 {
  margin-right: 120px !important;
}

.mr-125 {
  margin-right: 125px !important;
}

.mr-130 {
  margin-right: 130px !important;
}

.mr-135 {
  margin-right: 135px !important;
}

.mr-140 {
  margin-right: 140px !important;
}

.mr-145 {
  margin-right: 145px !important;
}

.mr-150 {
  margin-right: 150px !important;
}

.mr-155 {
  margin-right: 155px !important;
}

.mr-160 {
  margin-right: 160px !important;
}

.mr-165 {
  margin-right: 165px !important;
}

.mr-170 {
  margin-right: 170px !important;
}

.mr-175 {
  margin-right: 175px !important;
}

.mr-180 {
  margin-right: 180px !important;
}

.mr-185 {
  margin-right: 185px !important;
}

.mr-190 {
  margin-right: 190px !important;
}

.mr-195 {
  margin-right: 195px !important;
}

.mr-200 {
  margin-right: 200px !important;
}

@media only screen and (max-width: 768px) {
  .totall-product h2 {
    font-size: 28px;
  }
  .loop-grid.loop-list article .post-thumb {
    min-height: 220px;
    min-width: 300px;
  }
  .loop-grid.loop-list article h3.post-title {
    font-size: 22px;
    margin-bottom: 30px !important;
  }
  .loop-grid.loop-list article .post-exerpt {
    display: none;
  }
  .loop-grid.loop-list article .entry-content-2.pl-50 {
    padding-left: 30px !important;
  }
  .loop-big h2.post-title {
    font-size: 32px;
  }
  .header-style-1 .header-bottom-bg-color {
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);
  }
  .header-action-2 .header-action-icon-2:last-child {
    padding: 0;
  }
  .logo.logo-width-1 {
    margin-right: 0;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .logo.logo-width-1 a img {
    width: 150px;
    min-width: 150px;
  }
  .header-bottom {
    padding: 20px 0;
  }
  .header-action .header-action-icon {
    margin-right: 15px;
  }
  .header-action .header-action-icon.header-action-mrg-none {
    margin-right: 15px;
  }
  .header-action .header-action-icon.header-action-mrg-none2 {
    margin-right: 15px;
  }
  .header-action .header-action-icon > a {
    font-size: 20px;
  }
  .header-action-2 .header-action-icon-2 {
    padding: 0 6px;
  }
  .header-action-2 .header-action-icon-2:last-child {
    padding: 0 0 0 6px;
  }
  .header-action-2 .header-action-icon-2 > a {
    color: #fff;
    fill: #fff;
    font-size: 22px;
    margin-right: 0;
  }

/* HEADER GENEL DÜZEN */
.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* LOGO */
.logo img {
    max-height: 50px;
}

/* SEARCH ALANI */
.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.search-style-2 {
    width: 100%;
    max-width: 600px;
}

.search-style-2 input {
    width: 100%;
    height: 45px;
    border-radius: 30px;
    padding: 0 20px;
    font-size: 14px;
}

/* SAĞ İKONLAR */
.header-action-right {
    display: flex;
    align-items: center;
    gap: 18px; /* EN ÖNEMLİ */
}

.header-middle {
    padding: 12px 0;
}

/* HEADER ANA SATIR */
.header-middle .header-wrap.header-space-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: nowrap;
}

/* LOGO BLOĞU */
.header-middle .logo.logo-width-1 {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

/* ORTA ALAN */
.header-middle .header-center {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ARAMA FORMU */
.header-middle .header-center .search-style-2 {
    width: 100%;
    max-width: 520px;
}

.header-middle .header-center .search-style-2 form {
    width: 100%;
}

.header-middle .header-center .search-style-2 input {
    width: 100%;
    height: 44px;
    padding: 0 44px 0 16px;
    border-radius: 10px;
    box-sizing: border-box;
}

/* SAĞ AKSİYONLAR */
.header-middle .header-action-right,
.header-middle .header-action-wrap {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: 20px;
}

/* ICON ITEM */
.header-middle .header-action-right a,
.header-middle .header-action-wrap a {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    margin: 0 !important;
    padding: 0;
}

/* SAYI BADGE */
.header-middle .pro-count {
    top: -6px;
    right: -8px;
}

/* DAR EKRANLARDA MASAÜSTÜ HEADER */
@media (max-width: 1199px) {
    .header-middle .header-wrap.header-space-between {
        gap: 14px;
    }

    .header-middle .header-center .search-style-2 {
        max-width: 420px;
    }

    .header-middle .header-action-right,
    .header-middle .header-action-wrap {
        gap: 12px;
        margin-left: 12px;
    }
}

/* HER İKON */
.header-action-right a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

/* SEPET / FAVORİ BADGE */
.header-action-right .pro-count {
    top: -6px;
    right: -8px;
}

  .cart-dropdown-wrap {
    width: 290px;
    right: 0;
    max-width: calc(100vw - 24px);
  }
  .cart-dropdown-wrap ul li .shopping-cart-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60px;
    flex: 0 0 60px;
    margin-right: 10px;
  }
  .cart-dropdown-wrap .shopping-cart-footer .shopping-cart-button a {
    padding: 12px 22px 13px;
  }
  .categories-dropdown-wrap ul li a {
    padding: 5px 12px;
  }
  .search-popup-wrap .search-popup-content form input {
    width: 270px;
    font-size: 25px;
    padding: 21px 20px 12px 0;
  }
  .mobile-header-wrapper-style {
    width: min(380px, 100vw);
  }
  .mobile-header-wrapper-style .mobile-header-top {
    padding: 15px 30px 13px 30px;
    border-bottom: 1px solid #ececec;
  }
  .mobile-header-wrapper-style .mobile-header-top .mobile-header-logo a img {
    width: 140px;
  }
  .mobile-header-wrapper-style .mobile-header-content-area {
    padding: 30px;
  }
  .header-height-1 {
    min-height: 65px;
  }
  .header-height-2 {
    min-height: 65px;
  }
  .home-slider.pt-50 {
    padding-top: 0 !important;
  }
  .hero-slider-content-2 h1 {
    font-size: 32px;
    line-height: 1.2;
  }
  .hero-slider-content-2 h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .hero-slider-content-2 h4 {
    font-size: 16px;
    margin: 0 0 10px;
  }
  .hero-slider-content-2 .btn-default {
    color: #fff;
    background-color: #6c757d;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 14px;
  }
  .hero-slider-content-2 p {
    font-size: 14px;
    line-height: 1.3;
  }
  .banner-big h4 {
    font-size: 12px;
  }
  .banner-big h2 {
    font-size: 16px;
  }
  .banner-big .btn {
    background-color: #6c757d;
    color: #fff;
    border-radius: 3px;
    font-size: 13px;
    padding: 10px 22px;
    border: 0;
  }
  .home-slider .slider-arrow {
    display: none;
  }
  .home-slider .hero-slider-1 {
    height: 350px;
  }
  .home-slider .hero-slider-1.style-2 {
    height: 400px;
  }
  .home-slider .hero-slider-1.style-2 .hero-slider-content-2 {
    padding-left: 0;
    padding-top: 100px;
  }
  .home-slider .hero-slider-1.style-2 .single-slider-img img {
    max-width: 400px;
  }
  .home-slider .hero-slider-1.style-2 .slider-1-height-2 {
    height: 400px;
    position: relative;
  }
  .banner-img {
    float: left;
  }
  .banner-img.f-none {
    float: none;
  }
  .hero-slider-1.style-3 .slider-1-height-3 {
    height: 390px;
  }
  .hero-slider-1.style-3 .hero-slider-content-2 {
    padding-left: 20px;
  }
  .home-slide-cover .hero-slider-1.style-4 .hero-slider-content-2 {
    padding-left: 0;
  }
  .home-slide-cover .hero-slider-1.style-4 .hero-slider-content-2 h1 {
    font-size: 30px;
  }
  .home-slide-cover .hero-slider-1.style-4 .hero-slider-content-2 h2 {
    font-size: 14px;
  }
  .home-slide-cover .hero-slider-1.style-4 .hero-slider-content-2 h4 {
    font-size: 12px;
  }
  .header-style-3 .header-bottom-bg-color {
    border-bottom: 2px solid #6c757d;
  }
  .header-style-3 .main-nav {
    border: none !important;
  }
  .header-style-3 .sticky-bar.stick.sticky-blue-bg {
    background-color: #6c757d;
  }
  .header-style-4 .main-nav {
    border: none !important;
  }
  .header-style-4 .sticky-bar.stick.sticky-blue-bg {
    background-color: #6c757d;
  }
  .font-xxl {
    font-size: 38px;
  }
  .single-page.pl-30, .single-page.pr-30 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .download-app {
    margin-bottom: 0 !important;
  }
  .footer-mid .logo img {
    max-width: 150px;
  }
  .footer-mid .widget-install-app, .footer-mid .widget-about {
    min-width: 205px;
  }
  .footer-mid .widget-about strong {
    display: none;
  }
  .product-list .product-cart-wrap {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .product-list .product-cart-wrap .product-img-action-wrap {
    max-width: 45%;
  }
  .product-list .product-cart-wrap h2 {
    font-size: 24px;
  }
  .product-list .product-cart-wrap p.mt-15 {
    display: none;
  }
  .product-list .product-cart-wrap .product-rate-cover {
    margin-bottom: 20px;
  }
  .detail-info {
    padding: 10px !important;
  }
  .detail-info h2 {
    font-size: 30px;
  }
  .detail-info .detail-extralink .detail-qty {
    padding: 11px 20px 11px 10px;
    max-width: 60px;
  }
  .detail-info .product-extra-link2 .button.button-add-to-cart {
    padding: 0px 15px;
  }
  .detail-info .product-extra-link2 .button.button-add-to-cart i {
    display: none;
  }
  .shopping-summery table tbody tr img {
    max-width: 80px;
    margin-right: 15px;
  }
  .shopping-summery .form-check-label {
    display: none;
  }
  .shopping-summery h6 {
    font-size: 14px;
  }
  .shopping-summery td.pl-30 {
    padding-left: 0 !important;
  }
  .shopping-summery button.btn {
    width: 120px;
    margin-left: 15px;
  }
  .product-cart-wrap .product-img-action-wrap .product-action-1 {
    min-width: 75px;
  }
  .custom-modal .modal-dialog {
    max-width: 720px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
  .mobile-promotion {
    display: block;
    padding: 7px 0;
    text-align: center;
    background: #6c757d;
    color: #fff;
  }
}

/*Mobile landscape*/
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-action .header-action-icon {
    margin-right: 20px;
  }
  .header-action .header-action-icon.header-action-mrg-none {
    margin-right: 20px;
  }
  .header-action .header-action-icon.header-action-mrg-none2 {
    margin-right: 20px;
  }
  .header-action .header-action-icon > a {
    font-size: 22px;
  }
  .header-action-2 .header-action-icon-2 {
    padding: 0 10px;
  }
  .header-action-2 .header-action-icon-2:last-child {
    padding: 0 0 0 10px;
  }
  .header-action-2 .header-action-icon-2 > a {
    font-size: 22px;
  }
  .cart-dropdown-wrap {
    width: 310px;
  }
  .search-popup-wrap .search-popup-content form input {
    width: 480px;
    font-size: 25px;
    padding: 21px 20px 12px 0;
  }
  .comment-form .name {
    padding-right: 0px;
    margin-bottom: 1rem;
  }
  .header-style-5 .search-style-2 {
    display: none;
  }
}

/*Tablet*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-action .header-action-icon {
    margin-right: 33px;
  }
  .header-action .header-action-icon.header-action-mrg-none {
    margin-right: 33px;
  }
  .header-action .header-action-icon.header-action-mrg-none2 {
    margin-right: 33px;
  }
  .header-action-2 .header-action-icon-2 > a {
    color: #fff;
    fill: #fff;
  }
  .search-popup-wrap .search-popup-content form input {
    width: 650px;
    font-size: 35px;
  }
  .header-height-1 {
    min-height: 50px;
  }
  .header-height-2 {
    min-height: 50px;
    border-bottom: 2px solid #6c757d;
  }
  .header-height-3 {
    min-height: 50px;
  }
  .header-height-4 {
    min-height: 50px;
  }
  .header-style-5 .header-bottom {
    padding: 5px 0;
    border-bottom: 1px solid #f7f8f9;
  }
  .comment-form .email {
    padding-left: 0px;
  }
  .loop-grid.pr-30 {
    padding-right: 0 !important;
  }
}

/*Desktop*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .totall-product h2 {
    font-size: 28px;
  }
  .loop-grid.loop-list article .post-thumb {
    min-height: 220px;
    min-width: 300px;
  }
  .loop-grid.loop-list article h3.post-title {
    font-size: 22px;
    margin-bottom: 30px !important;
  }
  .loop-grid.loop-list article .post-exerpt {
    display: none;
  }
  .loop-grid.loop-list article .entry-content-2.pl-50 {
    padding-left: 30px !important;
  }
  .logo.logo-hm3 a img {
    width: 120px;
  }
  .header-style-5 .search-style-2 {
    display: none;
  }
  .main-menu.main-menu-mrg-1 {
    margin: 0 0 0 15px;
  }
  .main-menu > nav > ul > li ul.sub-menu li ul.level-menu.level-menu-modify {
    width: 165px;
  }
  .main-menu > nav > ul > li ul.mega-menu li .menu-banner-wrap .menu-banner-content {
    left: 20px;
    top: 22px;
  }
  .main-menu > nav > ul > li ul.mega-menu li .menu-banner-wrap .menu-banner-content h3 {
    font-size: 20px;
    line-height: 1.3;
    margin: 5px 0 7px;
  }
  .main-menu > nav > ul > li ul.mega-menu li .menu-banner-wrap .menu-banner-content .menu-banner-price {
    margin: 0 0 10px;
  }
  .main-menu > nav > ul > li ul.mega-menu li .menu-banner-wrap .menu-banner-content .menu-banner-btn a {
    padding: 10px 16px 13px;
  }
  .main-menu > nav > ul > li ul.mega-menu li .menu-banner-wrap .menu-banner-discount {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
  .main-menu.main-menu-padding-1 > nav > ul > li {
    padding: 0 8px;
  }
  .main-menu.main-menu-padding-1.hm3-menu-padding > nav > ul > li {
    padding: 0 6px;
  }
  .search-style-1 {
    margin-right: 15px;
  }
  .search-style-1 form {
    width: 170px;
  }
  .header-action.header-action-hm3 .header-action-icon {
    margin-right: 15px;
  }
  .header-action.header-action-hm3 .header-action-icon.header-action-mrg-none2 {
    margin-right: 0;
  }
  .header-action.header-action-hm3 .header-action-icon:last-child {
    margin-right: 0;
  }
  .search-style-2 form input {
    width: 340px;
  }
  .hotline p {
    font-size: 15px;
  }
  .search-popup-wrap .search-popup-content form input {
    width: 820px;
  }
  .header-height-1 {
    min-height: 157px;
  }
  .header-height-3 {
    min-height: 133px;
  }
  .header-height-4 {
    min-height: 144px;
  }
  .hero-slider-1 {
    height: 350px;
  }
  .hero-slider-1 .single-slider-img-1 {
    height: 350px;
  }
}

@media (min-width: 992px) {
  .col-md-1-5 {
    width: 20%;
  }
  .col-md-2-5 {
    width: 40%;
  }
  .col-md-3-5 {
    width: 60%;
  }
  .col-md-4-5 {
    width: 80%;
  }
  .col-md-5-5 {
    width: 100%;
  }
}

/*Wide screen*/
@media only screen and (min-width: 1600px) {
  .header-action-right .search-location {
    display: block;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1610px;
  }
  .col-lg-1-5 {
    width: 20%;
  }
  .col-lg-2-5 {
    width: 40%;
  }
  .col-lg-3-5 {
    width: 60%;
  }
  .col-lg-4-5 {
    width: 80%;
  }
  .col-lg-5-5 {
    width: 100%;
  }
  .header-action-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {
  .main-menu.main-menu-padding-1 > nav > ul > li {
    padding: 0 14px;
  }
}

@media only screen and (max-width: 1400px) {
  .product-cart-wrap.style-2 .product-content-wrap {
    max-width: 94%;
  }
  .hero-slider-1 .single-hero-slider {
    height: 467px;
  }
  .display-2 {
    font-size: 64px;
  }
  .banner-img.style-2 {
    height: 483px;
  }
  .slider-nav-thumbnails button.slick-arrow.slick-prev {
    left: 10px;
  }
  .slider-nav-thumbnails button.slick-arrow.slick-next {
    right: 10px;
  }
  .zoomContainer {
    display: none;
  }
  .detail-info h2 {
    font-size: 30px;
  }
  .tab-style3 .nav-item {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 1024px) {
  .header-style-1 .main-categori-wrap {
    margin-right: 20px;
  }
  .product-cart-wrap .product-action-1 a.action-btn {
    width: 34px;
    height: 34px;
    line-height: 40px;
    font-size: 13px;
  }
  .banner-big h1 {
    font-size: 22px;
  }
  .banner-big .btn {
    border-radius: 3px;
    font-size: 12px;
    padding: 6px 12px;
    border: 0;
  }
  .banner-img .banner-text h4 {
    margin-top: 0px !important;
  }
  .header-wrap .header-right {
    overflow: hidden;
  }
  .footer-link-cover {
    display: block;
  }
  .footer-link-cover .footer-link-widget {
    margin-right: 30px;
    float: left;
    margin-bottom: 30px;
  }
  .footer-link-cover .footer-link-widget:not(:last-child) {
    margin-right: 30px;
  }
  .et, .hotline, li.hot-deals, .header-action-2 .header-action-icon-2 span.lable {
    display: none !important;
  }
  .main-menu.main-menu-padding-1 > nav > ul > li {
    padding: 0 10px;
  }
  .hero-slider-1 .single-hero-slider {
    height: 350px;
  }
  .hero-slider-1 .single-hero-slider .display-2 {
    font-size: 46px;
    margin-bottom: 25px !important;
  }
  .hero-slider-1 .single-hero-slider .slider-content p {
    font-size: 22px;
    margin-bottom: 40px !important;
  }
  .banner-img .banner-text h4 {
    min-height: 50px;
    font-size: 18px;
  }
  .header-style-1 .search-style-2 form {
    max-width: 450px;
  }
  .header-action-2 .header-action-icon-2:last-child {
    padding: 0 0 0 8px;
  }
  .nav-tabs.links .nav-link {
    padding: 0 7px;
    font-size: 14px;
  }
  .deals-countdown .countdown-section {
    padding: 20px 2px 30px 2px;
    margin-left: 2px;
    margin-right: 2px;
  }
  .section-title.style-1 {
    padding-bottom: 15px;
    font-size: 20px;
  }
  .product-list-small h6 {
    font-size: 14px;
  }
  .product-list-small .product-rate-cover {
    display: none;
  }
  .section-title.style-2 {
    display: block;
  }
  .section-title.style-2 h3 {
    margin-bottom: 25px;
    font-size: 28px;
  }
  .modal-open .modal {
    padding-right: 0 !important;
  }
  .vendor-wrap.style-2 {
    display: block;
  }
  .mt-md-30 {
    margin-top: 30px !important;
  }
  .banner-img.style-4 .banner-text h4 {
    font-size: 20px;
  }
  .header-style-1.header-style-5 .header-bottom-bg-color {
    background: #fff !important;
  }
}

/*small phone*/
@media only screen and (max-width: 480px) {
  .archive-header {
    padding: 30px;
  }
  .mobile-promotion {
    display: block;
    padding: 0px 0;
    text-align: center;
    color: #fff;
    background: #000 !important;
  }
  .loop-big h2.post-title {
    font-size: 22px;
  }
  .entry-meta.meta-1 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .single-header-meta .single-share {
    display: none;
  }
  .single-content blockquote {
    padding: 20px 30px;
    border-radius: 15px;
    margin: 20px auto;
    font-size: 16px;
    max-width: 100%;
  }
  .single-content blockquote p {
    font-size: 16px;
    line-height: 22px;
  }
  .hero-slider-1 .single-hero-slider .display-2 {
    font-size: 32px;
  }
  .hero-slider-1 .single-hero-slider .slider-content p {
    font-size: 16px;
    margin-bottom: 40px !important;
  }
  .hero-slider-1 .single-hero-slider .slider-content form {
    max-width: 310px;
  }
  .hero-slider-1 .single-hero-slider .slider-content form button.submit, .hero-slider-1 .single-hero-slider .slider-content form button[type="submit"] {
    padding: 12px 20px;
  }
  .security-code {
    padding: 0 20px;
  }
  .post-list .post-thumb {
    max-width: unset;
    margin-right: 0 !important;
  }
  .entry-meta.meta-2 a.btn {
    display: inline-block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .entry-meta.meta-2 .font-xs {
    max-width: 150px;
    line-height: 1.3;
  }
  .banner-bg h2 {
    font-size: 20px;
  }
  .single-header .single-header-meta, .entry-bottom {
    display: block;
  }
  .carausel-6-columns, .carausel-4-columns {
    max-width: 375px;
    overflow: hidden;
  }
  .hero-slider-1 {
    height: unset;
  }
  .hero-slider-content-2 {
    text-align: center;
    padding-top: 20px;
  }
  .hero-slider-content-2 p {
    width: 100%;
  }
  .header-height-2 {
    min-height: 40px;
  }
  .banner-left-icon, .banner-img {
    margin-bottom: 15px;
  }
  .header-action-2 .header-action-icon-2:last-child {
    padding: 0;
  }
  .popular-categories .slider-btn.slider-prev {
    right: 50px !important;
    left: unset !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-4 {
    margin-bottom: 1rem;
  }
  .mb-sm-5 {
    margin-bottom: 2rem;
  }
  .heading-tab {
    display: block !important;
  }
  .heading-tab h3.section-title {
    margin-bottom: 15px !important;
  }
  .nav.right {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
  .hero-slider-1.style-2 .single-slider-img {
    display: none;
  }
  ul.footer-list {
    margin-bottom: 30px;
  }
  .section-padding-60 {
    padding: 30px 0;
  }
  .pt-60, .pt-40 {
    padding-top: 30px !important;
  }
  .pb-60 {
    padding-bottom: 30px !important;
  }
  .mb-60 {
    margin-bottom: 30px !important;
  }
  .hero-slider-1.style-3 .slider-1-height-3 {
    height: 220px;
  }
  .hero-slider-1.style-3 .hero-slider-content-2 {
    position: relative;
    text-align: left;
    padding-left: 15px;
    padding-top: 0;
  }
  .hero-slider-1.style-3 .hero-slider-content-2 h1 {
    font-size: 18px;
  }
  .hero-slider-1.style-3 .hero-slider-content-2 h2 {
    font-size: 16px;
  }
  .hero-slider-1.style-3 .hero-slider-content-2 h4 {
    font-size: 14px;
  }
  .hero-slider-1.style-3 .hero-slider-content-2 p {
    font-size: 11px;
  }
  .hero-slider-1.style-3 .hero-slider-content-2 a.btn {
    display: none;
  }
  .header-style-5 .search-style-2 {
    display: none;
  }
  .header-style-5 .header-action-2 .header-action-icon-2 > a {
    font-size: 18px;
  }
  .header-style-5 .sticky-bar.stick.sticky-white-bg {
    background-color: #fff;
    padding: 15px 0;
  }
  .font-xxl {
    font-size: 28px;
  }
  .w-50 {
    width: 100% !important;
  }
  .product-list .product-cart-wrap {
    display: block;
  }
  .product-list .product-cart-wrap .product-img-action-wrap {
    max-width: 100%;
  }
  .shop-product-fillter {
    display: block;
  }
  .shop-product-fillter .totall-product {
    margin-bottom: 15px;
  }
  .table td {
  }
  .table td::before {
    content: attr(data-title) " ";
    float: left;
    text-transform: capitalize;
    margin-right: 15px;
    font-weight: bold;
  }
  .table thead {
    
  }
  .loop-grid.pr-30 {
    padding-right: 0 !important;
  }
  .loop-grid.loop-list article {
    display: block;
  }
  .d-sm-none {
    display: none;
  }
  .banner-features {
    margin-bottom: 15px;
  }
  .product-cart-wrap:not(:last-child), .mb-xs-30 {
    margin-bottom: 30px !important;
  }
  .slick-track .product-cart-wrap {
    margin-bottom: 0 !important;
  }
  .first-post .meta-1 .font-sm {
    display: none;
  }
  .first-post .btn.btn-sm {
    display: none;
  }
  .loop-grid .entry-content {
    padding: 20px 20px 0 20px;
  }
  .img-hover-slide {
    min-height: 232px;
  }
  .comments-area .thumb {
    min-width: 100px;
  }
  .hero-slider-1 .single-slider-img-1 {
    height: 300px;
  }
  .featured .col-lg-2 {
    width: 50%;
  }
  .nav-tabs .nav-link {
    font-size: 13px;
    padding: 10px 12px;
  }
  .deal {
    background-position: left bottom;
  }
  .deals-countdown .countdown-section {
    padding: 20px 2px 30px 2px;
    margin-left: 2px;
    margin-right: 2px;
  }
  .banner-bg {
    padding: 30px;
  }
  .product-list-small figure {
    margin-bottom: 20px !important;
  }
  .product-list-small .title-small {
    font-size: 16px;
    font-weight: 600;
  }
  .newsletter .des {
    display: none;
  }
  .newsletter form {
    margin: 15px 0;
  }
  footer .col-lg-2.col-md-3 {
    width: 50%;
  }
  footer .download-app a img {
    width: 150px;
  }
  .home-slider .hero-slider-1.style-2 .hero-slider-content-2 {
    padding-left: 0;
    padding-top: 50px;
  }
  .home-slider .hero-slider-1.style-2 .hero-slider-content-2 h3 {
    line-height: 1.4;
  }
  .hero-slider-1.style-3.dot-style-1.dot-style-1-position-1 ul {
    bottom: 0;
  }
  .single-content .banner-text, .banner-img.banner-big .banner-text {
    display: none;
  }
  .comments-area {
    padding: 25px 0;
    margin-top: 0;
  }
  .comments-area--premium .comments-area__panel,
  .comments-area--premium .comments-area__sidebar {
    padding: 20px;
    border-radius: 22px;
  }
  .comments-area--premium .comments-area__heading {
    font-size: 20px;
    margin-bottom: 18px;
  }
  .comments-area--premium .comments-area__form {
    padding: 18px;
    border-radius: 18px;
  }
  .comments-area--premium .comment-list .single-comment {
    padding: 18px;
    border-radius: 18px;
  }
  .comments-area--premium .comments-area__sidebar .progress {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .ugc-home-strip__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .ugc-home-strip__head h2 {
    font-size: 26px;
  }
  .ugc-home-strip__grid {
    grid-template-columns: 1fr;
  }
  .ugc-gallery {
    padding: 18px;
    border-radius: 20px;
  }
  .ugc-gallery__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .ugc-gallery__rail {
    grid-auto-columns: 168px;
  }
  .entry-bottom {
    margin-bottom: 0 !important;
  }
  section.pt-150.pb-150 {
    padding: 50px 0 !important;
  }
  .product-detail .single-share {
    margin-bottom: 20px;
  }
  .product-detail .tab-style3 .nav-tabs li.nav-item a {
    padding: 0.5rem;
    text-transform: none;
  }
  .related-products .product-cart-wrap {
    margin-bottom: 30px;
  }
  .mb-sm-15 {
    margin-bottom: 15px;
  }
  .section-title {
    display: block;
    margin-bottom: 15px;
  }
  .section-title .title {
    display: block;
  }
  .section-title h3 {
    font-size: 23px;
    margin-right: 0px;
  }
  .section-title .show-all {
    display: none;
  }
  .nav-tabs.links .nav-link {
    margin-bottom: 10px;
  }
  .slider-arrow.slider-arrow-2.flex-right {
    display: none;
  }
  .product-grid-4 .product-cart-wrap {
    margin-bottom: 30px;
  }
  .product-list-small figure.col-md-4 {
    max-width: 30%;
    float: left;
    margin: 0 !important;
  }
  .product-list-small .col-md-8 {
    float: left;
    max-width: 70%;
  }
  .newsletter .newsletter-inner {
  margin-top: 0px;
  }
  .newsletter .newsletter-inner h2 {
    font-size: 22px;
  }
  .newsletter .newsletter-inner .newsletter-content p {
    font-size: 14px;
    margin-bottom: 25px !important;
  }
  .newsletter .newsletter-inner button.submit, .newsletter .newsletter-inner button[type="submit"] {
    padding: 12px 20px;
  }
  .footer-link-widget:not(:last-child) {
    margin-right: 0;
  }
  .widget-about {
    margin-bottom: 30px;
  }
  footer p.font-md {
    font-size: 13px;
  }
  .hero-slider-1 .single-hero-slider.rectangle .slider-content {
    width: 100%;
  }
  .product-info {
    border: 0;
    padding: 0;
  }
  .product-info .tab-style3 .nav-tabs li.nav-item a {
    padding: 11px 12px !important;
    font-size: 13px;
  }
  .shopping-summery table tbody tr img {
    max-width: 80px;
    margin-right: 0;
    margin: 0px;
  }
  .toggle_info .font-lg, .toggle_info input, .apply-coupon .font-lg, .apply-coupon input {
    font-size: 14px !important;
  }
  .cart-totals.ml-30 {
    margin-left: 0 !important;
    text-align: center;
  }
  .order_table table .w-160 {
    margin: 0 auto;
  }
  .modal-open .modal {
    padding-right: 0 !important;
  }
  .archive-header-3 {
    padding: 30px;
  }
  .archive-header-3 .archive-header-3-inner {
    display: block;
  }
}

/*phone landscape*/
@media only screen and (min-width: 480px) and (max-width: 667px) {
  .header-height-2 {
    min-height: 40px;
  }
  .col-lg-4 .banner-img {
    margin-bottom: 30px;
  }
  .banner-features {
    margin-bottom: 30px;
  }
  .modal-open .modal {
    padding-right: 0 !important;
  }
}

/*small phone*/
@media only screen and (max-width: 375px) {
  .entry-meta .hit-count, .entry-meta.meta-2 .font-xs {
    display: none;
  }
  .deal {
    padding: 30px;
  }
  .custom-modal .modal-dialog .modal-content {
    padding: 0;
  }
  .deal .product-title {
    max-width: unset;
    font-size: 25px;
  }
  .modal-open .modal {
    padding-right: 0 !important;
  }
}

@media only screen and (min-width: 375px) and (max-width: 667px) {
  .deal .product-title {
    max-width: 100%;
    font-size: 35px;
  }
}

#carausel-10-columns figure{
    overflow: unset !important;
}
#carausel-10-columns figure img{
    margin: 0 auto;
    max-width: 78%;
    border-radius: 50%;
    border: 3px solid #422e66;
    padding: 3px;
    background: #ffffff;
}
#carausel-10-columns h6{
    text-align: center;
    font-size: 12px;
    padding: 0px 10px;
    margin-top: 5px;
}
#carausel-10-columns .slick-slide{
    margin: 0px 8px;
}
#carausel-10-columns .slick-slide:nth-child(2n+1){
    background: #fff;
}
#story_watch{position: fixed;z-index: 3;top: 90px;left: calc(50% - 200px);max-width: 600px;display: none;background: linear-gradient(45deg, #f33057, #3858f9);padding: 15px;border-radius: 10px;}
#story_watch div:nth-child(1){
float: left;
height: 10px;
background: #00ff16;
width: 100%;
transform: scaleX(0);
transform-origin: left center;
will-change: transform;
}
#story_watch div:nth-child(2){
float: left;
width: 100%;
}
#story_watch div:nth-child(2) span{
float: left;
height: 10px;
margin: 3px 0px;
margin-right: 3px;
border-radius: 5px;
background: #fff;
}
#story_watch div:nth-child(2) span.active{
background: #00ff16;
}
#story_watch div:nth-child(3){}
#story_watch div:nth-child(3) img{
width: 400px;
float: left;
}
#story_watch i{position: absolute;top: 50%;font-size: 40px;background: #6c757d33;border-radius: 50%;color: #ffffff;padding: 10px;cursor: pointer;}
#story_watch i:hover{
background: #3c3939;
}
#story_watch i[data-left=""]{left: 30px}
#story_watch i[data-right=""]{right: 30px}
#story_watch i[data-stroy-close=""]{background: linear-gradient(45deg, #f33057, #3858f9);left: 43%;top: -75px;color: white;}
#opactiy_bg{
position: fixed;
left: 0px;
top: 0px;
z-index: 2;
width: 100%;
height: 100%;
background: #000;
opacity: 0.7;
display: none;
}
.ozelbg1{background: linear-gradient(90deg, #e86d0e 0%, #960869 50%, #e86d0e 100%) !important;padding: 0px !important;border-bottom: 0px;-moz-box-shadow: inset 0 0 10px #6c757d94;-webkit-box-shadow: inset 0 0 10px #6c757d94;box-shadow: inset 0 0 10px #6c757df5;}
.kucuk_urun{
    position: relative;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}
.kucuk_urun .etiket{width: 30px !important; height: 30px !important;}
.language-dropdown-active img{width: 18px;}
.uste_don{
    background: #6c757d;
}
.uste_don a{
    color: #fff !important;
}
.uste_don:hover{
    background: #67bcee;
    cursor: pointer;
}
.modal.show .modal-dialog{width: fit-content;}
.custom-modal .modal-dialog .modal-content{padding: 10px;}
.ozelimg{float: left;max-width: 40%;margin-right: 20px;border: 1px solid #ddd;padding: 5px;}
.ozelwp{font-size: 24px; margin-right: 5px; margin-top: 12px; float: left;}
.attr-detail strong{
    width: 100%;
    margin-bottom: 10px;
    float: left;
}
.detail-extralink{float: left; width: 100%; margin-top: 10px;}
.detail-info .title-detail{font-size: 30px;}
#sepet_mesaj{float: left;width: 100%;}
#sepet_mesaj h4, #sepet_mesaj1 h4{font-size: 14px}
#sepet_mesaj .alert{float: left;}
.progress{margin-right: 15px;}
.cart-totals h6{color: #000}
.shopping-summery .product-thumbnail{padding: 15px;}
.cart-dropdown-wrap ul li .shopping-cart-title h4 hr{
    padding: 0px;
    margin: 5px 0px;
    opacity: 0.1;
}
.cart-dropdown-wrap.cart-dropdown-hm2 ul{
  max-height: 300px;
  overflow-y: scroll;
  padding-top: 10px;
}
.shopping-cart-footer{
  padding: 0px 20px;
}
.hesabim ul{
    overflow: auto !important;
    max-height: initial !important;
}
.hesabim ul li{
    margin: 0px 0px;
}
#reklam{position: relative;}
#reklam a div{position: absolute;left: 0px;top: 0px;width: 100%;height: 100%;-moz-box-shadow: inset 0 0 10px #6c757d94;-webkit-box-shadow: inset 0 0 10px #6c757d94;box-shadow: inset 0 0 10px #6c757d94;}
.headerozel1{border-left: 10px solid #e86d0e;background: #fff;border-right: 10px solid #e86d0e;border-radius: 0px 0px 30px 30px;}
.ozelbg2{background: url('../images/menu-bg.png');}
.footer-mid { background: #F9FAFB; border-top: 3px solid #F59E0B; margin-top: 0; }
.product-detail .product-info{background: #fff;}
.detail-info{
    float: left;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    padding-top: 10px;
    border-radius: 10px;
}
.etiket { position: absolute; left: 8px; top: 8px; width: 46px; height: 46px; background-size: 100% !important; background-position: center !important; background-repeat: no-repeat !important; }
.detail-info .product-price .indirim{position: absolute;right: 20px;color: #ffffff !important;background: #b7344b;font-size: 13px !important;padding: 0px 5px;border-radius: 3px;box-shadow: 0px 0px 4px #6c6b6b;bottom: 20px;}

@media only screen and (max-width: 768px) {
  .detail-info .product-price .indirim {
    bottom: 40px; /* Mobilde biraz daha yukarı */
  }
}

.whatsapp_buton{
    background: #12bd60 !important;
    width: auto !important;
    line-height: 47px !important;
    color: #fff !important;
    padding: 0px 8px;
}
@media only screen and (max-width: 800px){
  .home-slider .hero-slider-1, .hero-slider-1 .single-hero-slider{height: 150px;}
.hero-slider-1 .single-hero-slider{background-size: 100% !important;background-repeat: no-repeat !important;}
  .ozelimg{max-width: 100%;}
  .header-wrap{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
  }
  .product-cart-wrap .product-card-bottom{
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .product-cart-wrap .product-img-action-wrap .product-img, .product-cart-wrap .product-img-action-wrap .product-img a{
    height: 200px;
}
 .newsletter .newsletter-inner .newsletter-content form{
    padding: 0px;
    margin: 0px;
}
 .newsletter{
    margin-bottom: 0px;
}
.loop-grid article{display: block;border-bottom: 1px solid #ddd;}
.post-thumb{
    margin: 0 auto;
    width: 87%;
}
.loop-grid .entry-content-2{
    width: 100%;
}
.detail-info .title-detail{
    font-size: 20px;
}
.detail-info .product-price .current-price{
    font-size: 30px;
}
.detail-info .product-price .old-price{
    font-size: 23px;
}
.detail-info .product-extra-link2 .button.button-add-to-cart{
    padding: 0px 5px;
    font-size: 11px;
}
.tab-content.shop_info_tab{
    margin-top: 0px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
}
h3{font-size: 25px;}
.deal .btn{margin-bottom: 10px;}
.dashboard-content{
    padding: 0px !important;
    margin-top: 20px;
}
#accordionExample table{min-width: 700px;}
#accordionExample table img{max-width: 80px;}
.detail-info .product-price-cover .product-price{display: block;}
.detail-info .product-price-cover .product-price span{padding-left: 0px !important; margin-left: 0px !important; float: left; width: 100%;}
}

/* Global Micro Polish: premium but lightweight */
.btn-default,
.btn-brand,
.btn-heading,
button.submit,
button[type='submit'] {
  border-radius: var(--radius-md);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
  transition: transform var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base), border-color var(--transition-base);
}

.btn-default:hover,
.btn-brand:hover,
.btn-heading:hover,
button.submit:hover,
button[type='submit']:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
}

input,
select,
textarea {
  background-clip: padding-box;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--clr-primary-light);
  box-shadow: 0 0 0 3px rgba(188, 227, 201, 0.35);
}

.product-cart-wrap,
.cart-dropdown-wrap,
.single-content,
.banner-img {
  border-radius: var(--radius-md);
}

.product-cart-wrap .product-content-wrap {
  padding-bottom: 16px;
}

.product-cart-wrap .product-card-bottom {
  gap: 10px;
}

@media (max-width: 768px) {
  .btn-default,
  .btn-brand,
  .btn-heading,
  button.submit,
  button[type='submit'] {
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
  }

  .product-cart-wrap .product-content-wrap {
    padding-bottom: 12px;
  }
}

/* ===========================
   Category Accordion Sidebar
   =========================== */
.cat-accordion {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cat-accordion .cat-item {
  border-radius: 8px;
  margin-bottom: 4px;
  border: 1px solid #E5E7EB;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cat-accordion .cat-item:last-child {
  margin-bottom: 0;
}

.cat-accordion .cat-item.is-active {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.09);
}

.cat-accordion .cat-row {
  display: flex;
  align-items: stretch;
  min-height: 40px;
}

.cat-accordion .cat-link {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: #1F2937;
  line-height: 1.35;
  transition: color 0.18s ease;
  text-decoration: none;
}

.cat-accordion .cat-link:hover {
  color: #F59E0B;
}

.cat-accordion .cat-item.is-active > .cat-row {
  background: linear-gradient(90deg, rgba(245,158,11,0.06) 0%, transparent 100%);
}

.cat-accordion .cat-item.is-active > .cat-row > .cat-link {
  color: #D97706;
  font-weight: 600;
}

.cat-accordion .cat-link.current {
  color: #D97706;
  font-weight: 700;
  border-left: 3px solid #F59E0B;
  padding-left: 9px;
}

.cat-accordion .cat-toggle {
  flex-shrink: 0;
  width: 36px;
  border: none;
  border-left: 1px solid #F3F4F6;
  background: transparent;
  cursor: pointer;
  color: #9CA3AF;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.18s ease, background 0.18s ease;
  padding: 0;
}

.cat-accordion .cat-toggle i {
  transition: transform 0.25s ease;
  display: block;
}

.cat-accordion .cat-toggle:hover {
  color: #F59E0B;
  background: #FFFBEB;
}

.cat-accordion .cat-item.is-active .cat-toggle {
  color: #F59E0B;
  border-left-color: rgba(245, 158, 11, 0.2);
}

.cat-accordion .cat-item.is-active .cat-toggle i {
  transform: rotate(180deg);
}

.cat-accordion .cat-sub {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid transparent;
  background: #FAFAFA;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, border-color 0.2s ease, padding 0.3s ease;
  border-radius: 0 0 8px 8px;
}

.cat-accordion .cat-item.is-active .cat-sub {
  max-height: 600px;
  border-top-color: #F3F4F6;
  padding: 4px 0 8px;
}

.cat-accordion .cat-sub-item a {
  display: flex;
  align-items: center;
  padding: 7px 12px 7px 24px;
  font-size: 13px;
  font-weight: 400;
  color: #4B5563;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
  position: relative;
}

.cat-accordion .cat-sub-item a::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #D1D5DB;
  transition: background 0.18s ease;
}

.cat-accordion .cat-sub-item a:hover {
  color: #F59E0B;
  background: #FEF9EC;
}

.cat-accordion .cat-sub-item a:hover::before {
  background: #F59E0B;
}

.cat-accordion .cat-sub-item.is-active a {
  color: #D97706;
  font-weight: 600;
  background: linear-gradient(90deg, #FEF3C7 0%, #FFFBEB 60%, transparent 100%);
  border-left: 3px solid #F59E0B;
  padding-left: 21px;
}

.cat-accordion .cat-sub-item.is-active a::before {
  background: #D97706;
  width: 6px;
  height: 6px;
  left: 9px;
}

/* ===========================
   Sidebar Extra Blocks
   =========================== */

/* Sidebar extra blocks — tighter padding */
.sidebar-filter-block,
.sidebar-trust-block {
  padding: 16px 14px;
}

/* Block headers */
.sb-block-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6B7280;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sb-block-title i {
  font-size: 14px;
  color: #F59E0B;
}

/* BLOCK 2 — filter list */
.sidebar-filter-block .sb-filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-filter-block .sb-filter-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 400;
  color: #374151;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.sidebar-filter-block .sb-filter-link:hover {
  background: #FEF9EC;
  color: #D97706;
}

.sidebar-filter-block .sb-filter-link.active {
  background: #FEF3C7;
  color: #D97706;
  font-weight: 600;
}

.sidebar-filter-block .sb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D1D5DB;
  flex-shrink: 0;
  transition: background 0.15s ease;
}

.sidebar-filter-block .sb-filter-link.active .sb-dot,
.sidebar-filter-block .sb-filter-link:hover .sb-dot {
  background: #F59E0B;
}

/* BLOCK 3 — trust list */
.sidebar-trust-block .sb-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-trust-block .sb-trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #F3F4F6;
}

.sidebar-trust-block .sb-trust-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sb-trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #FEF3C7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sb-trust-icon i {
  font-size: 15px;
  color: #D97706;
}

.sb-trust-text strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #1F2937;
  line-height: 1.3;
}

.sb-trust-text span {
  font-size: 11px;
  color: #6B7280;
  font-weight: 400;
}

/* BLOCK 4 — Campaign */
.sidebar-campaign-block {
  background: linear-gradient(145deg, #F59E0B 0%, #D97706 100%);
  border-radius: 12px;
  padding: 18px 16px !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.28) !important;
  position: relative;
  overflow: hidden;
}

.sidebar-campaign-block::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  pointer-events: none;
}

.sb-campaign-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.25);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.sb-campaign-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 5px;
  line-height: 1.3;
}

.sb-campaign-sub {
  font-size: 11.5px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 14px;
  line-height: 1.5;
}

.sb-campaign-items {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sb-campaign-items li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.sb-campaign-items li i {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}

.sb-campaign-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #fff;
  color: #D97706;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.15s ease;
}

.sb-campaign-btn:hover {
  background: #FFFBEB;
  color: #B45309;
  transform: translateY(-1px);
}

/* ===========================
   Günlük Kampanya Sistemi v3
   =========================== */

/* =======================================================
   FAV-STRIP — Footer üstü avantaj şeridi
   ======================================================= */
.fav-strip {
  background: #fff;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
  padding: 22px 0;
}
.fav-strip__label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 16px;
}
.fav-strip__row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 8px;
}
.fav-strip__item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid #F3F4F6;
  background: #FAFAFA;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  min-width: 0;
}
.fav-strip__item:hover {
  border-color: #FDE68A;
  background: #FFFBF0;
  box-shadow: 0 2px 12px rgba(245,158,11,0.09);
}
.fav-strip__item > i {
  font-size: 26px;
  color: #F59E0B;
  flex-shrink: 0;
  line-height: 1;
}
.fav-strip__item > div {
  min-width: 0;
}
.fav-strip__item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1F2937;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fav-strip__item span {
  display: block;
  font-size: 11px;
  color: #6B7280;
  margin-top: 2px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Mobil: yatay scroll */
@media (max-width: 991px) {
  .fav-strip { padding: 16px 0; }
  .fav-strip__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    padding-bottom: 0;
  }
  .fav-strip__item {
    flex: 1 1 auto;
    min-width: 0;
    padding: 12px 14px;
  }
  .fav-strip__item strong,
  .fav-strip__item span {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    word-break: break-word;
  }
}
@media (max-width: 575px) {
  .fav-strip__row {
    grid-template-columns: 1fr;
  }
  .fav-strip__item {
    width: 100%;
  }
}

/* =======================================================
   YENİ HEADER — nh-*
   ======================================================= */

/* Kapsayıcı — sticky */
.nh-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: #fff;
  transition: box-shadow 0.25s;
}
.nh-header.is-scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.09);
}

/* Duyuru şeridi */
.nh-announce {
  text-align: center;
  padding: 7px 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
}

/* Ana bar */
.nh-bar {
  border-bottom: 1px solid #F0F0F0;
}
.nh-inner {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 64px;
}

/* Kategori listeleri */
.nh-cats { flex: 1; }
.nh-cl {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.nh-cats--left  .nh-cl { justify-content: flex-end; }
.nh-cats--right .nh-cl { justify-content: flex-start; }

/* Kategori öğesi */
.nh-ci { position: relative; }
.nh-ci > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
}
.nh-ci > a i { font-size: 10px; color: #B0B8C4; transition: transform 0.2s, color 0.15s; }
.nh-ci:hover > a        { color: #F59E0B; background: rgba(245,158,11,0.06); }
.nh-ci:hover > a i      { transform: rotate(180deg); color: #F59E0B; }
.nh-ci--on > a          { color: #F59E0B; font-weight: 700; }
.nh-ci--on > a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 12px; right: 12px;
  height: 2px;
  background: #F59E0B;
  border-radius: 2px;
}

/* Alt menü */
.nh-sub {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #F0F0F0;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  list-style: none;
  padding: 6px;
  margin: 0;
  z-index: 200;
}
.nh-cats--right .nh-ci--sub:last-child .nh-sub { left: auto; right: 0; }
.nh-ci--sub:hover .nh-sub { display: block; }
.nh-sub li a {
  display: block;
  padding: 9px 13px;
  font-size: 13px;
  color: #374151;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.12s, background 0.12s;
}
.nh-sub li a:hover { color: #F59E0B; background: rgba(245,158,11,0.06); }

/* Logo (merkez) */
.nh-logo-wrap {
  flex-shrink: 0;
  padding: 0 28px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nh-logo-wrap img {
  max-height: 42px;
  width: auto;
  display: block;
}

/* Sağ grup */
.nh-right-group {
  flex: 1;
  display: flex;
  align-items: center;
}
.nh-cats--right { flex: 1; }

/* İkon grubu */
.nh-icons {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  flex-wrap: nowrap;
  margin-left: 10px;
  padding-left: 12px;
  border-left: 1px solid #F0F0F0;
}
.nh-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.nh-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  font-size: 18px;
  color: #374151;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.nh-icon-btn:hover { color: #F59E0B; background: rgba(245,158,11,0.06); }

/* Badge sayaç */
.nh-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  background: #F59E0B;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
}

/* Dropdown tetikleyici: nh-icon-wrap hover */
.nh-icon-wrap:hover .cart-dropdown-wrap {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 8px);
}
.nh-icon-wrap .cart-dropdown-wrap {
  right: 0;
  left: auto;
  top: calc(100% + 16px);
}

/* Arama dropdown */
.nh-search-drop {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #F0F0F0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
  padding: 14px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s cubic-bezier(0.4,0,0.2,1);
  z-index: 200;
}
.nh-search-drop.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nh-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #F59E0B;
  border-radius: 12px;
  padding: 0 16px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(245,158,11,0.11);
}
.nh-search-form > i { color: #9CA3AF; font-size: 16px; flex-shrink: 0; }
.nh-search-form input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  padding: 13px 0;
  background: transparent;
  color: #1F2937;
}
.nh-search-form input::placeholder { color: #9CA3AF; }
.nh-search-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #9CA3AF;
  font-size: 18px;
  padding: 4px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
}
.nh-search-close:hover { color: #EF4444; background: #FEE2E2; }

/* Mobil bar */
.nh-mobile {
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  min-height: 58px;
  background: #fff;
  border-bottom: 1px solid #F0F0F0;
}
.nh-mobile-left { 
  display: flex; 
  align-items: center; 
  cursor: pointer;
  padding: 8px;
  -webkit-user-select: none;
  user-select: none;
}
.nh-mobile-logo { display: flex; align-items: center; text-decoration: none; }
.nh-mobile-logo img { max-height: 34px; width: auto; display: block; }
.nh-mobile-icons {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

/* Mobilde arama dropdown sabit */
@media (max-width: 991px) {
  .nh-search-drop {
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    transform: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .nh-search-drop.is-open { transform: none; }
  .nh-mobile .nh-icon-wrap .cart-dropdown-wrap { right: 0; }
}

/* -------------------------------------------------------
   Renk Temaları (tek nokta — buradan yönetilir)
   gk-slate  = #1E293B strip (default)
   gk-forest = yeşil aksanlı
   gk-navy   = lacivert aksanlı
   gk-bronze = bronz aksanlı
   gk-amber  = amber aksanlı
   ------------------------------------------------------- */
:root {
  --gk-amber:  #F59E0B;
  --gk-forest: #16A34A;
  --gk-navy:   #1D4ED8;
  --gk-bronze: #B45309;
  --gk-slate:  #F59E0B; /* slate strip üstünde amber aksan */
}

/* -------------------------------------------------------
   1. ÜRÜN KARTI — gk-pill
   ------------------------------------------------------- */
.gk-pill {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.4;
  pointer-events: none;
  white-space: nowrap;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
  text-transform: uppercase;
}

/* Yüksek İndirim — kırmızı/kor */
.gk-pill--hot {
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
  box-shadow: 0 2px 12px rgba(239, 68, 68, 0.45);
  border: 1px solid rgba(255,255,255,0.18);
}

/* Avantajlı — turuncu/amber */
.gk-pill--good {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  box-shadow: 0 2px 12px rgba(245, 158, 11, 0.45);
  border: 1px solid rgba(255,255,255,0.18);
}

/* Öne Çıkan — yeşil */
.gk-pill--featured {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  box-shadow: 0 2px 12px rgba(34, 197, 94, 0.40);
  border: 1px solid rgba(255,255,255,0.18);
}

/* -------------------------------------------------------
   2. ANASAYFA VİTRİN ŞERİDİ
   ------------------------------------------------------- */
.gk-vitrin-strip {
  padding: 10px 0 32px;
}

.gk-vitrin-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 36px;
  border-radius: 16px;
  background: #1E293B;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
}

/* Üst aksan çizgisi */
.gk-vitrin-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gk-amber);
  border-radius: 14px 14px 0 0;
}

/* Dekoratif daire */
.gk-vitrin-inner::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

/* Tema aksan çizgileri */
.gk-vitrin-inner.gk-forest::before { background: var(--gk-forest); }
.gk-vitrin-inner.gk-navy::before   { background: var(--gk-navy); }
.gk-vitrin-inner.gk-bronze::before { background: var(--gk-bronze); }
.gk-vitrin-inner.gk-amber::before  { background: var(--gk-amber); }
.gk-vitrin-inner.gk-slate::before  { background: var(--gk-amber); }

/* Sol grup — dikey hiyerarşi: badge → başlık → alt yazı → CTA */
.gk-vitrin-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  flex: 1;
  min-width: 0;
}

.gk-vitrin-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.80);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.gk-vitrin-badge i { font-size: 10px; }

/* Tema badge — chip stili tüm temalarda korunur */
.gk-vitrin-inner.gk-forest .gk-vitrin-badge,
.gk-vitrin-inner.gk-navy   .gk-vitrin-badge,
.gk-vitrin-inner.gk-bronze .gk-vitrin-badge { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.18); }

.gk-vitrin-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.gk-vitrin-text strong {
  font-size: 19px;
  font-weight: 800;
  color: #F1F5F9;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}

.gk-vitrin-text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* CTA butonu — dikey kolonun en altı */
.gk-vitrin-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #F59E0B;
  border: none;
  color: #fff !important;
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  margin-top: 2px;
  box-shadow: 0 3px 14px rgba(245, 158, 11, 0.40);
  transition: background 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
}

.gk-vitrin-cta:hover {
  background: #D97706;
  color: #fff !important;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(245, 158, 11, 0.50);
}

.gk-vitrin-cta i {
  font-size: 13px;
  transition: transform 0.15s ease;
}

.gk-vitrin-cta:hover i { transform: translateX(3px); }

/* Tema CTA renkleri */
.gk-vitrin-inner.gk-forest .gk-vitrin-cta { background: var(--gk-forest); box-shadow: 0 3px 14px rgba(22,163,74,0.40); }
.gk-vitrin-inner.gk-forest .gk-vitrin-cta:hover { background: #15803D; }
.gk-vitrin-inner.gk-navy   .gk-vitrin-cta { background: var(--gk-navy); box-shadow: 0 3px 14px rgba(29,78,216,0.40); }
.gk-vitrin-inner.gk-navy   .gk-vitrin-cta:hover { background: #1E40AF; }
.gk-vitrin-inner.gk-bronze .gk-vitrin-cta { background: var(--gk-bronze); box-shadow: 0 3px 14px rgba(180,83,9,0.40); }
.gk-vitrin-inner.gk-bronze .gk-vitrin-cta:hover { background: #92400E; }

/* Sağ grup — geri sayım */
.gk-vitrin-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.gk-vitrin-right-lbl {
  font-size: 9.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.gk-countdown {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.gk-cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 10px 16px;
  min-width: 58px;
}

.gk-cd-num {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: #F59E0B;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.gk-cd-lbl {
  font-size: 8.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gk-cd-sep {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1;
  align-self: flex-start;
  padding-top: 12px;
  flex-shrink: 0;
}

/* Tema geri sayım renkleri */
.gk-vitrin-inner.gk-forest .gk-cd-num { color: #86EFAC; }
.gk-vitrin-inner.gk-navy   .gk-cd-num { color: #93C5FD; }
.gk-vitrin-inner.gk-bronze .gk-cd-num { color: #FDE68A; }

/* -------------------------------------------------------
   3. SİDEBAR KAMPANYA BLOĞU
   ------------------------------------------------------- */
.sidebar-campaign-block {
  background: #fff !important;
  border: 1px solid #E5E7EB !important;
  border-top: 3px solid #F59E0B !important;
  border-radius: 12px !important;
  padding: 16px 14px 14px !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05) !important;
  position: relative;
}

/* Tema üst border */
.sidebar-campaign-block.gk-forest { border-top-color: var(--gk-forest) !important; }
.sidebar-campaign-block.gk-navy   { border-top-color: var(--gk-navy) !important; }
.sidebar-campaign-block.gk-bronze { border-top-color: var(--gk-bronze) !important; }
.sidebar-campaign-block.gk-amber  { border-top-color: var(--gk-amber) !important; }
.sidebar-campaign-block.gk-slate  { border-top-color: var(--gk-amber) !important; }

/* Override: gradient artık yok */
.sidebar-campaign-block.gk-forest,
.sidebar-campaign-block.gk-navy,
.sidebar-campaign-block.gk-bronze,
.sidebar-campaign-block.gk-amber,
.sidebar-campaign-block.gk-slate {
  background: #fff !important;
}

.sb-campaign-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FEF3C7;
  color: #92400E;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* Tema badge arka planları */
.sidebar-campaign-block.gk-forest .sb-campaign-badge { background: #DCFCE7; color: #166534; }
.sidebar-campaign-block.gk-navy   .sb-campaign-badge { background: #DBEAFE; color: #1E40AF; }
.sidebar-campaign-block.gk-bronze .sb-campaign-badge { background: #FEF3C7; color: #92400E; }

.sb-campaign-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 4px;
  line-height: 1.35;
}

.sb-campaign-sub {
  font-size: 11.5px;
  color: #6B7280;
  margin: 0 0 12px;
  line-height: 1.5;
}

/* Sidebar geri sayım */
.sb-countdown {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
  margin-bottom: 12px;
  padding: 10px 0;
  border-top: 1px solid #F3F4F6;
  border-bottom: 1px solid #F3F4F6;
}

.sb-cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
  background: #F9FAFB;
  border: 1px solid #F0F0F0;
  border-radius: 7px;
  padding: 6px 4px;
}

.sb-cd-num {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: #F59E0B;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.sb-cd-lbl {
  font-size: 8.5px;
  font-weight: 700;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sb-cd-sep {
  font-size: 14px;
  font-weight: 700;
  color: #D1D5DB;
  line-height: 1;
  align-self: flex-start;
  padding-top: 8px;
  flex-shrink: 0;
}

/* Tema countdown renkleri */
.sidebar-campaign-block.gk-forest .sb-cd-num { color: var(--gk-forest); }
.sidebar-campaign-block.gk-navy   .sb-cd-num { color: var(--gk-navy); }
.sidebar-campaign-block.gk-bronze .sb-cd-num { color: var(--gk-bronze); }

/* CTA butonu */
.sb-campaign-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #F59E0B;
  color: #fff !important;
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.32);
  transition: background 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
}

.sb-campaign-btn:hover {
  background: #D97706;
  color: #fff !important;
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.42);
}

/* Tema buton renkleri */
.sidebar-campaign-block.gk-forest .sb-campaign-btn       { background: var(--gk-forest); }
.sidebar-campaign-block.gk-forest .sb-campaign-btn:hover { background: #15803D; }
.sidebar-campaign-block.gk-navy   .sb-campaign-btn       { background: var(--gk-navy); }
.sidebar-campaign-block.gk-navy   .sb-campaign-btn:hover { background: #1E40AF; }
.sidebar-campaign-block.gk-bronze .sb-campaign-btn       { background: var(--gk-bronze); }
.sidebar-campaign-block.gk-bronze .sb-campaign-btn:hover { background: #92400E; }

/* -------------------------------------------------------
   4. ÜRÜN DETAY KAMPANYA KUTUSU
   ------------------------------------------------------- */
.gk-detay-box {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 16px 0 14px;
  padding: 13px 15px;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-left: 4px solid #F59E0B;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(245, 158, 11, 0.09);
}

/* Tema varyantları */
.gk-detay-box.gk-forest { background: #F0FDF4; border-color: #BBF7D0; border-left-color: var(--gk-forest); }
.gk-detay-box.gk-navy   { background: #EFF6FF; border-color: #BFDBFE; border-left-color: var(--gk-navy); }
.gk-detay-box.gk-bronze { background: #FFFBEB; border-color: #FDE68A; border-left-color: var(--gk-bronze); }

.gk-detay-left {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F59E0B;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
}

.gk-detay-box.gk-forest .gk-detay-left { background: var(--gk-forest); }
.gk-detay-box.gk-navy   .gk-detay-left { background: var(--gk-navy); }
.gk-detay-box.gk-bronze .gk-detay-left { background: var(--gk-bronze); }

.gk-detay-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.gk-detay-body strong {
  font-size: 13px;
  font-weight: 700;
  color: #92400E;
  line-height: 1.3;
}

.gk-detay-box.gk-forest .gk-detay-body strong { color: #166534; }
.gk-detay-box.gk-navy   .gk-detay-body strong { color: #1E40AF; }
.gk-detay-box.gk-bronze .gk-detay-body strong { color: #92400E; }

.gk-detay-body span {
  font-size: 12px;
  color: #6B7280;
  line-height: 1.5;
}

.gk-detay-box.gk-forest .gk-detay-body span { color: #4B7255; }
.gk-detay-box.gk-navy   .gk-detay-body span { color: #3B5998; }

/* -------------------------------------------------------
   5. RESPONSIVE
   ------------------------------------------------------- */
@media (max-width: 991px) {
  .gk-vitrin-inner {
    flex-wrap: wrap;
    gap: 16px;
  }
  .gk-vitrin-left {
    gap: 12px;
  }
}

@media (max-width: 767px) {
  .gk-vitrin-inner {
    padding: 16px 18px;
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }
  .gk-vitrin-left { gap: 6px; }
  .gk-vitrin-text strong { font-size: 15px; }
  .gk-vitrin-text span   { display: none; }
  .gk-vitrin-cta         { display: none; }
  .gk-vitrin-right { align-items: flex-start; }
  .gk-cd-block { padding: 7px 10px; min-width: 44px; }
  .gk-cd-num   { font-size: 20px; }
  .gk-cd-sep   { font-size: 14px; padding-top: 9px; }
}

/* =======================================================
   SIDEBAR FİLTRE SİSTEMİ
   ======================================================= */
.sf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.sf-header .section-title { margin-bottom: 0 !important; }

.sf-clear-btn {
  font-size: 11px;
  color: #EF4444;
  font-weight: 600;
  text-decoration: none;
  padding: 3px 9px;
  background: #FEE2E2;
  border-radius: 20px;
  white-space: nowrap;
  transition: background 0.15s;
}
.sf-clear-btn:hover { background: #FECACA; color: #DC2626; }

.sf-section {
  border-top: 1px solid #F0F0F0;
  padding: 10px 0;
}
.sf-section--inline {
  display: flex;
  align-items: center;
  padding: 12px 0;
}
.sf-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 8px;
}
.sf-toggle i {
  font-size: 12px;
  color: #9CA3AF;
  transition: transform 0.2s;
}
.sf-toggle.is-collapsed i { transform: rotate(-90deg); }
.sf-body { /* visible by default */ }
.sf-body.is-collapsed { display: none; }

.sf-price-inputs {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.sf-price-field { flex: 1; }
.sf-price-field label {
  display: block;
  font-size: 10px;
  color: #6B7280;
  margin-bottom: 3px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sf-price-field input {
  width: 100%;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 13px;
  color: #1F2937;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.sf-price-field input:focus {
  border-color: #F59E0B;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.10);
}
.sf-price-sep {
  color: #9CA3AF;
  font-size: 14px;
  padding-bottom: 8px;
  flex-shrink: 0;
}

.sf-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.sf-check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 5px 6px;
  border-radius: 6px;
  font-size: 13px;
  color: #374151;
  transition: background 0.1s;
  user-select: none;
}
.sf-check-label:hover { background: #F9FAFB; }
.sf-check-label input[type=checkbox] {
  width: 15px;
  height: 15px;
  accent-color: #F59E0B;
  flex-shrink: 0;
  cursor: pointer;
}
.sf-renk-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.13);
  flex-shrink: 0;
}

.sf-indirimli-label { width: 100%; }
.sf-indirimli-text {
  font-size: 13px;
  font-weight: 700;
  color: #DC2626;
}
.sf-indirimli-text i { margin-right: 3px; }

.sf-select {
  width: 100%;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13px;
  color: #1F2937;
  outline: none;
  background: #fff;
  cursor: pointer;
}
.sf-select:focus { border-color: #F59E0B; }

.sf-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 14px;
  padding: 10px 14px;
  background: #F59E0B;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(245,158,11,0.30);
  transition: background 0.15s, transform 0.1s;
}
.sf-submit-btn:hover { background: #D97706; transform: translateY(-1px); }

/* Topbar sağ alan */
.sf-topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.sf-active-clear {
  font-size: 11.5px;
  color: #EF4444;
  font-weight: 600;
  text-decoration: none;
  padding: 5px 10px;
  background: #FEE2E2;
  border-radius: 20px;
  white-space: nowrap;
}
.sf-active-clear:hover { background: #FECACA; }
.shop-product-fillter { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }

/* Mobil filtre butonu (sadece ≤991px'de görünür) */
.sf-mobile-btn {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #1F2937;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.sf-mobile-btn:hover { background: #374151; }
.sf-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: #F59E0B;
  color: #fff;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
}

/* Overlay */
.sf-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1040;
}
.sf-overlay.is-open { display: block; }

/* Drawer kapama butonu (sadece mobilde) */
.sf-drawer-close { display: none; }

@media (max-width: 991px) {
  .sf-mobile-btn { display: flex; }

  .sf-drawer-close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #F0F0F0;
  }
  .sf-drawer-close-btn {
    background: none;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 5px 10px;
    cursor: pointer;
    color: #6B7280;
    font-size: 16px;
    line-height: 1;
  }
  .sf-drawer-close-btn:hover { background: #F9FAFB; }

  #sf-widget {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100dvh;
    overflow-y: auto;
    background: #fff;
    z-index: 1050;
    padding: 20px 16px;
    transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 24px rgba(0,0,0,0.18);
    border-radius: 0;
    margin-bottom: 0 !important;
  }
  #sf-widget.is-open { left: 0; }

  /* Masaüstünde görünen başlığı mobilde gizle */
  #sf-widget .sf-header { display: none; }
}

/* =======================================================
   SEPET SAYFASI — sc-*
   ======================================================= */

/* Kupon formu */
.sc-coupon-form {
  display: flex;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.sc-coupon-input {
  flex: 1;
  border: none !important;
  outline: none;
  padding: 11px 16px;
  font-size: 13px;
  background: transparent;
  color: #1F2937;
  min-width: 0;
}
.sc-coupon-btn {
  flex-shrink: 0;
  background: #F59E0B;
  color: #fff;
  border: none;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.sc-coupon-btn:hover { background: #D97706; }

/* Kargo progress bar */
.sc-kargo-bar {
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 14px;
}
.sc-kargo-bar__msg {
  font-size: 13px;
  color: #374151;
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}
.sc-kargo-bar__msg--ok { color: #16A34A; font-weight: 600; }
.sc-kargo-bar__track {
  height: 7px;
  background: #F3F4F6;
  border-radius: 20px;
  overflow: hidden;
}
.sc-kargo-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #F59E0B, #D97706);
  border-radius: 20px;
  transition: width 0.6s ease;
  min-width: 4px;
}
.sc-kargo-bar__fill--ok { background: linear-gradient(90deg, #22C55E, #16A34A); }

/* Ürün satırları */
.sc-cart-row td { vertical-align: middle; padding: 16px 10px; border-bottom: 1px solid #F3F4F6; }
.sc-cart-img { width: 110px; }
.sc-cart-img img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #F3F4F6;
  display: block;
  transition: opacity 0.2s;
}
.sc-cart-img img:hover { opacity: 0.85; }
.sc-cart-name {
  font-size: 14px;
  font-weight: 600;
  color: #1F2937;
  text-decoration: none;
  display: block;
  line-height: 1.45;
  margin-bottom: 4px;
}
.sc-cart-name:hover { color: #F59E0B; }
.sc-cart-variant { font-size: 11px; color: #6B7280; margin-top: 3px; line-height: 1.4; }
.sc-cart-price { font-size: 13px; color: #6B7280; white-space: nowrap; }
.sc-cart-total { font-size: 15px; color: #F59E0B; white-space: nowrap; }
.sc-cart-total strong { font-weight: 800; }
.sc-qty-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  background: #F9FAFB;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  padding: 0 8px;
}
.sc-del-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #9CA3AF;
  font-size: 16px;
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
}
.sc-del-btn:hover { color: #EF4444; background: #FEF2F2; }

/* Sticky sağ panel */
@media (min-width: 992px) {
  .sc-sticky-panel {
    position: sticky;
    top: 88px;
  }
}

/* Güven rozetleri */
.sc-trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 14px 16px;
  background: #F9FAFB;
  border-radius: 10px;
  margin-top: 14px;
  border: 1px solid #F0F0F0;
}
.sc-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  color: #374151;
  line-height: 1.35;
  padding: 8px;
  background: #fff;
  border-radius: 7px;
  border: 1px solid #F0F0F0;
}
.sc-trust-item i {
  font-size: 15px;
  color: #F59E0B;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Önerilen ürünler */
.sc-suggested {
  background: #fff;
  padding: 36px 0 48px;
  border-top: 2px solid #F0F0F0;
  margin-top: 0;
}
.sc-suggested__title {
  font-size: 20px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sc-suggested__title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 22px;
  background: #F59E0B;
  border-radius: 2px;
}
.sc-suggested__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 991px) {
  .sc-suggested__grid { grid-template-columns: repeat(2, 1fr); }
}
.sc-sug-card {
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid #F0F0F0;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.sc-sug-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); border-color: #F59E0B; transform: translateY(-2px); }
.sc-sug-img { aspect-ratio: 1; overflow: hidden; }
.sc-sug-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.sc-sug-card:hover .sc-sug-img img { transform: scale(1.04); }
.sc-sug-body { padding: 12px; }
.sc-sug-name {
  font-size: 13px;
  color: #374151;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sc-sug-price { font-size: 14px; color: #F59E0B; font-weight: 700; margin-top: 6px; }

/* ---- Sepet tablo başlığı ---- */
.shopping-summery .table thead tr.main-heading th {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9CA3AF;
  background: #F9FAFB;
  padding: 10px 10px;
  border-bottom: 1.5px solid #F0F0F0;
}

/* ---- Sayfa boşluk azaltma ---- */
.container.mb-80 { margin-bottom: 40px !important; }
.container.mt-40 { margin-top: 24px !important; }

/* ---- Sağ ödeme paneli güçlendirme ---- */
.cart-totals#alan1 {
  border: 1.5px solid #E5E7EB !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06) !important;
}
.cart-totals#alan1 .table { margin-bottom: 0; }
.cart-totals#alan1 .cart_total_label h6 {
  font-size: 13px;
  font-weight: 500;
  color: #6B7280;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.cart-totals#alan1 .cart_total_amount h5 {
  font-size: 14px;
  font-weight: 700;
  color: #1F2937;
  margin: 0;
  white-space: nowrap;
}
/* Toplam satırı — güçlü */
.cart-totals#alan1 tr[style*="background: #efefef"] td {
  background: #FFF9EB !important;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}
.cart-totals#alan1 tr[style*="background: #efefef"] .cart_total_label h6 {
  font-size: 14px;
  font-weight: 700;
  color: #374151;
}
.cart-totals#alan1 tr[style*="background: #efefef"] .cart_total_amount h5 {
  font-size: 18px;
  font-weight: 800;
  color: #F59E0B;
}
/* Ödeme paneli iç padding */
.cart-totals#alan1 > div[style*="padding:0px 25px"] {
  padding: 16px 20px 20px !important;
}
/* Ödeme butonu premium */
#alan1-buton {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
  border: none !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  padding: 14px 20px !important;
  box-shadow: 0 4px 16px rgba(245,158,11,0.35) !important;
  transition: box-shadow 0.2s, transform 0.15s !important;
  color: #fff !important;
}
#alan1-buton:hover {
  box-shadow: 0 6px 24px rgba(245,158,11,0.5) !important;
  transform: translateY(-1px) !important;
}

/* ---- İndirim kademesi kutusu güçlendirme ---- */
.indirim-carki {
  background: linear-gradient(135deg, #fff 0%, #FFFBF0 100%);
  border: 1.5px solid #FDE68A;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 14px;
  box-shadow: 0 2px 12px rgba(245,158,11,0.08);
}
.indirim-carki h5 {
  font-size: 14px;
  font-weight: 700;
  color: #92400E;
  margin-bottom: 14px !important;
  display: flex;
  align-items: center;
  gap: 6px;
}
.indirim-carki h5::before {
  content: '🎁';
  font-size: 15px;
}
.indirim-bar-container {
  height: 44px !important;
  background: #FEF3C7 !important;
  border-radius: 8px !important;
  border: 1px solid #FDE68A;
}
.indirim-bar {
  background: linear-gradient(90deg, #F59E0B, #D97706) !important;
}
.indirim-kademesi {
  top: unset !important;
  bottom: calc(100% + 2px) !important;
  transform: translateX(-50%) !important;
  color: inherit !important;
  text-shadow: none !important;
}
.indirim-kademesi.aktif .ust {
  background: #D97706 !important;
}
.indirim-kademesi .ust { font-size: 10px !important; font-weight: 800 !important; background: #1a1a1a; color: #fff; padding: 1px 5px; border-radius: 4px; display: inline-block; }
.indirim-kademesi .alt { font-size: 9px !important; font-weight: 600 !important; color: #e65100 !important; background: #fff3e0; padding: 1px 4px; border-radius: 3px; border: 1px solid #ffcc80; display: block; }
.indirim-seviyesi {
  font-size: 12px !important;
  color: #92400E !important;
  font-weight: 600 !important;
  background: #FEF3C7;
  padding: 7px 12px;
  border-radius: 7px;
  margin-top: 10px !important;
  border: 1px solid #FDE68A;
}

/* ============================================================
   SEPET — Premium UI Overrides
   ============================================================ */

/* ---- Thead gizle — mobile data-title yeterli ---- */
.shopping-summery .table thead { display: none; }

/* ---- Tablo genel ---- */
.shopping-summery .table { border-collapse: separate; border-spacing: 0; }
.shopping-summery { border: 1.5px solid #F0F0F0; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.04); }

/* ---- Ürün satırı ---- */
.sc-cart-row { transition: background 0.15s; }
.sc-cart-row:hover { background: #FAFBFC; }
.sc-cart-row td { padding: 18px 14px !important; border-bottom: 1px solid #F3F4F6; }
.sc-cart-row:last-child td { border-bottom: none; }

/* ---- Ürün görseli büyüt ---- */
.sc-cart-img { width: 120px; }
.sc-cart-img img {
    width: 106px !important;
    height: 106px !important;
    border-radius: 12px !important;
    border: 1.5px solid #F3F4F6 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.sc-cart-img img:hover { opacity: 1 !important; transform: scale(1.03); transition: transform 0.2s; }

/* ---- Ürün bilgi kolonu ---- */
.sc-cart-info { min-width: 180px; }
.sc-cart-name {
    font-size: 14.5px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin-bottom: 5px !important;
    line-height: 1.4;
}
.sc-cart-name:hover { color: #D97706 !important; }
.sc-cart-variant { font-size: 12px !important; color: #9CA3AF !important; margin-top: 4px !important; }

/* ---- Fiyat kolonları ---- */
.sc-cart-price {
    font-size: 13px !important;
    color: #9CA3AF !important;
    font-weight: 500 !important;
    white-space: nowrap;
}
.sc-cart-total {
    font-size: 16px !important;
    color: #1F2937 !important;
    font-weight: 800 !important;
    white-space: nowrap;
}
.sc-cart-total strong { color: #D97706 !important; }

/* ---- Adet kontrol ---- */
.sc-cart-qty {
  min-width: 140px;
}

.sc-qty-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  background: #F9FAFB;
  overflow: hidden;
}

.sc-qty-control .sc-qty-down,
.sc-qty-control .sc-qty-up {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #6B7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.sc-qty-control .sc-qty-down:hover,
.sc-qty-control .sc-qty-up:hover {
  background: #F3F4F6;
  color: #111827;
}

.sc-qty-control .qty-val {
  min-width: 40px;
  padding: 0 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  color: #111827;
}

.sc-qty-control.is-loading {
  opacity: 0.65;
  pointer-events: none;
}

/* ---- Sil butonu ---- */
.sc-del-btn {
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
    border: 1.5px solid transparent !important;
    font-size: 17px !important;
    transition: background-color 0.18s, border-color 0.18s, color 0.18s, transform 0.18s !important;
}
.sc-del-btn:hover {
    color: #EF4444 !important;
    background: #FEF2F2 !important;
    border-color: #FECACA !important;
    transform: scale(1.08);
}

/* ---- Kupon formu güçlendir ---- */
.sc-coupon-form {
    border: 2px solid #E5E7EB !important;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
    transition: border-color 0.2s, box-shadow 0.2s;
    margin-bottom: 16px !important;
}
.sc-coupon-form:focus-within {
    border-color: #F59E0B !important;
    box-shadow: 0 0 0 3px rgba(245,158,11,0.12) !important;
}
.sc-coupon-input {
    padding: 13px 18px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}
.sc-coupon-btn {
    padding: 13px 24px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
    gap: 6px;
    display: flex;
    align-items: center;
    border-radius: 0 !important;
}

/* ---- Kargo barı güçlendir ---- */
.sc-kargo-bar {
    border-radius: 14px !important;
    padding: 16px 20px !important;
    background: #FAFBFC !important;
    border-color: #E5E7EB !important;
    margin-bottom: 10px !important;
}
.sc-kargo-bar__msg { font-size: 13.5px !important; }
.sc-kargo-bar__track { height: 8px !important; border-radius: 20px !important; }

/* ---- İndirim kademesi kutusu ---- */
.indirim-carki {
    border-radius: 14px !important;
    padding: 16px 18px !important;
    margin-bottom: 10px !important;
}
.indirim-carki h5 {
    font-size: 13.5px !important;
    margin-bottom: 12px !important;
}

/* ---- Sağ ödeme paneli toplam satırı ---- */
.cart-totals#alan1 {
    border-radius: 16px !important;
    box-shadow: 0 6px 32px rgba(0,0,0,0.08) !important;
}
.cart-totals#alan1 table td { padding: 10px 18px !important; }
.cart-totals#alan1 tr[style*="background: #efefef"] td {
    background: linear-gradient(135deg, #FFF9EB, #FEF3C7) !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    border-top: 2px solid #FDE68A !important;
}
.cart-totals#alan1 tr[style*="background: #efefef"] .cart_total_amount h5 {
    font-size: 22px !important;
    font-weight: 900 !important;
    color: #D97706 !important;
    letter-spacing: -0.02em;
}
.cart-totals#alan1 tr[style*="background: #efefef"] .cart_total_label h6 {
    font-size: 14.5px !important;
    font-weight: 800 !important;
    color: #92400E !important;
}

/* ---- Ödeme butonu ---- */
#alan1-buton {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    padding: 16px 20px !important;
    letter-spacing: 0.01em !important;
    box-shadow: 0 6px 20px rgba(245,158,11,0.38) !important;
}
#alan1-buton:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 28px rgba(245,158,11,0.5) !important;
}

/* ---- Güven rozetleri ---- */
.sc-trust-row {
    border-radius: 12px !important;
    margin-top: 16px !important;
    padding: 12px !important;
    gap: 10px !important;
}
.sc-trust-item {
    padding: 10px 10px !important;
    border-radius: 10px !important;
    gap: 8px !important;
    font-size: 11.5px !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.sc-trust-item i { font-size: 16px !important; color: #F59E0B !important; }

/* ---- Önerilen ürünler ---- */
.sc-suggested {
    padding: 44px 0 56px !important;
    background: #FAFBFC !important;
    border-top: 2px solid #F0F0F0 !important;
}
.sc-suggested__title {
    font-size: 22px !important;
    font-weight: 800 !important;
    margin-bottom: 24px !important;
}
.sc-suggested__title::before {
    height: 24px !important;
    width: 5px !important;
    background: linear-gradient(180deg, #F59E0B, #D97706) !important;
    border-radius: 3px !important;
}
.sc-suggested__title::after {
    content: ' — sepetini tamamla';
    font-size: 14px;
    font-weight: 400;
    color: #9CA3AF;
    letter-spacing: 0;
    margin-left: 4px;
}
.sc-sug-card {
    border-radius: 14px !important;
    border: 2px solid #F0F0F0 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04) !important;
}
.sc-sug-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.1) !important;
    border-color: #F59E0B !important;
    transform: translateY(-3px) !important;
}
.sc-sug-body { padding: 14px !important; }
.sc-sug-name { font-size: 13.5px !important; font-weight: 600 !important; color: #1F2937 !important; }
.sc-sug-price { font-size: 15px !important; font-weight: 800 !important; color: #D97706 !important; margin-top: 8px !important; }

/* ---- Mobil ---- */
@media (max-width: 767px) {
    .sc-cart-img img { width: 80px !important; height: 80px !important; }
    .sc-cart-img { width: 90px; }
    .sc-cart-row td { padding: 12px 8px !important; }
    .sc-cart-total { font-size: 14px !important; }
  .sc-cart-qty { min-width: 0; }
  .sc-qty-control { width: 126px; height: 38px; }
  .sc-qty-control .sc-qty-down,
  .sc-qty-control .sc-qty-up { width: 38px; height: 38px; }
  .sc-qty-control .qty-val { min-width: 34px; line-height: 38px; }
    .sc-suggested__grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
    .sc-suggested__title::after { display: none; }
}

/* ============================================================
   SEPETE EKLENDİ — Premium Modal
   ============================================================ */

/* Overlay yumuşak */
#popupislem.modal { --bs-backdrop-opacity: 0.55; }
#popupislem .modal-backdrop,
#popupislem + .modal-backdrop { background: rgba(15,15,15,0.55) !important; }

/* Dialog genişlik */
.sc-added-dialog { max-width: 440px; margin: auto; padding: 16px; }

/* Kart */
.sc-added-content {
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.10) !important;
    overflow: hidden;
    position: relative;
}

/* Kapat butonu */
.sc-added-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    background: #F3F4F6;
    border: none;
    border-radius: 50%;
    color: #6B7280;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    z-index: 10;
    line-height: 1;
    padding: 0;
}
.sc-added-close:hover { background: #E5E7EB; color: #111827; }

/* Gövde */
.sc-added-body {
    padding: 40px 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Başarı ikonu */
.sc-added-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
    animation: scAddedPop 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
.sc-added-icon svg { width: 100%; height: 100%; }

@keyframes scAddedPop {
    0%   { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1);   opacity: 1; }
}

/* Başlık */
.sc-added-title {
    font-size: 19px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

/* Açıklama */
.sc-added-desc {
    font-size: 13.5px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0 0 28px;
    max-width: 320px;
}

/* Buton grubu */
.sc-added-actions {
    display: flex;
    gap: 10px;
    width: 100%;
}

/* Buton base */
.sc-added-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 13px 18px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none !important;
    border: none;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    white-space: nowrap;
    line-height: 1.2;
}
.sc-added-btn:hover { transform: translateY(-1px); }

/* Secondary — devam et */
.sc-added-btn--secondary {
    background: #F3F4F6;
    color: #374151 !important;
    border: 1.5px solid #E5E7EB;
}
.sc-added-btn--secondary:hover {
    background: #E5E7EB;
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

/* Primary — sepete git */
.sc-added-btn--primary {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(245,158,11,0.35);
}
.sc-added-btn--primary:hover {
    box-shadow: 0 6px 22px rgba(245,158,11,0.5);
}

/* Mobil */
@media (max-width: 480px) {
    .sc-added-dialog { max-width: 100%; padding: 12px; }
    .sc-added-body { padding: 36px 20px 24px; }
    .sc-added-actions { flex-direction: column; }
    .sc-added-btn { width: 100%; }
    .sc-added-title { font-size: 17px; }
}

/* ============================================================
   AUTH PAGES — login / register / reset  (shared)
   ============================================================ */
.auth-page .main-content-wrap { padding: 0 !important; }

.auth-layout {
  display: flex;
  min-height: calc(100vh - 160px);
}

/* ---- Brand panel (left) ----------------------------------- */
.auth-brand {
  flex: 0 0 44%;
  background: linear-gradient(150deg, #1a3a8f 0%, #1D4ED8 45%, #1a3a8f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
}
.auth-brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(255,255,255,.09) 0%, transparent 60%);
}
.auth-brand__inner {
  max-width: 360px;
  width: 100%;
  position: relative;
  z-index: 1;
}
/* Tipografik marka ikonu (logo yerine) */
.auth-brand__icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.auth-brand__icon i {
  font-size: 28px;
  color: #FCD34D;
}
.auth-brand__logo img {
  height: 44px;
  max-width: 190px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.auth-brand__title {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 8px;
  letter-spacing: -.02em;
  line-height: 1.25;
}
.auth-brand__sub {
  color: rgba(255,255,255,.75);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.auth-brand__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.auth-brand__list li {
  color: rgba(255,255,255,.9);
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.auth-brand__list li:last-child { border-bottom: none; }
.auth-brand__list li i {
  font-size: 17px;
  color: #FCD34D;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.auth-brand__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.65);
  font-size: 13.5px;
  flex-wrap: wrap;
}
.auth-brand__cta-link {
  color: #FCD34D;
  font-weight: 700;
  text-decoration: none;
  font-size: 13.5px;
  white-space: nowrap;
}
.auth-brand__cta-link:hover { color: #fff; text-decoration: underline; }

/* ---- Form panel (right) ----------------------------------- */
.auth-form-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 40px;
  background: #F1F5F9;
}
.auth-form-card {
  width: 100%;
  max-width: 430px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 16px 56px rgba(15,23,42,.12);
  padding: 42px 40px;
}
.auth-form-card--wide { max-width: 520px; }
.auth-form-card__title {
  font-size: 24px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 5px;
  letter-spacing: -.02em;
}
.auth-form-card__sub {
  font-size: 13.5px;
  color: #64748B;
  margin-bottom: 26px;
  line-height: 1.55;
}
.auth-form-card__sub a { color: #F59E0B; font-weight: 600; text-decoration: none; }
.auth-form-card__sub a:hover { text-decoration: underline; }
.auth-form-card__footer {
  text-align: center;
  font-size: 13.5px;
  color: #64748B;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #F1F5F9;
}
.auth-form-card__footer a { color: #F59E0B; font-weight: 700; text-decoration: none; }
.auth-form-card__footer a:hover { text-decoration: underline; }

/* Social buttons */
.auth-social-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.auth-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  background: #fff;
  font-size: 13.5px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.auth-social-btn:hover {
  border-color: #CBD5E1;
  background: #F8FAFC;
  box-shadow: 0 2px 8px rgba(15,23,42,.07);
  color: #374151;
}
.auth-social-btn--google:hover {
  border-color: #4285F4;
  box-shadow: 0 2px 10px rgba(66,133,244,.15);
}
.auth-social-btn img { width: 18px; height: 18px; object-fit: contain; }
.auth-or-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #94A3B8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
}
.auth-or-divider::before,
.auth-or-divider::after { content: ''; flex: 1; height: 1px; background: #E5E7EB; }

/* Fields */
.auth-field { margin-bottom: 16px; }
.auth-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.auth-label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 5px;
  letter-spacing: .2px;
}
.auth-input,
.auth-select,
.auth-textarea {
  width: 100%;
  height: 46px;
  border: 1.5px solid #E5E7EB;
  border-radius: 11px;
  padding: 0 14px;
  font-size: 14px;
  background: #FAFAFA;
  outline: none;
  color: #0F172A;
  box-sizing: border-box;
  transition: border-color .15s, box-shadow .15s, background .15s;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}
.auth-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2394A3B8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.auth-textarea { min-height: 78px; height: auto; padding: 10px 14px; resize: vertical; }
.auth-input:focus,
.auth-select:focus,
.auth-textarea:focus {
  border-color: #F59E0B;
  background: #fff;
  box-shadow: 0 0 0 3.5px rgba(245,158,11,.15);
}
.auth-input-wrap { position: relative; }
.auth-input-wrap .auth-input { padding-right: 44px; }
.auth-eye-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #94A3B8;
  font-size: 18px;
  line-height: 1;
  transition: color .15s;
}
.auth-eye-btn:hover { color: #F59E0B; }

/* Submit CTA */
.auth-submit-btn {
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #fff;
  font-size: 15.5px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, filter .15s;
  box-shadow: 0 4px 16px rgba(245,158,11,.32);
  letter-spacing: .2px;
  margin-top: 4px;
  margin-bottom: 16px;
  display: block;
}
.auth-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(245,158,11,.42);
  filter: brightness(1.05);
}
.auth-submit-btn:active { transform: translateY(0); }

/* Trust row */
.auth-trust {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 9px 12px;
  border-radius: 11px;
  border: 1px solid #EEF2F7;
  background: #F8FAFC;
  font-size: 11.5px;
  color: #64748B;
}
.auth-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #EEF2F7;
}
.auth-trust i { font-size: 13px; }

/* Checkbox (agreements) */
.auth-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 9px;
  font-size: 13px;
  color: #374151;
  line-height: 1.5;
}
.auth-check input[type="checkbox"] {
  margin-top: 2px;
  accent-color: #F59E0B;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}
.auth-check a { color: #F59E0B; font-weight: 600; text-decoration: none; }
.auth-check a:hover { text-decoration: underline; }

/* Info box (reset page) */
.auth-info-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 22px;
  font-size: 13.5px;
  color: #1E40AF;
  line-height: 1.55;
}
.auth-info-box i { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* Responsive */
@media (max-width: 991.98px) {
  .auth-layout { flex-direction: column; min-height: auto; }
  .auth-brand { flex: none; padding: 36px 24px 30px; }
  .auth-brand__list { display: grid; grid-template-columns: 1fr 1fr; }
  .auth-form-wrap { padding: 28px 18px 40px; }
  .auth-form-card { padding: 26px 20px; box-shadow: none; background: transparent; border-radius: 0; }
}
@media (max-width: 575.98px) {
  .auth-brand__list { grid-template-columns: 1fr; }
  .auth-form-card__title { font-size: 21px; }
  .auth-social-row { grid-template-columns: 1fr; }
  .auth-field-row { grid-template-columns: 1fr; }
}

/* ================================================================
   USER PANEL (up-*) — Hesabım, Siparişlerim, Yorumlarım
   ================================================================ */

/* Layout */
.up-page .page-content { background: #F1F5F9; }

/* ---- Sidebar -------------------------------------------------- */
.up-sidebar {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(15,23,42,.07);
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.up-sidebar__user {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px 20px;
  background: linear-gradient(135deg,#1D4ED8 0%,#1a3a8f 100%);
}
.up-sidebar__avatar {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: .5px;
}
.up-sidebar__info { min-width: 0; }
.up-sidebar__name {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.up-sidebar__email {
  color: rgba(255,255,255,.65);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}
.up-nav {
  list-style: none;
  padding: 10px 0;
  margin: 0;
}
.up-nav__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  cursor: pointer;
  transition: background .13s, color .13s;
  border-radius: 0;
}
.up-nav__item i { font-size: 18px; flex-shrink: 0; width: 20px; text-align: center; }
.up-nav__item:hover { background: #F1F5F9; color: #1D4ED8; }
.up-nav__item.active { background: #EFF6FF; color: #1D4ED8; font-weight: 700; border-right: 3px solid #1D4ED8; }
.up-nav__item--danger { color: #DC2626 !important; }
.up-nav__item--danger:hover { background: #FEF2F2; color: #B91C1C !important; }
.up-nav__divider { height: 1px; background: #F1F5F9; margin: 6px 0; }

/* ---- Content Card --------------------------------------------- */
.up-content { padding: 0; }
.up-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(15,23,42,.07);
  padding: 32px 32px 28px;
}
.up-card__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F1F5F9;
}
.up-card__head > i {
  font-size: 28px;
  color: #1D4ED8;
  line-height: 1;
  margin-top: 2px;
}
.up-card__title { font-size: 18px; font-weight: 800; color: #0f172a; margin: 0 0 3px; }
.up-card__sub { font-size: 13px; color: #94A3B8; margin: 0; }

/* ---- Form ----------------------------------------------------- */
.up-form { }
.up-section-label {
  font-size: 11px;
  font-weight: 800;
  color: #94A3B8;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin: 24px 0 14px;
}
.up-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.up-field { display: flex; flex-direction: column; }
.up-field--full { grid-column: 1 / -1; }
.up-field--span2 { grid-column: 1 / -1; }
.up-label {
  font-size: 12.5px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 6px;
}
.up-label-hint { font-weight: 400; color: #94A3B8; font-size: 11px; }
.up-input {
  height: 44px;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 0 14px;
  font-size: 14px;
  color: #0f172a;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
  outline: none;
}
.up-input:focus {
  border-color: #F59E0B;
  box-shadow: 0 0 0 3px rgba(245,158,11,.12);
}
.up-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.up-textarea { height: auto !important; min-height: 90px; padding: 12px 14px; resize: vertical; }
.up-input-wrap { position: relative; }
.up-input-wrap .up-input { padding-right: 44px; }
.up-eye-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #94A3B8;
  font-size: 18px;
  line-height: 1;
  padding: 0;
}
.up-form-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #F1F5F9;
}

/* ---- Buttons -------------------------------------------------- */
.up-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 24px;
  background: linear-gradient(135deg,#F59E0B,#D97706);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.up-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(245,158,11,.3); color: #fff; }
.up-btn-yorum {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #fff;
  border: 1.5px solid #F59E0B;
  color: #D97706;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.up-btn-yorum:hover { background: #FEF3C7; color: #B45309; }
.up-btn-track {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #EFF6FF;
  color: #1D4ED8;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  margin-left: 8px;
}
.up-btn-track:hover { background: #DBEAFE; color: #1e40af; }

/* ---- Badges --------------------------------------------------- */
.up-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.up-badge--sm { font-size: 11px; padding: 3px 8px; }
.badge-success { background: #DCFCE7; color: #15803D; }
.badge-warning { background: #FEF9C3; color: #A16207; }
.badge-info    { background: #DBEAFE; color: #1D4ED8; }
.badge-primary { background: #EEF2FF; color: #4F46E5; }
.badge-danger  { background: #FEE2E2; color: #DC2626; }
.badge-secondary { background: #F1F5F9; color: #64748B; }
.badge-light   { background: #F8FAFC; color: #94A3B8; border: 1px solid #E2E8F0; }

/* ---- Empty State ---------------------------------------------- */
.up-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}
.up-empty__icon {
  width: 72px;
  height: 72px;
  background: #F1F5F9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #94A3B8;
  margin-bottom: 20px;
}
.up-empty__title { font-size: 17px; font-weight: 700; color: #374151; margin: 0 0 8px; }
.up-empty__sub { font-size: 13.5px; color: #94A3B8; margin: 0 0 24px; }

/* ---- Order Cards ---------------------------------------------- */
.up-order-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(15,23,42,.06);
  margin-bottom: 14px;
  overflow: hidden;
  border: 1.5px solid #F1F5F9;
  transition: box-shadow .15s;
}
.up-order-card:hover { box-shadow: 0 6px 24px rgba(15,23,42,.1); }
.up-order-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  gap: 12px;
}
.up-order-card__head:hover { background: #FAFBFC; }
.up-order-card__meta { display: flex; align-items: center; gap: 14px; }
.up-order-card__id { font-size: 15px; font-weight: 800; color: #0f172a; }
.up-order-card__date { font-size: 12.5px; color: #94A3B8; }
.up-order-card__right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.up-order-card__total { font-size: 14px; font-weight: 700; color: #0f172a; }
.up-order-card__arrow { font-size: 16px; color: #94A3B8; transition: transform .2s; }
.up-order-card__head[aria-expanded="false"] .up-order-card__arrow { transform: rotate(0); }
.up-order-card__body { padding: 0 20px 20px; border-top: 1px solid #F1F5F9; }

/* Product list in order */
.up-product-list { display: flex; flex-direction: column; gap: 12px; padding-top: 16px; }
.up-product-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: #FAFBFC;
  border-radius: 12px;
  border: 1px solid #F1F5F9;
}
.up-product-row__img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  border: 1px solid #E2E8F0;
}
.up-product-row__info { flex: 1; min-width: 0; }
.up-product-row__name { font-size: 13.5px; font-weight: 700; color: #0f172a; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.up-product-row__variant { font-size: 12px; color: #64748B; margin-bottom: 3px; }
.up-product-row__price { font-size: 13px; color: #374151; font-weight: 600; }
.up-product-row__action { flex-shrink: 0; }

/* Order info table */
.up-order-info {
  margin-top: 16px;
  border: 1px solid #F1F5F9;
  border-radius: 12px;
  overflow: hidden;
}
.up-order-info__row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 11px 16px;
  border-bottom: 1px solid #F8FAFC;
  font-size: 13px;
  color: #374151;
}
.up-order-info__row:last-child { border-bottom: none; }
.up-order-info__label { font-weight: 700; color: #475569; min-width: 140px; flex-shrink: 0; font-size: 12.5px; }
.up-order-info__row--total { background: #FAFBFC; }
.up-order-info__total { font-size: 16px; font-weight: 800; color: #0f172a; }

/* ---- Kargo result -------------------------------------------- */
.up-kargo-result {
  margin-top: 16px;
  padding: 16px 20px;
  background: #F8FAFC;
  border: 1px dashed #CBD5E1;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.6;
}

/* ---- Reviews -------------------------------------------------- */
.up-review-list { display: flex; flex-direction: column; gap: 14px; }
.up-review-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(15,23,42,.06);
  border: 1.5px solid #F1F5F9;
  padding: 18px;
  transition: box-shadow .15s;
}
.up-review-card:hover { box-shadow: 0 6px 20px rgba(15,23,42,.09); }
.up-review-card__img-wrap { flex-shrink: 0; }
.up-review-card__img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
}
.up-review-card__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.up-review-card__product { font-size: 14px; font-weight: 700; color: #0f172a; text-decoration: none; }
.up-review-card__product:hover { color: #1D4ED8; }
.up-review-card__stars { display: flex; align-items: center; gap: 3px; }
.up-review-card__stars i { font-size: 15px; }
.up-review-card__score { font-size: 12px; color: #94A3B8; margin-left: 6px; font-weight: 600; }
.up-review-card__text { font-size: 13.5px; color: #374151; line-height: 1.55; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.up-review-card__footer { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.up-review-card__date { font-size: 12px; color: #94A3B8; }

/* ---- Influencer Panel ----------------------------------------- */
.up-inf-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.up-inf-kpi {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #e8ecf0;
  border-radius: 12px;
  padding: 16px 18px;
}
.up-inf-kpi__icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.up-inf-kpi__icon i { font-size: 22px; }
.up-inf-kpi__body { display: flex; flex-direction: column; gap: 2px; }
.up-inf-kpi__label { font-size: 12px; color: #94A3B8; font-weight: 600; }
.up-inf-kpi__value { font-size: 20px; font-weight: 800; color: #0f172a; }

.up-inf-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  padding-top: 12px;
}
.up-inf-info-item { display: flex; flex-direction: column; gap: 3px; }
.up-inf-info-item__label { font-size: 12px; color: #94A3B8; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.up-inf-info-item__value { font-size: 15px; font-weight: 700; color: #0f172a; }

.up-inf-coupon-badge {
  display: inline-block;
  background: #eff6ff;
  color: #1D4ED8;
  border: 1.5px dashed #93c5fd;
  border-radius: 8px;
  padding: 4px 14px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
}

.up-inf-table-wrap { overflow-x: auto; padding-top: 10px; }
.up-inf-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.up-inf-table thead th {
  background: #f8fafc;
  color: #64748b;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 10px 14px;
  border-bottom: 2px solid #e2e8f0;
  white-space: nowrap;
}
.up-inf-table tbody td {
  padding: 11px 14px;
  border-bottom: 1px solid #f1f5f9;
  color: #374151;
  vertical-align: middle;
}
.up-inf-table tbody tr:last-child td { border-bottom: none; }
.up-inf-table tbody tr:hover td { background: #f8fafc; }

@media (max-width: 991.98px) {
  .up-inf-kpi-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .up-inf-kpi-row { grid-template-columns: 1fr; }
  .up-inf-info-grid { grid-template-columns: 1fr; }
}

/* ---- Responsive ----------------------------------------------- */
@media (max-width: 991.98px) {
  .up-card { padding: 22px 18px; }
}
@media (max-width: 767.98px) {
  .up-field-grid { grid-template-columns: 1fr; }
  .up-field--full, .up-field--span2 { grid-column: 1; }
  .up-order-card__meta { flex-direction: column; align-items: flex-start; gap: 4px; }
  .up-order-card__right { flex-wrap: wrap; gap: 8px; }
  .up-review-card { flex-direction: column; }
  .up-review-card__img { width: 60px; height: 60px; }
}
@media (max-width: 575.98px) {
  .up-sidebar { position: static; margin-bottom: 20px; }
  .up-order-card__head { flex-wrap: wrap; }
  .up-order-info__label { min-width: 100px; }
  .up-product-row__action { width: 100%; margin-top: 8px; }
  .up-product-row { flex-wrap: wrap; }
}

/* ---- up-tab-pane (Bootstrap tab-pane'den bağımsız) ---- */
.up-tab-pane { display: none; }
.up-tab-pane.active { display: block; }

/* ---- up-collapse (Bootstrap collapse'den bağımsız) ---- */
.up-collapse { display: none; }
.up-order-card__arrow { transition: transform .2s ease; display: inline-block; }

/* ========================================
   UP-PAGE-HEADER — Kullanici paneli baslik
   ======================================== */
.up-page-header {
    padding: 26px 0 22px;
    background: #f8f9fb;
    border-bottom: 1px solid #ebebf0;
}

.up-page-header__title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 5px;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.up-page-header__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 13px;
    color: #aaa;
    margin: 0;
}

.up-page-header__breadcrumb a {
    color: #aaa;
    text-decoration: none;
    transition: color .15s;
}

.up-page-header__breadcrumb a:hover {
    color: #6c757d;
}

.up-page-header__breadcrumb a i {
    font-size: 12px;
    margin-right: 3px;
    vertical-align: middle;
}

.up-page-header__breadcrumb span {
    position: relative;
    padding: 0 8px;
    font-size: 8px;
    color: #ccc;
    vertical-align: middle;
}

.up-page-header__breadcrumb span::before {
    content: "\f111";
    font-family: "uicons-regular-straight" !important;
}

.up-page-header__current {
    color: #555;
    font-weight: 500;
}

@media (max-width: 576px) {
    .up-page-header { padding: 18px 0 15px; }
    .up-page-header__title { font-size: 19px; }
}

/* ---- Footer genel iyilestirmeler ---- */
.footer-mid { padding: 48px 0 36px !important; }

.widget-about .logo { margin-bottom: 16px; }
.widget-about .logo img { max-height: 44px; width: auto; }
.widget-about .font-lg { font-size: 13.5px !important; color: #6B7280; line-height: 1.6; margin-bottom: 18px; }

.footer-link-widget .widget-title { margin-top: 0; }

footer .footer-bottom-border { display: none; }

/* copyright text */
.footer-copy p { color: #6B7280; font-size: 13px; }
.footer-copy a { color: #111827; font-weight: 600; text-decoration: none; }
.footer-copy a:hover { color: #F59E0B; }

@media (max-width: 767px) {
    .footer-mid { padding: 32px 0 24px !important; }
}

/* ========================================================
   CT-* — İletişim Sayfası Bileşenleri
   ======================================================== */

/* --- Sol Panel --- */
.ct-info-panel {
    background: #fff;
    border: 1px solid #F0F0F3;
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    box-shadow: 0 2px 16px rgba(0,0,0,.05);
}

.ct-info-panel__title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
    letter-spacing: -.3px;
}

.ct-info-panel__sub {
    font-size: 13.5px;
    color: #6B7280;
    margin: 0 0 28px;
    line-height: 1.6;
}

/* Bilgi Listesi */
.ct-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.ct-info-list__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #F3F4F6;
}

.ct-info-list__item:last-child { border-bottom: none; }

.ct-info-list__icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #FEF3C7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #F59E0B;
}

.ct-info-list__icon--wa {
    background: #E6F9F0;
    color: #25D366;
}

.ct-info-list__label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 3px;
}

.ct-info-list__value {
    display: block;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
    text-decoration: none;
    transition: color .15s;
}

a.ct-info-list__value:hover { color: #F59E0B; }

/* Güven blokları */
.ct-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 28px;
}

.ct-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    background: #F9FAFB;
    border-radius: 10px;
    border: 1px solid #F0F0F3;
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    text-align: center;
    line-height: 1.3;
}

.ct-trust-item i {
    font-size: 20px;
    color: #F59E0B;
}

/* Sosyal alan */
.ct-social__label {
    font-size: 12px;
    font-weight: 700;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin: 0 0 10px;
}

.ct-social__icons {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.ct-social__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
    transition: background .15s, border-color .15s, transform .15s;
}

.ct-social__btn img { width: 16px; filter: brightness(0) saturate(100%) invert(30%) sepia(10%) saturate(500%) hue-rotate(180deg); transition: filter .15s; }

.ct-social__btn:hover {
    background: #F59E0B;
    border-color: #F59E0B;
    transform: translateY(-2px);
}

.ct-social__btn:hover img { filter: brightness(0) invert(1); }

.ct-social__sub { font-size: 12px; color: #9CA3AF; margin: 0; }

/* --- Sağ: Form Kartı --- */
.ct-form-card {
    background: #fff;
    border: 1px solid #F0F0F3;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,.05);
}

.ct-form-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 6px;
    letter-spacing: -.3px;
}

.ct-form-card__sub {
    font-size: 13.5px;
    color: #6B7280;
    margin: 0 0 28px;
}

/* Form alanları */
.ct-field { display: flex; flex-direction: column; gap: 5px; }

.ct-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #374151;
    letter-spacing: .1px;
}

.ct-input,
.ct-textarea {
    width: 100%;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 14px;
    color: #111827;
    font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
    transition: border-color .15s, box-shadow .15s, background .15s;
    outline: none;
}

.ct-input::placeholder,
.ct-textarea::placeholder { color: #9CA3AF; }

.ct-input:hover,
.ct-textarea:hover { border-color: #D1D5DB; }

.ct-input:focus,
.ct-textarea:focus {
    border-color: #F59E0B;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(245,158,11,.12);
}

.ct-textarea {
    resize: vertical;
    min-height: 130px;
}

/* Submit butonu */
.ct-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
    letter-spacing: .2px;
    box-shadow: 0 4px 14px rgba(245,158,11,.3);
    transition: transform .15s ease, box-shadow .15s ease;
}

.ct-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245,158,11,.4);
}

.ct-submit i { font-size: 16px; }

/* Mobil */
@media (max-width: 991px) {
    .ct-info-panel { padding: 24px 20px; }
    .ct-form-card  { padding: 28px 20px; }
}

@media (max-width: 575px) {
    .ct-trust-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .ct-trust-item { padding: 10px 4px; font-size: 10px; }
    .ct-submit { width: 100%; justify-content: center; }
}

/* ========================================================
   BLG-* — Blog Sayfasi Bilesenleri
   ======================================================== */

/* --- Featured Yazi --- */
.blg-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
    margin-bottom: 36px;
    border: 1px solid #F0F0F3;
}

.blg-featured__img {
    position: relative;
    min-height: 340px;
    overflow: hidden;
}

.blg-featured__img a { display: block; height: 100%; }

.blg-featured__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.blg-featured:hover .blg-featured__img img { transform: scale(1.04); }

.blg-featured__body {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.blg-featured__eyebrow {
    font-size: 12px;
    font-weight: 700;
    color: #F59E0B;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.blg-featured__eyebrow i { margin-right: 4px; }

.blg-featured__title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    line-height: 1.35;
    margin: 0;
}

.blg-featured__title a { color: inherit; text-decoration: none; transition: color .15s; }
.blg-featured__title a:hover { color: #F59E0B; }

.blg-featured__desc {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blg-featured__meta {
    display: flex;
    gap: 16px;
    font-size: 12.5px;
    color: #9CA3AF;
}

.blg-featured__meta i { margin-right: 4px; color: #F59E0B; }

/* --- Kategori Chipleri --- */
.blg-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.blg-chip {
    padding: 7px 18px;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
    font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
}

.blg-chip:hover, .blg-chip.active {
    background: #F59E0B;
    border-color: #F59E0B;
    color: #fff;
}

/* --- Blog Grid --- */
.blg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* --- Blog Kart --- */
.blg-card {
    background: #fff;
    border: 1px solid #F0F0F3;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s ease, transform .2s ease;
}

.blg-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.09);
    transform: translateY(-4px);
}

.blg-card__img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #F3F4F6;
}

.blg-card__img a { display: block; height: 100%; }

.blg-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.blg-card:hover .blg-card__img img { transform: scale(1.06); }

.blg-card__img-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #D1D5DB;
}

/* Badge */
.blg-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    background: #fff;
    color: #374151;
    box-shadow: 0 1px 6px rgba(0,0,0,.12);
}

.blg-badge--amber {
    background: #F59E0B;
    color: #fff;
}

.blg-card__body {
    padding: 18px 18px 10px;
    flex: 1;
}

.blg-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blg-card__title a { color: inherit; text-decoration: none; transition: color .15s; }
.blg-card:hover .blg-card__title a { color: #F59E0B; }

.blg-card__desc {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blg-card__footer {
    padding: 12px 18px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #F3F4F6;
}

.blg-card__meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #9CA3AF;
}

.blg-card__meta i { color: #F59E0B; margin-right: 3px; }

.blg-card__read {
    font-size: 12.5px;
    font-weight: 700;
    color: #F59E0B;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap .15s;
}

.blg-card__read:hover { gap: 7px; color: #D97706; text-decoration: none; }

/* --- CTA Butonu (featured) --- */
.blg-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(245,158,11,.28);
    transition: transform .15s, box-shadow .15s;
    align-self: flex-start;
}

.blg-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(245,158,11,.38);
    color: #fff;
    text-decoration: none;
}

/* --- CTA Banner --- */
.blg-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, #111827 60%, #1F2937);
    border-radius: 16px;
    padding: 32px 36px;
    margin-bottom: 48px;
}

.blg-banner__text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}

.blg-banner__text p {
    font-size: 14px;
    color: #9CA3AF;
    margin: 0;
}

.blg-banner__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: #F59E0B;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s, transform .15s;
}

.blg-banner__btn:hover { background: #D97706; transform: translateY(-2px); color: #fff; text-decoration: none; }

/* --- Empty --- */
.blg-empty {
    text-align: center;
    padding: 60px 20px;
    color: #9CA3AF;
}

.blg-empty i { font-size: 3rem; display: block; margin-bottom: 12px; }

/* ========================================================
   BLG-ARTICLE — Blog Detay
   ======================================================== */
.blg-article {
    background: #fff;
    border: 1px solid #F0F0F3;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 2px 16px rgba(0,0,0,.05);
}

.blg-article__hero {
    width: 100%;
    max-height: 420px;
    overflow: hidden;
}

.blg-article__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blg-article__meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #9CA3AF;
    padding: 20px 32px 0;
}

.blg-article__meta i { color: #F59E0B; margin-right: 4px; }

.blg-article__title {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    line-height: 1.35;
    padding: 14px 32px 4px;
    margin: 0;
}

.blg-article__content {
    padding: 20px 32px 28px;
    font-size: 15px;
    color: #374151;
    line-height: 1.75;
}

.blg-article__content img { max-width: 100%; height: auto; border-radius: 10px; margin: 12px 0; }
.blg-article__content h2, .blg-article__content h3 { color: #111827; margin-top: 24px; }
.blg-article__content p { margin-bottom: 16px; }

.blg-article__back {
    padding: 0 32px 24px;
}

.blg-article__back a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: #6B7280;
    text-decoration: none;
    transition: color .15s;
}

.blg-article__back a:hover { color: #F59E0B; }

/* --- Ilgili Urunler --- */
.blg-related {
    background: #F9FAFB;
    border: 1px solid #F0F0F3;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 20px;
}

.blg-related__title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 20px;
}

.blg-related__title i { color: #F59E0B; margin-right: 6px; }

.blg-related__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.blg-related__card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow .2s, transform .2s;
    display: flex;
    flex-direction: column;
}

.blg-related__card:hover { box-shadow: 0 6px 18px rgba(0,0,0,.08); transform: translateY(-3px); text-decoration: none; }

.blg-related__card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }

.blg-related__info { padding: 10px 12px; }

.blg-related__name {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: #374151;
    line-height: 1.4;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blg-related__price {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #F59E0B;
}

/* Mobil */
@media (max-width: 991px) {
    .blg-featured { grid-template-columns: 1fr; }
    .blg-featured__img { min-height: 220px; }
    .blg-featured__body { padding: 24px 20px; }
    .blg-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .blg-related__grid { grid-template-columns: repeat(2, 1fr); }
    .blg-article__title { font-size: 22px; padding: 14px 20px 4px; }
    .blg-article__content { padding: 16px 20px 22px; }
    .blg-article__meta { padding: 16px 20px 0; }
    .blg-article__back { padding: 0 20px 20px; }
}

@media (max-width: 575px) {
    .blg-grid { grid-template-columns: 1fr; }
    .blg-banner { flex-direction: column; align-items: flex-start; padding: 22px 20px; }
    .blg-banner__btn { width: 100%; justify-content: center; }
    .blg-featured__title { font-size: 18px; }
    .blg-related__grid { grid-template-columns: repeat(2, 1fr); }
    .blg-related { padding: 20px; }
}

/* ========================================================
   FAV-* — Favorilerim Sayfasi
   ======================================================== */

/* --- Dolu durum: header --- */
.fav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.fav-header__title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px;
    letter-spacing: -.3px;
}

.fav-header__count {
    font-size: 13px;
    color: #9CA3AF;
    margin: 0;
}

.fav-header__shop {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: #6B7280;
    text-decoration: none;
    transition: color .15s;
}

.fav-header__shop:hover { color: #F59E0B; text-decoration: none; }

/* --- Ürün listesi --- */
.fav-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 48px;
}

.fav-row {
    display: grid;
    grid-template-columns: 90px 1fr auto auto;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 1px solid #F0F0F3;
    border-radius: 14px;
    padding: 16px 20px;
    transition: box-shadow .2s;
}

.fav-row:hover { box-shadow: 0 4px 18px rgba(0,0,0,.07); }

.fav-row__img {
    display: block;
    width: 90px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    background: #F3F4F6;
    flex-shrink: 0;
}

.fav-row__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.fav-row:hover .fav-row__img img { transform: scale(1.05); }

.fav-row__img-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #D1D5DB;
}

.fav-row__info { min-width: 0; }

.fav-row__name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .15s;
}

.fav-row__name:hover { color: #F59E0B; text-decoration: none; }

.fav-row__stars { margin-top: 4px; }

.fav-row__price {
    text-align: right;
    white-space: nowrap;
}

.fav-row__old {
    display: block;
    font-size: 12px;
    color: #9CA3AF;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.fav-row__current {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #F59E0B;
}

.fav-row__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fav-row__btn-view {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    transition: background .15s, border-color .15s, color .15s;
    white-space: nowrap;
}

.fav-row__btn-view:hover {
    background: #FEF3C7;
    border-color: #F59E0B;
    color: #D97706;
    text-decoration: none;
}

.fav-row__btn-del {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
    color: #EF4444;
    cursor: pointer;
    font-size: 15px;
    transition: background .15s, transform .15s;
}

.fav-row__btn-del:hover {
    background: #FEE2E2;
    transform: scale(1.08);
}

/* --- Boş durum --- */
.fav-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 56px 24px 48px;
    background: #fff;
    border: 1px solid #F0F0F3;
    border-radius: 18px;
    margin-bottom: 40px;
}

.fav-empty__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #FEF3C7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #F59E0B;
    margin-bottom: 20px;
}

.fav-empty__title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
}

.fav-empty__sub {
    font-size: 14px;
    color: #6B7280;
    margin: 0 0 24px;
    max-width: 380px;
    line-height: 1.6;
}

.fav-empty__search {
    display: flex;
    width: 100%;
    max-width: 400px;
    margin-bottom: 16px;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
    background: #F9FAFB;
}

.fav-empty__search input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 14px;
    font-size: 14px;
    color: #111827;
    outline: none;
    font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
}

.fav-empty__search input::placeholder { color: #9CA3AF; }

.fav-empty__search button {
    padding: 0 16px;
    background: #F59E0B;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background .15s;
}

.fav-empty__search button:hover { background: #D97706; }

.fav-empty__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #111827, #1F2937);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 4px 14px rgba(17,24,39,.2);
}

.fav-empty__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17,24,39,.28);
    color: #fff;
    text-decoration: none;
}

/* --- Önerilen ürünler --- */
.fav-suggest { margin-bottom: 20px; }

.fav-suggest__title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 18px;
}

.fav-suggest__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.fav-suggest__card {
    background: #fff;
    border: 1px solid #F0F0F3;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}

.fav-suggest__card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
    transform: translateY(-3px);
    text-decoration: none;
}

.fav-suggest__img { aspect-ratio: 1/1; overflow: hidden; background: #F3F4F6; }
.fav-suggest__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.fav-suggest__card:hover .fav-suggest__img img { transform: scale(1.06); }

.fav-suggest__info { padding: 12px 14px; }

.fav-suggest__name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fav-suggest__price {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #F59E0B;
}

/* Mobil */
@media (max-width: 767px) {
    .fav-row {
        grid-template-columns: 72px 1fr;
        grid-template-rows: auto auto;
        gap: 12px 14px;
    }

    .fav-row__img { width: 72px; height: 72px; }

    .fav-row__price {
        text-align: left;
        grid-column: 2;
    }

    .fav-row__actions {
        grid-column: 1 / -1;
        border-top: 1px solid #F3F4F6;
        padding-top: 12px;
    }

    .fav-row__btn-view { flex: 1; justify-content: center; }

    .fav-suggest__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .fav-suggest__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .fav-empty { padding: 36px 16px 32px; }
    .fav-row { padding: 14px; }
}

/* ========================================================
   BNK-* — Banka Hesaplari Sayfasi
   ======================================================== */

/* --- Bilgilendirme / uyari kutusu --- */
.bnk-alert {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
    border: 1px solid #FDE68A;
    border-left: 4px solid #F59E0B;
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 36px;
}

.bnk-alert__icon {
    font-size: 1.5rem;
    color: #D97706;
    flex-shrink: 0;
    line-height: 1;
    padding-top: 2px;
}

.bnk-alert__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex: 1;
    flex-wrap: wrap;
}

.bnk-alert__text {
    font-size: 14px;
    color: #78350F;
    margin: 0;
    line-height: 1.7;
    flex: 1;
}

.bnk-alert__text strong { color: #92400E; }

.bnk-alert__cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    background: #F59E0B;
    color: #fff;
    border-radius: 9px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s, transform .15s, box-shadow .15s;
    box-shadow: 0 3px 10px rgba(245,158,11,.35);
}

.bnk-alert__cta:hover {
    background: #D97706;
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(245,158,11,.45);
    color: #fff;
    text-decoration: none;
}

/* --- Kart grid --- */
.bnk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

/* --- Banka karti --- */
.bnk-card {
    background: #fff;
    border: 1px solid #EAECEF;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}

.bnk-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.08);
    transform: translateY(-3px);
}

/* Kart ust alani */
.bnk-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px 16px;
    border-bottom: 1px solid #F3F4F6;
    background: #FAFBFC;
}

.bnk-card__logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    overflow: hidden;
    background: #F3F4F6;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bnk-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bnk-card__logo--ph {
    font-size: 1.4rem;
    color: #9CA3AF;
}

.bnk-card__head-text { min-width: 0; }

.bnk-card__label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 3px;
}

.bnk-card__name {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Kart icerik alani */
.bnk-card__body {
    padding: 20px 22px;
    flex: 1;
    font-size: 14px;
    line-height: 1.8;
    color: #374151;
}

.bnk-card__body p {
    margin: 0 0 8px;
}

.bnk-card__body strong,
.bnk-card__body b {
    color: #111827;
    font-weight: 600;
}

/* IBAN metni varsa otomatik mono font */
.bnk-card__body p:has(strong),
.bnk-card__body p {
    word-break: break-all;
}

/* Kart alt alani */
.bnk-card__foot {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px 18px;
    border-top: 1px solid #F3F4F6;
}

.bnk-card__copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #6B7280;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
}

.bnk-card__copy:hover {
    background: #FEF3C7;
    border-color: #F59E0B;
    color: #D97706;
}

.bnk-card__pay {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #111827, #1F2937);
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 3px 10px rgba(17,24,39,.2);
    margin-left: auto;
    white-space: nowrap;
}

.bnk-card__pay:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(17,24,39,.28);
    color: #fff;
    text-decoration: none;
}

/* --- Alt mini bilgi notu --- */
.bnk-tip {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #F8FAFF;
    border: 1px solid #E0E7FF;
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 8px;
}

.bnk-tip__icon {
    font-size: 1.2rem;
    color: #6366F1;
    flex-shrink: 0;
    padding-top: 2px;
}

.bnk-tip__text {
    font-size: 13.5px;
    color: #4B5563;
    margin: 0;
    line-height: 1.7;
}

.bnk-tip__text strong { color: #374151; }
.bnk-tip__text a { color: #F59E0B; font-weight: 600; text-decoration: none; }
.bnk-tip__text a:hover { color: #D97706; text-decoration: underline; }

/* Mobil */
@media (max-width: 767px) {
    .bnk-grid { grid-template-columns: 1fr; gap: 16px; }

    .bnk-alert {
        flex-direction: column;
        gap: 12px;
        padding: 16px 18px;
    }

    .bnk-alert__body { flex-direction: column; gap: 12px; }
    .bnk-alert__cta { width: 100%; justify-content: center; }

    .bnk-card__foot { flex-wrap: wrap; }
    .bnk-card__pay { margin-left: 0; width: 100%; justify-content: center; }
}

/* ========================================================
   ODM-* — Odeme Bildirimi Sayfasi
   ======================================================== */

/* --- Giriş gerekli ekranı --- */
.odm-login-required {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 24px 52px;
    background: #fff;
    border: 1px solid #F0F0F3;
    border-radius: 18px;
    max-width: 460px;
    margin: 0 auto 40px;
}

.odm-login-required__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #FEF3C7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #F59E0B;
    margin-bottom: 18px;
}

.odm-login-required__title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
}

.odm-login-required__sub {
    font-size: 14px;
    color: #6B7280;
    margin: 0 0 24px;
    line-height: 1.6;
}

.odm-login-required__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #F59E0B;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 14px;
    transition: background .15s, transform .15s;
    box-shadow: 0 3px 12px rgba(245,158,11,.35);
}

.odm-login-required__btn:hover {
    background: #D97706;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.odm-login-required__reg {
    font-size: 13px;
    color: #9CA3AF;
    text-decoration: none;
    transition: color .15s;
}

.odm-login-required__reg:hover { color: #F59E0B; text-decoration: none; }

/* --- Boş sipariş ekranı --- */
.odm-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 24px;
    background: #fff;
    border: 1px solid #F0F0F3;
    border-radius: 18px;
    max-width: 460px;
    margin: 0 auto;
}

.odm-empty__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #9CA3AF;
    margin-bottom: 18px;
}

.odm-empty__title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
}

.odm-empty__sub {
    font-size: 14px;
    color: #6B7280;
    margin: 0 0 24px;
    line-height: 1.6;
}

.odm-empty__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #111827, #1F2937);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 4px 14px rgba(17,24,39,.2);
}

.odm-empty__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17,24,39,.28);
    color: #fff;
    text-decoration: none;
}

/* --- Ana layout --- */
.odm-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 24px;
    align-items: start;
}

/* --- Form kartı --- */
.odm-card {
    background: #fff;
    border: 1px solid #EAECEF;
    border-radius: 16px;
    overflow: hidden;
}

.odm-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 26px 18px;
    border-bottom: 1px solid #F3F4F6;
    background: #FAFBFC;
}

.odm-card__head-icon {
    font-size: 1.6rem;
    color: #F59E0B;
    flex-shrink: 0;
}

.odm-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 3px;
}

.odm-card__sub {
    font-size: 13px;
    color: #9CA3AF;
    margin: 0;
}

.odm-card__msg { padding: 16px 26px 0; }

/* --- Form elemanları --- */
.odm-form { padding: 24px 26px 28px; }

.odm-form__group { margin-bottom: 18px; }

.odm-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.odm-form__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.odm-form__req { color: #EF4444; }

.odm-form__input,
.odm-form__select,
.odm-form__textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #E5E7EB;
    border-radius: 9px;
    font-size: 14px;
    color: #111827;
    background: #FAFAFA;
    font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
    transition: border-color .15s, box-shadow .15s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.odm-form__input:focus,
.odm-form__select:focus,
.odm-form__textarea:focus {
    border-color: #F59E0B;
    box-shadow: 0 0 0 3px rgba(245,158,11,.15);
    background: #fff;
}

.odm-form__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%239CA3AF' d='M5.23 7.21a.75.75 0 011.06.02L10 11.17l3.71-3.94a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0L5.21 8.27a.75.75 0 01.02-1.06z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 36px;
}

.odm-form__textarea { resize: vertical; min-height: 80px; }

/* Sipariş özet kutusu */
.odm-order-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    border-radius: 8px;
    font-size: 13px;
    color: #78350F;
    font-weight: 600;
    margin-bottom: 18px;
    margin-top: -10px;
}

.odm-order-summary i { color: #F59E0B; flex-shrink: 0; }

/* Gönder butonu */
.odm-form__submit {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 4px 14px rgba(245,158,11,.35);
    margin-top: 8px;
}

.odm-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,158,11,.45);
}

/* --- Yan bilgi paneli --- */
.odm-side { display: flex; flex-direction: column; gap: 16px; }

.odm-side__card {
    background: #fff;
    border: 1px solid #EAECEF;
    border-radius: 14px;
    padding: 18px 20px;
}

.odm-side__card--tip {
    background: #F8FAFF;
    border-color: #E0E7FF;
}

.odm-side__title {
    font-size: 14px;
    font-weight: 700;
    color: #374151;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.odm-side__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #6B7280;
    margin: 0 0 8px;
}

.odm-side__row strong { color: #111827; font-weight: 600; }

.odm-side__tips {
    list-style: none;
    padding: 0;
    margin: 0;
}

.odm-side__tips li {
    font-size: 13px;
    color: #4B5563;
    line-height: 1.5;
    padding: 5px 0 5px 18px;
    position: relative;
    border-bottom: 1px solid #E0E7FF;
}

.odm-side__tips li:last-child { border-bottom: none; }

.odm-side__tips li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: #6366F1;
    font-weight: 700;
}

.odm-side__tips a { color: #F59E0B; font-weight: 600; text-decoration: none; }
.odm-side__tips a:hover { color: #D97706; }

/* Mobil */
@media (max-width: 991px) {
    .odm-layout {
        grid-template-columns: 1fr;
    }

    .odm-side { order: -1; }
    .odm-side__card--tip { display: none; }
}

@media (max-width: 575px) {
    .odm-card__head { padding: 16px 18px 14px; }
    .odm-form { padding: 18px 18px 22px; }
    .odm-form__row { grid-template-columns: 1fr; gap: 0; }
}

/* ========================================================
   SC-* — Siparisim Ne Durumda Sayfasi
   ======================================================== */

/* --- Sayfa başlık hero --- */
.sc-hero {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #fff 60%, #FFFBEB);
    border: 1px solid #FDE68A;
    border-radius: 16px;
    padding: 22px 28px;
    margin-bottom: 28px;
}

.sc-hero__icon {
    font-size: 2rem;
    color: #F59E0B;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: #FEF3C7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-hero__title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px;
}

.sc-hero__sub {
    font-size: 13.5px;
    color: #6B7280;
    margin: 0;
}

/* --- Badge --- */
.sc-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .2px;
    white-space: nowrap;
}

.sc-badge--wait   { background: #FEF9C3; color: #92400E; }
.sc-badge--prep   { background: #FFEDD5; color: #C2410C; }
.sc-badge--ship   { background: #DBEAFE; color: #1D4ED8; }
.sc-badge--done   { background: #DCFCE7; color: #15803D; }
.sc-badge--cancel { background: #FEE2E2; color: #DC2626; }

/* --- Sipariş listesi label --- */
.sc-list-label {
    font-size: 13px;
    color: #9CA3AF;
    margin: 0 0 14px;
}

/* --- Sipariş kartı --- */
.sc-order {
    background: #fff;
    border: 1px solid #EAECEF;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
    transition: box-shadow .2s;
}

.sc-order:hover { box-shadow: 0 4px 18px rgba(0,0,0,.07); }

.sc-order__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    cursor: pointer;
    user-select: none;
    gap: 12px;
    flex-wrap: wrap;
}

.sc-order__head-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sc-order__head-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.sc-order__num {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.sc-order__date {
    font-size: 12.5px;
    color: #9CA3AF;
}

.sc-order__price {
    font-size: 15px;
    font-weight: 700;
    color: #F59E0B;
}

.sc-order__arrow {
    font-size: 14px;
    color: #9CA3AF;
    transition: transform .25s;
    flex-shrink: 0;
}

.sc-order__arrow--open { transform: rotate(180deg); }

/* --- Detay paneli --- */
.sc-detail {
    border-top: 1px solid #F3F4F6;
    padding: 24px 22px 22px;
}

/* --- Timeline --- */
.sc-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 24px;
    padding: 0 4px;
    overflow-x: auto;
}

.sc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    min-width: 72px;
}

.sc-step__dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #F3F4F6;
    border: 2px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #9CA3AF;
    position: relative;
    z-index: 1;
    transition: background .25s, border-color .25s;
    flex-shrink: 0;
}

.sc-step__line {
    position: absolute;
    top: 19px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: #E5E7EB;
    z-index: 0;
    transition: background .25s;
}

.sc-step:last-child .sc-step__line { display: none; }

.sc-step__label {
    font-size: 11.5px;
    color: #9CA3AF;
    margin-top: 8px;
    text-align: center;
    font-weight: 500;
    line-height: 1.3;
}

/* Tamamlandı */
.sc-step--done .sc-step__dot {
    background: #DCFCE7;
    border-color: #22C55E;
    color: #15803D;
}

.sc-step--done .sc-step__line { background: #22C55E; }
.sc-step--done .sc-step__label { color: #374151; font-weight: 600; }

/* Aktif */
.sc-step--active .sc-step__dot {
    background: #F59E0B;
    border-color: #D97706;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(245,158,11,.2); /* statik — animasyonsuz */
    overflow: visible;
}
/* scPulse: box-shadow yerine ::after transform+opacity — compositor-only */
.sc-step--active .sc-step__dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(245,158,11,.25);
    animation: scPulse 1.8s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

.sc-step--active .sc-step__label { color: #D97706; font-weight: 700; }

@keyframes scPulse {
    0%,100% { -webkit-transform: scale(1.2); transform: scale(1.2); opacity: 0.4; }
    50%      { -webkit-transform: scale(1.7); transform: scale(1.7); opacity: 0.05; }
}

/* --- Kargo kutusu --- */
.sc-cargo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sc-cargo__info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sc-cargo__icon {
    font-size: 1.3rem;
    color: #3B82F6;
    flex-shrink: 0;
}

.sc-cargo__firm {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1E40AF;
}

.sc-cargo__code {
    display: block;
    font-size: 12px;
    color: #6B7280;
    font-family: monospace;
}

.sc-cargo__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #3B82F6;
    color: #fff;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s, transform .15s;
    white-space: nowrap;
}

.sc-cargo__btn:hover {
    background: #2563EB;
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

/* --- Ürün listesi --- */
.sc-products {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.sc-product {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    background: #F9FAFB;
    border-radius: 10px;
    border: 1px solid #F0F0F3;
}

.sc-product__img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #E5E7EB;
}

.sc-product__img--ph {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #9CA3AF;
}

.sc-product__info {
    flex: 1;
    min-width: 0;
}

.sc-product__name {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sc-product__var {
    display: block;
    font-size: 12px;
    color: #9CA3AF;
    margin-top: 2px;
}

.sc-product__price {
    font-size: 13.5px;
    font-weight: 700;
    color: #374151;
    white-space: nowrap;
}

.sc-product__qty { font-size: 11px; color: #9CA3AF; }

/* --- Sipariş özet alt --- */
.sc-summary {
    background: #F9FAFB;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #F0F0F3;
}

.sc-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 16px;
    font-size: 13px;
    color: #6B7280;
    border-bottom: 1px solid #F0F0F3;
}

.sc-summary__row:last-child { border-bottom: none; }

.sc-summary__row strong { color: #111827; font-weight: 600; }

.sc-summary__row--total {
    background: #fff;
    font-size: 14px;
    font-weight: 700;
}

.sc-summary__row--total strong { color: #F59E0B; font-size: 15px; }

/* --- İptal mesajı --- */
.sc-cancelled {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FEE2E2;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13.5px;
    color: #DC2626;
    font-weight: 600;
    margin-bottom: 20px;
}

/* --- Boş durum --- */
.sc-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 24px;
    background: #fff;
    border: 1px solid #F0F0F3;
    border-radius: 18px;
    max-width: 440px;
    margin: 0 auto;
}

.sc-empty__icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #9CA3AF;
    margin-bottom: 18px;
}

.sc-empty__title { font-size: 19px; font-weight: 700; color: #111827; margin: 0 0 8px; }
.sc-empty__sub { font-size: 14px; color: #6B7280; margin: 0 0 22px; line-height: 1.6; }

.sc-empty__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: linear-gradient(135deg, #111827, #1F2937);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 4px 14px rgba(17,24,39,.2);
}

.sc-empty__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17,24,39,.28);
    color: #fff;
    text-decoration: none;
}

/* --- Misafir layout --- */
.sc-guest-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.sc-guest-form-card {
    background: #fff;
    border: 1px solid #EAECEF;
    border-radius: 16px;
    overflow: hidden;
}

.sc-guest-form-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px 18px;
    border-bottom: 1px solid #F3F4F6;
    background: #FAFBFC;
}

.sc-guest-form-card__icon {
    font-size: 1.6rem;
    color: #F59E0B;
    flex-shrink: 0;
}

.sc-guest-form-card__title { font-size: 17px; font-weight: 700; color: #111827; margin: 0 0 3px; }
.sc-guest-form-card__sub { font-size: 12.5px; color: #9CA3AF; margin: 0; }

/* Form */
.sc-form { padding: 20px 24px; }

.sc-form__wrap {
    display: flex;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
    background: #F9FAFB;
}

.sc-form__input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 16px;
    font-size: 14px;
    color: #111827;
    outline: none;
    font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
}

.sc-form__input::placeholder { color: #9CA3AF; }

.sc-form__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 20px;
    background: #F59E0B;
    color: #fff;
    border: none;
    font-size: 13.5px;
    font-weight: 700;
    font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
}

.sc-form__btn:hover { background: #D97706; }

/* Hata / uyarı */
.sc-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 0;
}

.sc-alert--error { background: #FEE2E2; color: #DC2626; }

/* Giriş CTA */
.sc-login-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: #F8FAFF;
    border-top: 1px solid #E0E7FF;
    flex-wrap: wrap;
}

.sc-login-cta__icon { font-size: 1.1rem; color: #6366F1; flex-shrink: 0; }

.sc-login-cta__text { font-size: 12.5px; color: #4B5563; margin: 0; flex: 1; line-height: 1.5; }
.sc-login-cta__text strong { color: #111827; }

.sc-login-cta__btn {
    display: inline-block;
    padding: 7px 16px;
    background: #6366F1;
    color: #fff;
    border-radius: 7px;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s;
    white-space: nowrap;
}

.sc-login-cta__btn:hover { background: #4F46E5; color: #fff; text-decoration: none; }

/* Sorgu sonucu sağda */
.sc-result {
    background: #fff;
    border: 1px solid #EAECEF;
    border-radius: 16px;
    overflow: hidden;
    padding: 22px;
}

.sc-result__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sc-timeline--compact { margin-bottom: 20px; }

/* Mobil */
@media (max-width: 767px) {
    .sc-guest-wrap { grid-template-columns: 1fr; }

    .sc-order__head { padding: 14px 16px; }
    .sc-detail { padding: 18px 16px; }

    .sc-timeline { gap: 0; overflow-x: auto; padding-bottom: 4px; }
    .sc-step { min-width: 62px; }
    .sc-step__dot { width: 32px; height: 32px; font-size: .85rem; }
    .sc-step__line { top: 16px; }
    .sc-step__label { font-size: 10.5px; }

    .sc-cargo { flex-direction: column; align-items: flex-start; }
    .sc-cargo__btn { width: 100%; justify-content: center; }

    .sc-hero { flex-direction: column; text-align: center; gap: 10px; padding: 18px; }
}

/* ========================================================
   LP-* — Kurumsal/Yasal Sayfa Sablonu (sayfa.php)
   ======================================================== */

/* --- Üst banner ---------------------------------------- */
.lp-banner {
    background: linear-gradient(135deg, #111827 0%, #1F2937 60%, #111827 100%);
    padding: 36px 0 28px;
    border-bottom: 3px solid #F59E0B;
}

.lp-banner__inner {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}

.lp-banner__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(245,158,11,.15);
    border: 1px solid rgba(245,158,11,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #F59E0B;
    flex-shrink: 0;
}

.lp-banner__title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.2;
}

.lp-banner__sub {
    font-size: 13.5px;
    color: rgba(255,255,255,.55);
    margin: 0;
    line-height: 1.5;
}

/* Breadcrumb */
.lp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
}

.lp-breadcrumb a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color .15s;
}

.lp-breadcrumb a:hover { color: #F59E0B; }

.lp-breadcrumb__sep { color: rgba(255,255,255,.3); }

.lp-breadcrumb span { color: rgba(255,255,255,.8); font-weight: 600; }

/* --- Ana layout ---------------------------------------- */
.lp-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: start;
}

/* --- Sol sidebar --------------------------------------- */
.lp-sidebar {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-nav {
    background: #fff;
    border: 1px solid #EAECEF;
    border-radius: 14px;
    overflow: hidden;
}

.lp-nav__head {
    padding: 13px 18px;
    font-size: 11.5px;
    font-weight: 700;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: .8px;
    background: #F9FAFB;
    border-bottom: 1px solid #EAECEF;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-nav__list {
    list-style: none;
    margin: 0;
    padding: 6px 0;
}

.lp-nav__item { margin: 0; }

.lp-nav__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    font-size: 13.5px;
    color: #374151;
    text-decoration: none;
    transition: background .15s, color .15s;
    border-left: 3px solid transparent;
    margin: 1px 0;
}

.lp-nav__link:hover {
    background: #FFFBEB;
    color: #D97706;
    text-decoration: none;
    border-left-color: #FDE68A;
}

.lp-nav__item--active .lp-nav__link {
    background: #FFFBEB;
    color: #D97706;
    font-weight: 700;
    border-left-color: #F59E0B;
}

.lp-nav__ico {
    font-size: 1rem;
    color: #9CA3AF;
    flex-shrink: 0;
    transition: color .15s;
}

.lp-nav__item--active .lp-nav__ico,
.lp-nav__link:hover .lp-nav__ico {
    color: #F59E0B;
}

.lp-nav__arr {
    margin-left: auto;
    font-size: 11px;
    color: #F59E0B;
    flex-shrink: 0;
}

/* İletişim kutusu */
.lp-contact-box {
    background: linear-gradient(135deg, #1E40AF, #3B82F6);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
}

.lp-contact-box__icon {
    font-size: 1.8rem;
    color: rgba(255,255,255,.8);
    display: block;
    margin-bottom: 8px;
}

.lp-contact-box__text {
    font-size: 13px;
    color: rgba(255,255,255,.85);
    margin: 0 0 12px;
    line-height: 1.5;
}

.lp-contact-box__btn {
    display: inline-block;
    padding: 8px 20px;
    background: #fff;
    color: #1E40AF;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
}

.lp-contact-box__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    text-decoration: none;
    color: #1E40AF;
}

/* --- Makale içerik ------------------------------------- */
.lp-article {
    background: #fff;
    border: 1px solid #EAECEF;
    border-radius: 16px;
    overflow: hidden;
}

.lp-article__banner {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    display: block;
}

.lp-article__head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 32px 22px;
    border-bottom: 1px solid #F3F4F6;
    background: #FAFBFC;
}

.lp-article__badge {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #FEF3C7;
    border: 1px solid #FDE68A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #D97706;
    flex-shrink: 0;
}

.lp-article__title {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 6px;
    line-height: 1.25;
}

.lp-article__date {
    font-size: 12px;
    color: #9CA3AF;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Makale gövdesi tipografi */
.lp-article__body {
    padding: 32px;
    font-size: 14.5px;
    color: #374151;
    line-height: 1.85;
}

.lp-article__body h1,
.lp-article__body h2,
.lp-article__body h3,
.lp-article__body h4 {
    color: #111827;
    font-weight: 700;
    margin: 28px 0 12px;
    line-height: 1.3;
}

.lp-article__body h2 { font-size: 18px; padding-bottom: 8px; border-bottom: 2px solid #FEF3C7; }
.lp-article__body h3 { font-size: 16px; color: #D97706; }
.lp-article__body h4 { font-size: 14.5px; }

.lp-article__body p { margin: 0 0 14px; }

.lp-article__body ul,
.lp-article__body ol {
    padding-left: 22px;
    margin: 0 0 16px;
}

.lp-article__body li { margin-bottom: 6px; }

.lp-article__body strong { color: #111827; font-weight: 700; }

.lp-article__body a {
    color: #D97706;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.lp-article__body a:hover { color: #B45309; }

.lp-article__body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 13.5px;
}

.lp-article__body table th,
.lp-article__body table td {
    padding: 10px 14px;
    border: 1px solid #E5E7EB;
    text-align: left;
}

.lp-article__body table th {
    background: #F9FAFB;
    font-weight: 700;
    color: #111827;
}

.lp-article__body table tr:nth-child(even) td { background: #FAFBFC; }

.lp-article__body blockquote {
    border-left: 4px solid #F59E0B;
    background: #FFFBEB;
    padding: 14px 20px;
    margin: 16px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #92400E;
}

/* --- Alt sayfalama ------------------------------------- */
.lp-pager {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 32px;
    border-top: 1px solid #F3F4F6;
    background: #FAFBFC;
    flex-wrap: wrap;
}

.lp-pager__btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border: 1px solid #EAECEF;
    border-radius: 10px;
    text-decoration: none;
    color: #374151;
    font-size: 13px;
    transition: background .15s, border-color .15s, transform .15s;
    max-width: 240px;
}

.lp-pager__btn:hover {
    background: #FFFBEB;
    border-color: #FDE68A;
    color: #D97706;
    text-decoration: none;
    transform: translateY(-1px);
}

.lp-pager__btn span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lp-pager__btn small {
    font-size: 11px;
    color: #9CA3AF;
    font-weight: 500;
    display: block;
}

.lp-pager__btn--next { text-align: right; flex-direction: row-reverse; }

/* --- Mobil -------------------------------------------- */
@media (max-width: 991px) {
    .lp-layout {
        grid-template-columns: 1fr;
    }

    .lp-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }

    .lp-nav { flex: 1; min-width: 280px; }
    .lp-contact-box { flex: 1; min-width: 220px; text-align: left; }

    .lp-contact-box__icon { display: none; }
}

@media (max-width: 575px) {
    .lp-banner { padding: 24px 0 18px; }
    .lp-banner__title { font-size: 18px; }
    .lp-banner__icon { width: 44px; height: 44px; font-size: 1.3rem; }

    .lp-article__head { padding: 20px 20px 16px; gap: 12px; }
    .lp-article__body { padding: 20px; font-size: 14px; }
    .lp-article__title { font-size: 17px; }
    .lp-pager { padding: 16px 20px; flex-direction: column; }
    .lp-pager__btn { max-width: 100%; }
}

/* ========================================================
   PD-* — Urun Detay Sayfasi (urun.php)
   ======================================================== */

/* --- Genel sarici ---------------------------------------- */
.pd-wrap {
    background: transparent;
}

.pd-top {
    margin-top: 24px;
}

/* --- Galeri ----------------------------------------------- */
.pd-gallery-main {
    background: #F9FAFB;
    border-radius: 16px;
    border: 1px solid #EAECEF;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.pd-gallery-main .gallery-center-content {
    height: auto;
    min-height: unset;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.pd-gallery-main .gallery-center-content img,
.pd-gallery-main .gallery-center-content video {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 10px;
    display: block;
}

.pd-gallery-thumbs {
    margin-top: 10px !important;
}

.pd-gallery-thumbs .swiper-slide {
    opacity: 0.55;
    cursor: pointer;
    border-radius: 10px;
    border: 2px solid #E5E7EB;
    height: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .2s, border-color .2s;
}

.pd-gallery-thumbs .swiper-slide:hover {
    opacity: 0.85;
}

.pd-gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #F59E0B;
}

.pd-gallery-thumbs img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

.video-thumb {
    width: 100%;
    height: 100%;
    background: #111827;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    border-radius: 8px;
}

/* --- Satın alma kartı ------------------------------------ */
.pd-buy-card {
    background: #fff;
    border: 1px solid #EAECEF;
    border-radius: 18px;
    padding: 28px 26px 22px;
    position: sticky;
    top: 16px;
}

/* --- Başlık ----------------------------------------------- */
.pd-title {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    line-height: 1.3;
    margin: 0 0 14px;
}

/* --- Meta: marka + puan ---------------------------------- */
.pd-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 14px;
    border-bottom: 1px solid #F3F4F6;
    margin-bottom: 16px;
}

.pd-meta__brand {
    display: flex;
    align-items: center;
}

.pd-meta__brand-img {
    max-width: 110px;
    max-height: 36px;
    object-fit: contain;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 4px 8px;
    background: #fff;
}

.pd-meta__rating {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.pd-meta__score {
    font-size: 13px;
    font-weight: 700;
    color: #F59E0B;
}

.pd-meta__link {
    font-size: 12.5px;
    color: #6B7280;
    text-decoration: none;
    transition: color .15s;
}

.pd-meta__link:hover {
    color: #F59E0B;
    text-decoration: none;
}

.pd-meta__sep {
    color: #D1D5DB;
    font-size: 12px;
}

.pd-meta__views {
    font-size: 12px;
    color: #9CA3AF;
}

/* --- Fiyat bloğu ----------------------------------------- */
.pd-price-block {
    margin-bottom: 18px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #FFFBEB, #FFF9F0);
    border: 1px solid #FDE68A;
    border-radius: 12px;
}

.pd-price-block__top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.pd-price-block__badge {
    display: inline-block;
    background: #F59E0B;
    color: #fff;
    font-size: 11.5px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: .2px;
}

.pd-price-block__old {
    font-size: 14px;
    color: #9CA3AF;
    text-decoration: line-through;
    font-weight: 500;
}

.pd-price-block__current,
span#guncel_fiyat {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -.5px;
}

/* Eski current-price override */
.current-price {
    font-size: 28px !important;
    color: #111827 !important;
    font-weight: 900 !important;
}

.old-price {
    font-size: 14px !important;
    color: #9CA3AF !important;
    font-weight: 500 !important;
    text-decoration: line-through !important;
}

.discount-label {
    background: #F59E0B !important;
    color: #fff !important;
    font-size: 11.5px !important;
    font-weight: 800 !important;
    padding: 3px 9px !important;
    border-radius: 20px !important;
}

.price-container {
    border: none !important;
    background: linear-gradient(135deg, #FFFBEB, #FFF9F0) !important;
    border: 1px solid #FDE68A !important;
    border-radius: 12px !important;
    align-items: flex-start !important;
    width: 100% !important;
    padding: 14px 16px !important;
    margin-bottom: 18px;
}

/* --- Varyant dropdownları -------------------------------- */
.pd-variants {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.pd-variant-group {
    position: relative;
}

.pd-variant-group__label {
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 5px;
}

.pd-variant-group__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
    background: #F9FAFB;
    transition: border-color .15s;
    user-select: none;
}

.pd-variant-group__toggle:hover {
    border-color: #F59E0B;
}

.pd-variant-group__selected {
    font-weight: 600;
}

.pd-variant-group__menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    z-index: 100;
    overflow: hidden;
    display: none;
}

.pd-variant-group.open .pd-variant-group__menu {
    display: block;
}

.pd-variant-group__search {
    width: 100%;
    border: none;
    border-bottom: 1px solid #F3F4F6;
    padding: 9px 14px;
    font-size: 13px;
    color: #374151;
    outline: none;
}

.pd-variant-group__list {
    list-style: none;
    margin: 0;
    padding: 4px 0;
    max-height: 180px;
    overflow-y: auto;
}

.pd-variant-group__item {
    padding: 9px 14px;
    font-size: 13.5px;
    color: #374151;
    cursor: pointer;
    transition: background .1s;
}

.pd-variant-group__item:hover {
    background: #FFFBEB;
    color: #D97706;
}

.pd-variant-group__item.active {
    background: #FEF3C7;
    color: #D97706;
    font-weight: 700;
}

/* --- Sepet alanı ----------------------------------------- */
.pd-cart-area {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.pd-qty {
    display: flex;
    align-items: center;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
    background: #F9FAFB;
    flex-shrink: 0;
    height: 48px;
}

.pd-qty__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 48px;
    color: #6B7280;
    text-decoration: none;
    font-size: 14px;
    transition: background .15s, color .15s;
}

.pd-qty__btn:hover {
    background: #F3F4F6;
    color: #111827;
    text-decoration: none;
}

.pd-qty__val {
    min-width: 32px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.pd-cart-btns {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    flex-wrap: wrap;
}

.pd-btn-cart {
    flex: 1;
    min-width: 140px;
    height: 48px;
    background: linear-gradient(135deg, #111827, #1F2937);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    font-family: "Quicksand", "Trebuchet MS", system-ui, sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 4px 14px rgba(17,24,39,.2);
}

.pd-btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17,24,39,.3);
    color: #fff;
}

.pd-btn-wp {
    height: 48px;
    padding: 0 18px;
    background: #22C55E;
    color: #fff;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background .15s, transform .15s;
    white-space: nowrap;
}

.pd-btn-wp:hover {
    background: #16A34A;
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.pd-btn-fav {
    width: 48px;
    height: 48px;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    background: #F9FAFB;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #9CA3AF;
    text-decoration: none;
    transition: border-color .15s, color .15s, background .15s;
    flex-shrink: 0;
}

.pd-btn-fav:hover {
    border-color: #FCA5A5;
    color: #EF4444;
    background: #FEF2F2;
    text-decoration: none;
}

/* Sepet mesaj */
#sepet_mesaj {
    margin-bottom: 10px;
}

/* --- Stok kodu + paylaş alanı --------------------------- */
.pd-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid #F3F4F6;
    flex-wrap: wrap;
}

.pd-footer__stok {
    font-size: 12px;
    color: #9CA3AF;
}

.pd-footer__stok strong {
    color: #374151;
    font-weight: 700;
}

.pd-share {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pd-share__label {
    font-size: 11.5px;
    color: #9CA3AF;
    margin-right: 2px;
}

.pd-share__btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #F3F4F6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #6B7280;
    text-decoration: none;
    transition: background .15s, color .15s, transform .15s;
}

.pd-share__btn:hover {
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.pd-share__btn--fb:hover { background: #1877F2; }
.pd-share__btn--tw:hover { background: #1DA1F2; }
.pd-share__btn--wp:hover { background: #25D366; }
.pd-share__btn--pi:hover { background: #E60023; }
.pd-share__btn--tg:hover { background: #229ED9; }

/* --- Tabs bölümü ----------------------------------------- */
.pd-tabs-section {
    margin-top: 36px;
}

.pd-tabs {
    background: #fff;
    border: 1px solid #EAECEF;
    border-radius: 16px;
    overflow: hidden;
}

.pd-tabs__nav {
    display: flex;
    border-bottom: 1px solid #F3F4F6;
    background: #FAFBFC;
    padding: 0 4px;
    margin: 0;
    list-style: none;
    gap: 0;
}

.pd-tabs__nav .nav-item {
    flex-shrink: 0;
}

.pd-tabs__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 15px 20px;
    font-size: 13.5px;
    font-weight: 700;
    color: #9CA3AF;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: color .15s, border-color .15s;
    white-space: nowrap;
}

.pd-tabs__link:hover {
    color: #374151;
    text-decoration: none;
}

.pd-tabs__link.active {
    color: #D97706;
    border-bottom-color: #F59E0B;
}

.pd-tabs__badge {
    display: inline-block;
    background: #F3F4F6;
    color: #6B7280;
    font-size: 11px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 20px;
}

.pd-tabs__link.active .pd-tabs__badge {
    background: #FEF3C7;
    color: #D97706;
}

.pd-tabs__content {
    padding: 28px;
}

/* Açıklama içeriği tipografisi */
.pd-description {
    font-size: 14.5px;
    color: #374151;
    line-height: 1.85;
}

.pd-description h1,
.pd-description h2,
.pd-description h3,
.pd-description h4 {
    color: #111827;
    font-weight: 700;
    margin: 24px 0 10px;
    line-height: 1.3;
}

.pd-description h2 {
    font-size: 18px;
    border-bottom: 2px solid #FEF3C7;
    padding-bottom: 8px;
}

.pd-description h3 {
    font-size: 16px;
    color: #D97706;
}

.pd-description p { margin: 0 0 12px; }

.pd-description ul,
.pd-description ol {
    padding-left: 20px;
    margin: 0 0 14px;
}

.pd-description li { margin-bottom: 5px; }

.pd-description strong { color: #111827; font-weight: 700; }

.pd-description table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
    margin: 14px 0 20px;
}

.pd-description table th,
.pd-description table td {
    padding: 10px 14px;
    border: 1px solid #E5E7EB;
    text-align: left;
}

.pd-description table th {
    background: #F9FAFB;
    font-weight: 700;
    color: #111827;
}

.pd-description table tr:nth-child(even) td {
    background: #FAFBFC;
}

/* --- Önerilen ürünler ------------------------------------ */
.pd-related {
    margin-top: 40px;
    padding-top: 8px;
}

/* Vitrin başlık override */
.pd-related .section-title .title {
    font-size: 20px !important;
}

/* --- gk-detay-box (kampanya) override ------------------- */
.gk-detay-box {
    border-radius: 10px !important;
    margin-bottom: 14px !important;
}

/* --- Alternatif ürünler ---------------------------------- */
.urun-alternatifleri {
    margin: 14px 0;
}

.urun-alternatifleri label {
    font-size: 11.5px;
    font-weight: 700;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: block;
    margin-bottom: 8px;
}

.alternatif-urunler-liste {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.alternatif-urun {
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s, transform .15s;
}

.alternatif-urun:hover {
    border-color: #F59E0B;
    transform: translateY(-2px);
}

.alternatif-urun img {
    width: 68px;
    height: 88px;
    object-fit: cover;
    display: block;
}

/* --- Pile options override ------------------------------- */
.pile-options {
    margin: 14px 0;
}

.pile-options > label:first-child {
    font-size: 11.5px;
    font-weight: 700;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.pile-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 6px 0;
}

.pile-buttons input { display: none; }

.pile-buttons label {
    padding: 8px 16px;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    min-width: 80px;
    text-align: center;
    transition: border-color .15s, background .15s, color .15s;
}

.pile-buttons label:hover {
    border-color: #FDE68A;
    background: #FFFBEB;
}

.pile-buttons input:checked + label {
    background: #111827;
    color: #fff;
    border-color: #111827;
}

/* --- Mobil ---------------------------------------------- */
@media (max-width: 767px) {
    .pd-buy-card {
        position: static;
        padding: 20px 16px;
        margin-top: 16px;
    }

    .pd-title { font-size: 17px; }

    .pd-price-block__current,
    span#guncel_fiyat,
    .current-price {
        font-size: 22px !important;
    }

    .pd-cart-area { flex-direction: column; align-items: stretch; }
    .pd-qty { justify-content: center; }
    .pd-cart-btns { flex-direction: column; }
    .pd-btn-cart,
    .pd-btn-wp { width: 100%; justify-content: center; }
    .pd-btn-fav { width: 100%; }

    .pd-tabs__content { padding: 18px 16px; }
    .pd-tabs__link { padding: 13px 14px; font-size: 12.5px; }

    .pd-gallery-main { min-height: 280px; }
    .pd-gallery-main .gallery-center-content { height: auto; min-height: unset; }
    .pd-gallery-thumbs .swiper-slide { height: 60px; }
}

/* ================================================================
   URUN DETAY - UI/UX Refinements (CSS-only, no HTML/JS changes)
   Hedef class'lar: orijinal urun.php class'lari
   ================================================================ */

/* ---- 1. SAG KUTU (detail-info) -------------------------------- */
.product-detail .detail-info {
    background: #fff;
    border: 1px solid #EAECEF;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(17,24,39,.07);
    padding: 28px 26px 24px !important;
}

/* ---- 2. BASLIK ------------------------------------------------- */
.title-detail {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #111827 !important;
    line-height: 1.35 !important;
    margin-bottom: 12px !important;
}

/* ---- 3. YILDIZ + META ----------------------------------------- */
.product-detail-rating {
    margin-bottom: 14px;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: unset !important;
    padding: 8px 0 !important;
}

.product-detail-rating .product-rate-cover {
    text-align: left !important;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* ---- 4. FIYAT ALANI ------------------------------------------- */
/* Piyasa fiyatli durum (price-container) */
.price-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: fit-content !important;
    border: 1px solid #FDE68A !important;
    background: linear-gradient(135deg, #FFFBEB, #FFF9F0) !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    margin: 14px 0 16px !important;
}

.discount-label {
    background: #F59E0B !important;
    color: #fff !important;
    font-size: 11.5px !important;
    font-weight: 800 !important;
    padding: 3px 10px !important;
    border-radius: 20px !important;
    border: none !important;
    margin-bottom: 6px !important;
    display: inline-block !important;
}

.old-price {
    font-size: 14px !important;
    color: #9CA3AF !important;
    font-weight: 500 !important;
    text-decoration: line-through !important;
    margin-right: 8px !important;
}

.current-price {
    font-size: 30px !important;
    font-weight: 900 !important;
    color: #111827 !important;
    line-height: 1.1 !important;
    letter-spacing: -.5px !important;
}

/* Piyasa fiyatsiz durum (product-price) */
.product-price .current-price,
.product-price .text-brand {
    font-size: 28px !important;
    font-weight: 900 !important;
    color: #111827 !important;
}

/* ---- 5. VARYANT DROPDOWN -------------------------------------- */
.custom-dropdown {
    border: 1.5px solid #E5E7EB !important;
    border-radius: 10px !important;
    background: #F9FAFB !important;
    margin-bottom: 10px;
    transition: border-color .15s;
}

.custom-dropdown:focus-within {
    border-color: #F59E0B !important;
}

.custom-dropdown-toggle {
    padding: 10px 14px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #374151 !important;
    border-radius: 10px !important;
}

.custom-dropdown-menu {
    border-radius: 0 0 10px 10px !important;
    border: 1px solid #E5E7EB !important;
    border-top: none !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.1) !important;
    padding: 6px !important;
}

.custom-dropdown-item {
    border-radius: 6px !important;
    padding: 8px 10px !important;
    font-size: 13.5px !important;
    color: #374151 !important;
}

.custom-dropdown-item:hover {
    background: #FFFBEB !important;
    color: #D97706 !important;
}

.custom-dropdown-item.active {
    background: #111827 !important;
    color: #fff !important;
    border-color: #111827 !important;
}

.attr-detail {
    margin-bottom: 12px !important;
}

/* ---- 6. EN/BOY INPUT'LARI ------------------------------------ */
.product-custom-options input[type="number"] {
    border: 1.5px solid #D1D5DB !important;
    border-radius: 8px !important;
    padding: 10px 12px !important;
    font-size: 15px !important;
    background: #F9FAFB !important;
    color: #111827 !important;
    transition: border-color .2s, box-shadow .2s !important;
}

.product-custom-options input[type="number"]:focus {
    border-color: #F59E0B !important;
    box-shadow: 0 0 0 3px rgba(245,158,11,.15) !important;
    background: #fff !important;
    outline: none !important;
}

/* ---- 7. SEPETE EKLE + WP BUTONLARI --------------------------- */
.detail-extralink {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0 14px;
    flex-wrap: wrap;
}

.detail-qty {
    display: flex;
    align-items: center;
  justify-content: center;
    border: 1.5px solid #E5E7EB !important;
    border-radius: 10px !important;
    background: #F9FAFB !important;
    overflow: hidden;
  height: 44px;
    flex-shrink: 0;
}

.detail-extralink .detail-qty {
  float: none;
  max-width: none;
  width: auto;
  min-width: 132px;
  padding: 0;
  margin: 0;
}

/* ---- Peşin Fiyatına 3 Taksit kampanyası ---- */
.pf3-news-item strong {
  color: #fff7ed;
  font-weight: 700;
}

.pf3-hero-strip-wrap {
  padding: 4px 0 10px;
}

.pf3-hero-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 18px;
  align-items: center;
  padding: 24px 28px;
  border: 1px solid #FDE6BE;
  border-radius: 24px;
  background: linear-gradient(135deg, #FFFDF9 0%, #FFF7ED 52%, #FFFFFF 100%);
  box-shadow: 0 18px 45px rgba(180, 83, 9, 0.08);
}

.pf3-hero-strip__content h2 {
  margin: 12px 0 8px;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
  color: #111827;
}

.pf3-hero-strip__content p {
  margin: 0;
  max-width: 620px;
  color: #6B7280;
  font-size: 15px;
}

.pf3-badge,
.pf3-chip,
.pf3-progress-box__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
}

.pf3-badge {
  padding: 7px 14px;
  background: #111827;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.01em;
}

.pf3-hero-strip__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.pf3-chip {
  padding: 9px 14px;
  background: rgba(255,255,255,0.82);
  border: 1px solid #F3D3A0;
  color: #7C2D12;
  font-size: 13px;
}

.pf3-hero-strip__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  background: #111827;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.18);
}

.pf3-hero-strip__cta:hover {
  color: #fff;
  transform: translateY(-1px);
}

.pf3-inline-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 16px 0 0;
  padding: 14px 16px;
  border: 1px solid #F3D3A0;
  border-radius: 16px;
  background: #FFF9F1;
}

.pf3-inline-note.is-eligible,
.pf3-progress-box.is-eligible,
.pf3-checkout-note.is-eligible {
  border-color: #BBF7D0;
  background: #F0FDF4;
}

.pf3-inline-note.is-progress,
.pf3-checkout-note.is-info {
  border-color: #FDE6BE;
  background: #FFF9F1;
}

.pf3-inline-note--bank {
  margin: 18px 0 26px;
}

.pf3-inline-note__icon,
.pf3-checkout-note__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #FFF1D6;
  color: #D97706;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex: 0 0 auto;
}

.pf3-inline-note.is-eligible .pf3-inline-note__icon,
.pf3-checkout-note.is-eligible .pf3-checkout-note__icon {
  background: #DCFCE7;
  color: #15803D;
}

.pf3-inline-note__content,
.pf3-checkout-note__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pf3-inline-note__title,
.pf3-checkout-note__content strong {
  color: #111827;
  font-size: 14px;
  line-height: 1.45;
}

.pf3-inline-note__text,
.pf3-checkout-note__content span,
.pf3-inline-note__foot,
.pf3-progress-box__text,
.pf3-progress-box__foot {
  color: #6B7280;
  font-size: 13px;
  line-height: 1.6;
}

.pf3-progress-box {
  margin-top: 8px;
  padding: 16px 18px;
  border: 1px solid #F3D3A0;
  border-radius: 18px;
  background: #FFF9F1;
}

.pf3-progress-box__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.pf3-progress-box__head strong {
  display: block;
  color: #111827;
  font-size: 14px;
  margin-bottom: 2px;
}

.pf3-progress-box__head span {
  color: #6B7280;
  font-size: 12px;
}

.pf3-progress-box__badge {
  padding: 7px 12px;
  background: #111827;
  color: #fff;
  font-size: 11px;
}

.pf3-progress-box.is-eligible .pf3-progress-box__badge {
  background: #15803D;
}

.pf3-progress-box__bar {
  width: 100%;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #F3F4F6;
  margin-bottom: 10px;
}

.pf3-progress-box__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #F59E0B 0%, #D97706 100%);
}

.pf3-progress-box.is-eligible .pf3-progress-box__bar span {
  background: linear-gradient(90deg, #22C55E 0%, #15803D 100%);
}

.pf3-checkout-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 14px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid #F3D3A0;
  background: #FFF9F1;
}

.pf3-mobile-sticky {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 14px;
  z-index: 16;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.94);
  color: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.22);
}

.pf3-mobile-sticky i {
  color: #FBBF24;
  font-size: 18px;
}

.pf3-mobile-sticky span {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
}

.paytr-installment {
  margin-top: 16px;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.paytr-installment--cart {
  margin-top: 4px;
}

.cart-totals#alan1 .table.no-border {
  width: 100% !important;
  table-layout: fixed;
}

.cart-totals#alan1 .table.no-border > tbody > tr > td {
  max-width: 100%;
}

.cart-totals#alan1 .paytr-installment--cart {
  width: 100%;
  max-width: 100%;
}

.cart-totals#alan1 .paytr-installment--cart .paytr-installment__panel {
  max-width: 100%;
  overflow: hidden;
}

.cart-totals#alan1 .paytr-installment--cart .paytr-installment__mount {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

.paytr-installment__info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 16px 12px;
}

.paytr-installment__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #FFF7ED;
  color: #D97706;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 18px;
}

.paytr-installment__text strong {
  display: block;
  color: #111827;
  font-size: 14px;
  line-height: 1.5;
}

.paytr-installment__text span {
  display: block;
  margin-top: 3px;
  color: #6B7280;
  font-size: 13px;
  line-height: 1.55;
}

.paytr-installment__toggle {
  margin: 0 16px 16px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 14px 28px rgba(217, 119, 6, 0.18);
}

.paytr-installment__toggle:hover {
  transform: translateY(-1px);
}

.paytr-installment__panel {
  padding: 0 16px 16px;
  border-top: 1px solid #F3F4F6;
  background: #FCFCFD;
  overflow: hidden;
}

.paytr-installment__caption {
  padding: 14px 0 12px;
  color: #6B7280;
  font-size: 12px;
  line-height: 1.5;
}

.paytr-installment__mount {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.paytr-installment__mount #paytr_taksit_tablosu {
  clear: both;
  font-size: 12px;
  min-width: max-content;
  text-align: left;
  font-family: Arial, sans-serif;
  white-space: nowrap;
}

.paytr-installment__mount #paytr_taksit_tablosu::before {
  display: table;
  content: " ";
}

.paytr-installment__mount #paytr_taksit_tablosu::after {
  content: "";
  clear: both;
  display: table;
}

.paytr-installment__mount .taksit-tablosu-wrapper {
  margin: 5px;
  width: 280px;
  padding: 12px;
  cursor: default;
  text-align: left;
  display: inline-block;
  vertical-align: top;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  background: #fff;
}

.paytr-installment__mount .taksit-logo img {
  max-height: 28px;
  padding-bottom: 10px;
}

.paytr-installment__mount .taksit-tutari-text {
  float: left;
  width: 126px;
  color: #9CA3AF;
  margin-bottom: 5px;
}

.paytr-installment__mount .taksit-tutar-wrapper {
  display: flex !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  overflow: hidden !important;
  background-color: #F9FAFB;
}

.paytr-installment__mount .taksit-tutar-wrapper:hover {
  background-color: #F3F4F6;
}

.paytr-installment__mount .taksit-tutari {
  float: none !important;
  width: 50% !important;
  box-sizing: border-box !important;
  text-align: center !important;
  padding: 6px 0;
  color: #374151;
  border: 2px solid #fff;
}

.paytr-installment__mount .taksit-tutari-text {
  float: none !important;
  width: 50% !important;
  margin-bottom: 0 !important;
  box-sizing: border-box !important;
  text-align: center !important;
  padding: 6px 0;
}

.paytr-installment__mount .taksit-baslik {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
  width: 100% !important;
}

.paytr-installment__mount .taksit-baslik > * {
  flex: 1 1 50% !important;
  min-width: 0;
  text-align: center !important;
}

.paytr-installment__mount .taksit-tutari-bold {
  font-weight: bold;
}

.paytr-installment__empty {
  padding: 14px;
  color: #6B7280;
  font-size: 13px;
}

.paytr-installment__campaign-note {
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #FDE68A;
  background: #FFFBEB;
  color: #92400E;
  font-size: 12px;
  line-height: 1.45;
  text-align: left;
}

@media (max-width: 991px) {
  .pf3-hero-strip {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 20px;
  }

  .pf3-hero-strip__content h2 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .pf3-hero-strip-wrap {
    padding-top: 0;
  }

  .pf3-inline-note {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .pf3-mobile-sticky {
    display: inline-flex;
  }

  .pf3-mobile-sticky--cart {
    bottom: 16px;
  }

  .paytr-installment {
    margin-top: 14px;
    border-radius: 16px;
  }

  .paytr-installment__info {
    padding: 14px;
  }

  .paytr-installment__toggle {
    width: calc(100% - 28px);
    margin: 0 14px 14px;
  }

  .paytr-installment__panel {
    padding: 0 14px 14px;
  }

  .paytr-installment__mount .taksit-tablosu-wrapper {
    margin: 5px 8px 5px 0;
  }
}

.qty-down,
.qty-up {
  width: 44px;
  height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
  border: 0;
  background: transparent;
  cursor: pointer;
    transition: background .15s, color .15s;
    text-decoration: none;
}

.detail-extralink .detail-qty > a,
.detail-extralink .detail-qty > button {
  position: static;
  right: auto;
  top: auto;
  bottom: auto;
}

.qty-down:hover,
.qty-up:hover {
    background: #F3F4F6;
    color: #111827;
    text-decoration: none;
}

.qty-val {
  min-width: 44px;
  padding: 0 6px;
  line-height: 44px;
    text-align: center;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #111827 !important;
}

.product-extra-link2 {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
}

/* Sepete Ekle */
.button-add-to-cart {
    height: 48px !important;
    padding: 0 24px !important;
    background: linear-gradient(135deg, #111827, #1F2937) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: transform .15s, box-shadow .15s !important;
    box-shadow: 0 4px 14px rgba(17,24,39,.2) !important;
    white-space: nowrap;
}

.button-add-to-cart:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(17,24,39,.3) !important;
    color: #fff !important;
}

/* WhatsApp butonu */
.whatsapp_buton {
    height: 48px !important;
    padding: 0 18px !important;
    background: #22C55E !important;
    color: #fff !important;
    border-radius: 10px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: background .15s, transform .15s !important;
    white-space: nowrap !important;
}

.whatsapp_buton:hover {
    background: #16A34A !important;
    transform: translateY(-1px) !important;
    color: #fff !important;
    text-decoration: none !important;
}

.ozelwp {
    font-size: 1.15rem !important;
}

/* Favori butonu */
.product-extra-link2 .action-btn {
    width: 48px;
    height: 48px;
    border: 1.5px solid #E5E7EB !important;
    border-radius: 10px !important;
    background: #F9FAFB !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.1rem !important;
    color: #9CA3AF !important;
    text-decoration: none !important;
    transition: border-color .15s, color .15s, background .15s !important;
    flex-shrink: 0;
}

.product-extra-link2 .action-btn:hover {
    border-color: #FCA5A5 !important;
    color: #EF4444 !important;
    background: #FEF2F2 !important;
}

/* ---- 8. PAYLAS ALANI ------------------------------------------ */
.paylas {
    display: flex;
    gap: 7px;
    align-items: center;
    margin-top: 14px;
    flex-wrap: wrap;
}

.paylas a {
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    background: #F3F4F6 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    color: #6B7280 !important;
    text-decoration: none !important;
    transition: background .15s, color .15s, transform .15s !important;
}

.paylas a:hover {
    transform: translateY(-1px) !important;
    color: #fff !important;
}

.paylas a.facebook:hover  { background: #1877F2 !important; }
.paylas a.twitter:hover   { background: #1DA1F2 !important; }
.paylas a.linkedin:hover  { background: #0A66C2 !important; }
.paylas a.whatsapp:hover  { background: #25D366 !important; }
.paylas a.telegram:hover  { background: #229ED9 !important; }
.paylas a.pinterest:hover { background: #E60023 !important; }

/* ---- 9. GALERI ------------------------------------------------- */
.gallery-main-wrapper {
    background: #F9FAFB !important;
    border-radius: 14px !important;
    border: 1px solid #EAECEF;
    min-height: auto !important;
}

.gallery-center-content {
    height: auto !important;
    min-height: unset !important;
}

.mySwiperThumbs {
    margin-top: 10px !important;
}

.mySwiperThumbs .swiper-slide {
    border: 2px solid #E5E7EB !important;
    border-radius: 10px !important;
    height: 80px !important;
    opacity: .55 !important;
    transition: opacity .2s, border-color .2s !important;
}

.mySwiperThumbs .swiper-slide:hover {
    opacity: .85 !important;
}

.mySwiperThumbs .swiper-slide-thumb-active {
    border-color: #F59E0B !important;
    opacity: 1 !important;
}

/* ---- 10. TABS -------------------------------------------------- */
.tab-style3 {
    margin-top: 32px;
}

.tab-style3 .nav-tabs {
    border-bottom: 2px solid #F3F4F6 !important;
    gap: 0;
    background: #FAFBFC;
    border-radius: 12px 12px 0 0;
    padding: 0 6px;
}

.tab-style3 .nav-link {
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #9CA3AF !important;
    padding: 14px 20px !important;
    border: none !important;
    border-bottom: 3px solid transparent !important;
    border-radius: 0 !important;
    text-transform: none !important;
    transition: color .15s, border-color .15s !important;
    white-space: nowrap;
}

.tab-style3 .nav-link:hover {
    color: #374151 !important;
    border-bottom-color: #E5E7EB !important;
}

.tab-style3 .nav-link.active {
    color: #D97706 !important;
    border-bottom-color: #F59E0B !important;
    background: transparent !important;
}

.shop_info_tab {
    background: #fff;
    border: 1px solid #EAECEF;
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 28px 24px !important;
}

/* ---- 11. ACIKLAMA ICERIGI ------------------------------------ */
.product-info .tab-pane > div,
.shop_info_tab #aciklama > div {
    font-size: 14.5px !important;
    color: #374151 !important;
    line-height: 1.9 !important;
}

.shop_info_tab #aciklama h1,
.shop_info_tab #aciklama h2,
.shop_info_tab #aciklama h3,
.shop_info_tab #aciklama h4 {
    color: #111827;
    font-weight: 700;
    margin: 22px 0 10px;
    line-height: 1.3;
}

.shop_info_tab #aciklama h2 {
    font-size: 17px;
    padding-bottom: 8px;
    border-bottom: 2px solid #FEF3C7;
}

.shop_info_tab #aciklama h3 {
    font-size: 15px;
    color: #D97706;
}

.shop_info_tab #aciklama p {
    margin-bottom: 12px;
}

.shop_info_tab #aciklama table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
    margin: 12px 0 18px;
}

.shop_info_tab #aciklama table th,
.shop_info_tab #aciklama table td {
    padding: 9px 13px;
    border: 1px solid #E5E7EB;
    text-align: left;
}

.shop_info_tab #aciklama table th {
    background: #F9FAFB;
    font-weight: 700;
    color: #111827;
}

.shop_info_tab #aciklama table tr:nth-child(even) td {
    background: #FAFBFC;
}

/* ---- 12. GK DETAY BOX ---------------------------------------- */
.gk-detay-box {
    border-radius: 10px !important;
    margin: 12px 0 !important;
}

/* ---- 13. PILE SPACING ---------------------------------------- */
.pile-options {
    margin: 14px 0 !important;
}

.pile-options > label:first-child {
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    display: block;
    margin-bottom: 7px;
}

.pile-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 6px 0 12px !important;
}

.pile-buttons label {
    padding: 8px 16px !important;
    border: 1.5px solid #E5E7EB !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #374151 !important;
    transition: border-color .15s, background .15s !important;
}

.pile-buttons label:hover {
    border-color: #FDE68A !important;
    background: #FFFBEB !important;
}

.pile-buttons input:checked + label {
    background: #111827 !important;
    color: #fff !important;
    border-color: #111827 !important;
}

/* ---- 14. ALTERNATIF URUNLER ---------------------------------- */
.alternatif-urun {
    border-radius: 10px !important;
    overflow: hidden;
    border: 2px solid #E5E7EB !important;
    transition: border-color .2s, transform .15s !important;
}

.alternatif-urun:hover {
    border-color: #F59E0B !important;
    transform: translateY(-2px) !important;
}

/* ---- 15. GENEL BLOK SPACING --------------------------------- */
.product-detail .row.mt-30 {
    margin-top: 20px !important;
}

.product-info {
    margin-top: 28px !important;
}

.label-with-tooltip-sag {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

/* ---- 16. MOBIL ---------------------------------------------- */
@media (max-width: 767px) {
    .product-detail .detail-info {
        padding: 18px 14px !important;
        margin-top: 14px;
    }
    .title-detail { font-size: 17px !important; }
    .current-price { font-size: 22px !important; }
    .detail-extralink { flex-direction: column; align-items: stretch; }
    .detail-qty { justify-content: center; }
    .detail-extralink .detail-qty { width: 100%; min-width: 0; }
    .product-extra-link2 { flex-direction: column; }
    .button-add-to-cart,
    .whatsapp_buton { width: 100% !important; justify-content: center !important; }
    .product-extra-link2 .action-btn { width: 100% !important; }
    .gallery-center-content { height: auto !important; min-height: unset !important; }
    .mySwiperThumbs .swiper-slide { height: 60px !important; }
}

/* ======================================================
   ORDER COMPLETE PAGE (siparis-tamamla) — Modern UI
   ====================================================== */
.ot-page {
    max-width: 780px;
    margin: 0 auto;
    padding: 24px 16px 48px;
    font-family: inherit;
}

/* HERO */
.ot-hero {
    text-align: center;
    padding: 40px 24px 32px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
    margin-bottom: 24px;
}
.ot-hero__icon { margin-bottom: 16px; }
.ot-hero__title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 14px;
}
.ot-hero__sub {
    font-size: 15px;
    color: #555;
    margin: 12px 0 0;
}
.ot-hero__meta {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.ot-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .3px;
}
.ot-badge--id   { background: #f1f5f9; color: #475569; }
.ot-badge--total{ background: #DCFCE7; color: #15803d; }

/* CARD */
.ot-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    margin-bottom: 24px;
    overflow: hidden;
    display: flex;
    gap: 0;
}
.ot-card--warn { border-left: 5px solid #f59e0b; }
.ot-card__icon-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 24px 20px;
    font-size: 28px;
}
.ot-card__icon-wrap--warn { color: #f59e0b; background: #fffbeb; }
.ot-card__body { padding: 20px 20px 20px 0; flex: 1; }
.ot-card__title { font-size: 16px; font-weight: 700; color: #1a1a2e; margin: 0 0 8px; }
.ot-card__text  { font-size: 14px; color: #555; margin: 0 0 12px; }

/* ALERTS */
.ot-alert {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13.5px;
    margin-bottom: 10px;
    line-height: 1.5;
}
.ot-alert i { flex-shrink: 0; margin-top: 2px; }
.ot-alert--danger { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.ot-alert--timer  { background: #fff7ed; color: #c2410c; border: 1px solid #fed7aa; }

/* REFERANS KOD */
.ot-ref-row   { margin-top: 14px; }
.ot-ref-label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; color: #94a3b8; letter-spacing: .6px; margin-bottom: 6px; }
.ot-ref-box   { display: flex; align-items: center; gap: 8px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px; padding: 10px 12px; }
.ot-ref-code  { font-size: 15px; font-weight: 700; color: #1e293b; flex: 1; letter-spacing: .5px; word-break: break-all; }

/* COPY BUTTON */
.ot-copy-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}
.ot-copy-btn:hover  { background: #2563eb; }
.ot-copy-btn--done  { background: #22c55e !important; }
.ot-copy-btn--sm    { padding: 4px 8px; font-size: 13px; }

/* SECTION TITLE */
.ot-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 14px;
    padding-left: 4px;
    border-left: 4px solid #3b82f6;
    padding-left: 10px;
}

/* BANK GRID */
.ot-bank-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
@media (max-width: 600px) { .ot-bank-grid { grid-template-columns: 1fr; } }

.ot-bank-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.ot-bank-card__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e9ecef;
}
.ot-bank-card__logo {
    height: 36px;
    max-width: 80px;
    object-fit: contain;
}
.ot-bank-card__logo-placeholder {
    width: 40px; height: 40px;
    background: #e2e8f0;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #94a3b8;
}
.ot-bank-card__name { font-size: 14px; font-weight: 700; color: #1e293b; }
.ot-bank-card__body { padding: 14px 16px; flex: 1; }
.ot-bank-card__desc { font-size: 13px; color: #555; margin: 0 0 10px; line-height: 1.6; }
.ot-iban-row {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    border-radius: 6px;
    padding: 6px 10px;
    margin-top: 6px;
}
.ot-iban-val { font-size: 12px; font-weight: 700; color: #1e293b; flex: 1; letter-spacing: .5px; word-break: break-all; }

/* CTA BLOCK */
.ot-cta-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.ot-cta-block__text { flex: 1; min-width: 200px; }
.ot-cta-block__text strong { display: block; font-size: 15px; font-weight: 700; color: #1e3a8a; margin-bottom: 4px; }
.ot-cta-block__text span   { font-size: 13px; color: #3b5998; }

/* ACTION ROW */
.ot-action-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

/* BUTTONS */
.ot-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    border: none;
    transition: background-color .2s, border-color .2s, color .2s, transform .2s;
    white-space: nowrap;
}
.ot-btn--primary   { background: #3b82f6; color: #fff !important; }
.ot-btn--primary:hover { background: #2563eb; }
.ot-btn--outline   { background: #fff; color: #3b82f6 !important; border: 1.5px solid #3b82f6; }
.ot-btn--outline:hover { background: #eff6ff; }
.ot-btn--whatsapp  { background: #25d366; color: #fff !important; }
.ot-btn--whatsapp:hover { background: #1ebe5d; }
.ot-btn--ghost     { background: #f1f5f9; color: #475569 !important; }
.ot-btn--ghost:hover { background: #e2e8f0; }

/* TRUST ROW */
.ot-trust-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 32px;
    box-shadow: 0 1px 8px rgba(0,0,0,.05);
}
.ot-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: #475569;
    font-weight: 500;
}
.ot-trust-item i { font-size: 18px; color: #3b82f6; }

/* SUGGEST SECTION */
.ot-suggest { margin-bottom: 24px; }
.ot-suggest__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.ot-suggest__bar  { width: 4px; height: 22px; background: #3b82f6; border-radius: 4px; flex-shrink: 0; }
.ot-suggest__title{ font-size: 17px; font-weight: 700; color: #1a1a2e; margin: 0; }
.ot-suggest__sub  { font-size: 13px; color: #94a3b8; margin-left: auto; }
.ot-suggest__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
@media (max-width: 768px) { .ot-suggest__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ot-suggest__grid { grid-template-columns: 1fr 1fr; } }
.ot-sug-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 8px rgba(0,0,0,.06);
    overflow: hidden;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s;
}
.ot-sug-card:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,.1); }
.ot-sug-card__img { aspect-ratio: 1; overflow: hidden; }
.ot-sug-card__img img { width: 100%; height: 100%; object-fit: cover; }
.ot-sug-card__body { padding: 10px 12px; flex: 1; }
.ot-sug-card__name { font-size: 13px; color: #1e293b; font-weight: 500; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ot-sug-card__price{ font-size: 14px; font-weight: 700; color: #3b82f6; }

/* RESPONSIVE */
@media (max-width: 600px) {
    .ot-card { flex-direction: column; }
    .ot-card__icon-wrap { padding: 16px 16px 0; }
    .ot-card__body { padding: 12px 16px 16px; }
    .ot-cta-block { flex-direction: column; align-items: flex-start; }
    .ot-action-row { flex-direction: column; }
    .ot-btn { justify-content: center; width: 100%; }
}

/* ============================================================
   urun.php inline styles — moved to main.css
   ============================================================ */

/* --- Gallery --- */
.gallery-main-wrapper {
    background-color: #f8f8f8;
    border-radius: 10px;
    display: flex;
    align-items: center;
}
.gallery-center-content {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.gallery-center-content img,
.gallery-center-content video {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 10px;
    display: block;
}
.mySwiperThumbs .swiper-slide {
    opacity: 0.6;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid #ccc;
    height: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mySwiperThumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #ff6600;
}
.mySwiperThumbs img {
    height: 100%;
    width: auto;
}
.video-thumb {
    width: 100%;
    height: 100%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 13px;
    border-radius: 8px;
}

/* --- Input Container (dimension inputs) --- */
.input-container {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 10px;
}
.input-fields {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.image-container {
    flex-shrink: 0;
}
.image-container img {
    max-width: 600px;
    height: auto;
}
.product-custom-options label {
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-custom-options label:before {
    content: "⬌";
    font-size: 18px;
}
.product-custom-options label[for="boy"]:before {
  content: "⬍";
}
.product-custom-options label.boy-label:before,
.product-custom-optionssnr label.boy-label:before {
  content: "↕" !important;
}
.product-custom-optionsbosluk label:before {
    content: "-";
    font-size: 18px;
}
.product-custom-optionssnr label:before {
    content: "⬍";
    font-size: 18px;
}
.product-custom-options input[type="number"] {
    width: 100%;
    max-width: 200px;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 5px;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.product-custom-options input[type="number"]:focus {
    border-color: #ff6600;
    box-shadow: 0 0 8px rgba(255, 102, 0, 0.5);
    outline: none;
}

/* --- Urun Alternatifleri --- */
.urun-alternatifleri {
    margin-top: 15px;
}
.urun-alternatifleri label {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}
.alternatif-urunler-liste {
    display: flex;
    gap: 10px;
}
.alternatif-urun {
    border: 2px solid transparent;
    transition: border 0.3s;
}
.alternatif-urun:hover {
    border: 2px solid orange;
}
.alternatif-urun img {
    width: 79px;
    height: 102px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
}

/* --- Pile Options --- */
.pile-options {
    margin-top: 15px;
}
.pile-options label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}
.pile-buttons {
    display: flex;
    gap: 10px;
}
.pile-buttons input {
    display: none;
}
.pile-buttons label {
    padding: 8px 15px;
    border: 1px solid #999;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    min-width: 90px;
    text-transform: capitalize;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.pile-buttons label:hover {
    background-color: #f0f0f0;
}
.pile-buttons input:checked + label {
    background-color: #666;
    color: white;
    border-color: #666;
}

/* --- Stock Code & Share --- */
.stok_kod_durum {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.paylas {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}
.paylas a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f1f1f1;
    transition: background-color 0.3s ease, color 0.3s ease;
    color: #555;
    text-decoration: none;
    font-size: 18px;
}
.paylas a:hover {
    background-color: #007bff;
    color: white;
}

/* --- Comments, Tooltips, Pricing --- */
.cevap-box {
    display: flex;
    align-items: flex-start;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
    margin-top: 10px;
    border: 1px solid #e1e1e1;
    font-size: 14px;
    color: #333;
    position: relative;
}
.cevap-box::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 20px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent #f8f9fa transparent;
}
.cevap-box strong {
    font-weight: bold;
    color: #333;
    margin-right: 5px;
}
.cevap-kullanici {
    font-weight: bold;
    color: #333;
    margin-right: 8px;
}
.cevap-zaman {
    font-size: 12px;
    color: #888;
    margin-left: auto;
}
.cevap-icerik {
    margin-top: 5px;
    font-size: 14px;
}
.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 2px solid red;
    padding: 10px;
    border-radius: 8px;
    background-color: white;
    width: fit-content;
}
.discount-label {
    background-color: rgba(255,0,0,0.1);
    color: red;
    font-size: 14px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    text-align: center;
    display: inline-block;
}
.old-price {
    font-size: 18px;
    color: gray;
    text-decoration: line-through;
    font-weight: bold;
    margin-right: 10px;
}
.current-price {
    font-size: 25px;
    color: red;
    font-weight: bold;
}
.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.tooltip-icon {
    background-color: #000;
    color: white;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #000;
}
.tooltip-text {
    visibility: hidden;
    width: 350px;
    background-color: rgba(0,0,0,0.9);
    color: white;
    text-align: left;
    padding: 12px;
    border-radius: 6px;
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s, bottom 0.3s;
    font-size: 14px;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}
@media screen and (max-width: 600px) {
    .tooltip-container .tooltip-icon,
    .tooltip-container .tooltip-text { display: none !important; }
}
.tooltip-arrow {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: rgba(0,0,0,0.9) transparent transparent transparent;
}
.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    bottom: 130%;
}
.yellow-bold { color: red; font-weight: bold; }
.yellow-snr { color: white; background-color: #000; font-weight: bold; }
.yellow-text { color: red; font-weight: bold; font-size: 15px; }
.label-with-tooltip-sag { display: flex; gap: 5px; }
.label-with-tooltip-sol { display: left; align-items: center; gap: 5px; }
.product-all-details {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    border-radius: 30px;
    padding: 10px 20px;
    width: fit-content;
    margin: 20px auto;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    font-size: 17px;
    position: relative;
}
.product-all-details::before,
.product-all-details::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 1px;
    background-color: #ddd;
    top: 50%;
    transform: translateY(-50%);
}
.product-all-details::before { left: -60px; }
.product-all-details::after { right: -60px; }

/* --- Responsive Input Container (urun_turu=4) --- */
@media only screen and (max-width: 768px) {
    .input-container {
        flex-direction: column;
        align-items: center;
    }
    .input-fields { width: 100%; }
    .image-container { width: 100%; text-align: center; }
}

/* --- Comment Review Modal --- */
#yorumModal {
    position: fixed;
    z-index: 99999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}
.yorum-icerik {
    position: relative;
    background: white;
    border-radius: 8px;
    max-width: 900px;
    width: 95%;
    max-height: 90%;
    display: flex;
    overflow: hidden;
}
.yorum-sol {
    flex: 1;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
#yorumBuyukFoto { max-width: 100%; max-height: 100%; object-fit: contain; }
.yorum-icerik--no-photo .yorum-sol { display: none; }
.yorum-icerik--no-photo .yonTus { display: none; }
.yorum-icerik--no-photo .yorum-sag { flex: 1 1 100%; }
.yorum-sag {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
}
#kapatBtn {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 30px;
    color: black;
    cursor: pointer;
    z-index: 2;
}
.yorum-puan { color: #f39c12; font-size: 20px; }
.yorum-tarih { font-size: 12px; color: #888; }
.yorum-metin { font-size: 14px; color: #333; white-space: pre-line; }
.yonTus {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;
    background: rgba(0,0,0,0.4);
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
}
#oncekiFoto { left: 10px; }
#sonrakiFoto { right: 10px; }
@media (max-width: 768px) {
    .yorum-icerik { flex-direction: column; }
    .yorum-sag { padding: 15px; }
}
.yorum-kullanici { font-size: 14px; font-weight: bold; color: #000; }

/* --- File Upload & Custom Dropdown --- */
.uploaddis {
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background-color: #fafafa;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    position: relative;
    cursor: pointer;
}
.uploaddis:hover { border-color: #888; background-color: #f0f0f0; }
.uploaddis .upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.uploaddis .upload .metin { font-size: 14px; font-weight: 600; margin-bottom: 10px; color: #333; }
.uploaddis .upload .icon { font-size: 30px; color: #007bff; transition: color 0.3s ease; }
.uploaddis .upload .icon:hover { color: #0056b3; }
.uploaddis.aktif .yuklendi { display: block; margin-top: 10px; position: relative; }
.uploaddis.aktif .yuklendi img {
    max-width: 100%;
    max-height: 150px;
    border-radius: 6px;
    object-fit: contain;
    border: 1px solid #ddd;
}
.uploaddis.aktif .yuklendi .icon {
    display: none;
    position: absolute;
    top: 5px; right: 5px;
    background-color: rgba(0,0,0,0.6);
    color: white;
    padding: 5px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
}
.custom-dropdown {
    position: relative;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    user-select: none;
}
.custom-dropdown-toggle { padding: 10px; font-size: 14px; cursor: pointer; font-weight: bold; }
.custom-dropdown-menu {
    display: none;
    position: absolute;
    width: 100%;
    background-color: white;
    border: 1px solid #ddd;
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
    z-index: 999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    list-style: none;
}
.custom-dropdown.open .custom-dropdown-menu { display: block; }
.custom-dropdown-item {
    display: inline-block;
    padding: 6px 12px;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    margin: 4px;
    cursor: pointer;
}
.custom-dropdown-item:hover { background-color: #eee; }
.custom-dropdown-item.active { background-color: #333; color: #fff; border-color: #333; }
.dropdown-search-input {
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
}

/* ---- SSS (FAQ) Tab ---- */
.sss-wrapper { padding: 30px 0; }
.sss-baslik {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}
.sss-wrapper .accordion-header {
    font-size: 15px;
    margin: 0;
}
.sss-wrapper .accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 8px !important;
    margin-bottom: 10px;
    overflow: hidden;
}
.sss-wrapper .collapsing {
    transition: height 0.3s ease-in-out;
}
.sss-wrapper .accordion-button {
    font-weight: 600;
    font-size: 15px;
    color: #333;
    background-color: #fafafa;
}
.sss-wrapper .accordion-button:not(.collapsed) {
    color: #ff6600;
    background-color: #fff8f3;
    box-shadow: none;
}
.sss-wrapper .accordion-button::after {
    filter: none;
}
.sss-wrapper .accordion-button:not(.collapsed)::after {
    filter: invert(42%) sepia(94%) saturate(1352%) hue-rotate(1deg) brightness(99%) contrast(101%);
}
.sss-wrapper .accordion-body {
    font-size: 14px;
    line-height: 1.75;
    color: #555;
}

/* ---- Dahili Kategori Linkleri (blog + kategori) ---- */
.blg-kat-linkler {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 14px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 24px 0;
    font-size: 0.85rem;
}
.blg-kat-linkler strong {
    color: #555;
    margin-right: 4px;
}
.blg-kat-linkler a {
    display: inline-block;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 3px 14px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.blg-kat-linkler a:hover {
    background: #ffe0e0;
    border-color: #e53935;
    color: #c62828;
}

/* ---- Ürün görüntülenme sayacı ---- */
.urun-goruntuleme {
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 6px;
}

/* ---- Ürün mini rehber linkleri ---- */
.urun-mini-rehber {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 14px 16px;
    background: #f8f9fa;
    border-left: 3px solid #e53935;
    border-radius: 0 8px 8px 0;
    font-size: 0.85rem;
}
.urun-mini-rehber__baslik {
    width: 100%;
    font-weight: 600;
    color: #555;
    font-size: 0.82rem;
    margin-bottom: 4px;
}
.urun-mini-rehber__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #1565C0;
    text-decoration: none;
    padding: 4px 12px;
    background: #fff;
    border: 1px solid #bbdefb;
    border-radius: 20px;
    font-size: 0.82rem;
    transition: background 0.2s, color 0.2s;
}
.urun-mini-rehber__link:hover {
    background: #e53935;
    color: #fff;
    border-color: #e53935;
}

/* ---- Kategori kısa özet (H1 altı) ---- */
.kat-kisa-ozet {
    font-size: 0.92rem;
    color: #666;
    margin: -8px 0 14px;
    line-height: 1.6;
}

/* ---- Kategori FAQ Bloğu ---- */
.kat-faq-blok {
    margin: 32px auto 10px;
    padding: 0;
    max-width: 1352px;
}
.kat-faq-blok__baslik {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e53935;
}
.kat-faq-item {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
}
.kat-faq-item__soru {
    margin: 0;
    font-size: 1rem;
}
.kat-faq-item__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: #fafafa;
    border: none;
    padding: 13px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}
.kat-faq-item__btn:hover,
.kat-faq-item__btn--open {
    background: #fff5f5;
    color: #c62828;
}
.kat-faq-item__btn i {
    color: #e53935;
    font-size: 1rem;
    flex-shrink: 0;
}
.kat-faq-item__cevap {
    padding: 0;
}
.kat-faq-item .collapsing {
    transition: height 0.3s ease-in-out;
}
.kat-faq-item__cevap p {
    padding: 12px 16px 14px 40px;
    margin: 0;
}
.kat-faq-item__cevap p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ── Kategori alt kategori chip linkleri ──────────────── */
.kat-alt-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
    margin: 8px 0 16px;
}
.kat-alt-chip {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #dce3ea;
    font-size: 0.8rem;
    color: #444;
    background: #f8fafc;
    text-decoration: none;
    transition: background 0.18s, border-color 0.18s;
    white-space: nowrap;
}
.kat-alt-chip:hover {
    background: #3bb77e;
    border-color: #3bb77e;
    color: #fff;
}

/* ── Blog makale FAQ bloğu ────────────────────────────── */
.blg-faq-blok {
    margin: 28px 0 24px;
    border: 1px solid #e4eaf0;
    border-radius: 8px;
    overflow: hidden;
}
.blg-faq-blok__baslik {
    font-size: 1rem;
    font-weight: 700;
    color: #253d4e;
    padding: 12px 18px;
    background: #f4f8fb;
    margin: 0;
    border-bottom: 1px solid #e4eaf0;
}
.blg-faq-blok__baslik i {
    color: #3bb77e;
    margin-right: 6px;
}
.blg-faq-item .accordion-button {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
    background: #fff;
}
.blg-faq-item .accordion-button:not(.collapsed) {
    color: #3bb77e;
    background: #f0fdf7;
    box-shadow: none;
}
.blg-faq-item__cevap {
    font-size: 0.87rem;
    color: #555;
    line-height: 1.75;
}

/* ── Ürün Güven / Authority Bloğu ────────────────────── */
.urun-guven-blok {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin: 16px 0 8px;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid #e0eaf2;
    border-radius: 8px;
}
.urun-guven-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #3a5160;
    font-weight: 600;
}
.urun-guven-item i {
    color: #3bb77e;
    font-size: 1rem;
}
@media(max-width:576px){ .urun-guven-blok { gap: 6px; } .urun-guven-item { font-size: 0.75rem; } }

/* ── Ürün Sayfası Blog Rehber Bloğu ──────────────────── */
.urun-blog-rehber {
    margin: 32px auto 24px;
    max-width: 900px;
}
.urun-blog-rehber__baslik {
    font-size: 1.05rem;
    font-weight: 700;
    color: #253d4e;
    margin-bottom: 14px;
}
.urun-blog-rehber__baslik i {
    color: #3bb77e;
    margin-right: 6px;
}
.urun-blog-rehber__liste {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.urun-blog-rehber__kart {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border: 1px solid #e4eaf0;
    border-radius: 8px;
    text-decoration: none;
    background: #fff;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.urun-blog-rehber__kart:hover {
    border-color: #3bb77e;
    box-shadow: 0 2px 10px rgba(59,183,126,.12);
}
.urun-blog-rehber__kart img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
.urun-blog-rehber__metin {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.urun-blog-rehber__kart-baslik {
    font-size: 0.9rem;
    font-weight: 700;
    color: #253d4e;
    line-height: 1.35;
}
.urun-blog-rehber__kart-ozet {
    font-size: 0.78rem;
    color: #888;
    line-height: 1.5;
}
.urun-blog-rehber__oku {
    font-size: 0.78rem;
    font-weight: 700;
    color: #3bb77e;
    white-space: nowrap;
}
@media(max-width:576px){ .urun-blog-rehber__kart img { width: 56px; height: 44px; } }

/* ── Uzman Görüşü Bloğu ───────────────────────────────── */
.uzman-gorusu {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin: 28px 0 0;
    padding: 20px 20px 18px;
    background: linear-gradient(135deg, #f0fdf7 0%, #f8fafc 100%);
    border: 1px solid #b7e4ce;
    border-left: 4px solid #3bb77e;
    border-radius: 10px;
}
.uzman-gorusu__ikon {
    font-size: 2rem;
    color: #3bb77e;
    flex-shrink: 0;
    margin-top: 2px;
}
.uzman-gorusu__icerik { flex: 1; }
.uzman-gorusu__baslik {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a3a2a;
    margin: 0 0 8px;
}
.uzman-gorusu__icerik p {
    font-size: 0.87rem;
    color: #3d5a4b;
    line-height: 1.75;
    margin: 0 0 8px;
}
.uzman-gorusu__icerik p:last-child { margin-bottom: 0; }
@media(max-width:576px){ .uzman-gorusu { flex-direction: column; gap: 8px; padding: 14px; } .uzman-gorusu__ikon { font-size: 1.5rem; } }

/* ── Blog Yazar Bloğu ────────────────────────────────────── */
.blg-yazar-blok {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0 18px;
    padding: 12px 16px;
    background: #f7f9fc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}
.blg-yazar-blok__avatar { font-size: 2.2rem; color: #3bb77e; flex-shrink: 0; }
.blg-yazar-blok__bilgi { display: flex; flex-direction: column; }
.blg-yazar-blok__ad { font-size: 0.92rem; font-weight: 700; color: #1a3c4e; }
.blg-yazar-blok__unvan { font-size: 0.78rem; color: #718096; }

/* ── Blog Okuyanlar da Okudu ─────────────────────────────── */
.blg-okuyanlarda { margin: 36px 0 0; }
.blg-okuyanlarda__baslik { font-size: 1rem; font-weight: 700; color: #1a3c4e; margin-bottom: 16px; }
.blg-okuyanlarda__grid { display: flex; flex-direction: column; gap: 12px; }
.blg-okuyanlarda__kart {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    transition: box-shadow .18s, border-color .18s;
}
.blg-okuyanlarda__kart:hover { box-shadow: 0 4px 14px rgba(0,0,0,.09); border-color: #3bb77e; }
.blg-okuyanlarda__img { flex-shrink: 0; }
.blg-okuyanlarda__img img { width: 120px; height: 80px; object-fit: cover; border-radius: 6px; }
.blg-okuyanlarda__metin { flex: 1; }
.blg-okuyanlarda__baslik-kart { display: block; font-size: 0.9rem; font-weight: 700; color: #1a3c4e; margin-bottom: 4px; }
.blg-okuyanlarda__ozet { display: block; font-size: 0.8rem; color: #718096; margin-bottom: 6px; line-height: 1.5; }
.blg-okuyanlarda__oku { font-size: 0.78rem; font-weight: 700; color: #3bb77e; }
@media(max-width:576px){ .blg-okuyanlarda__img img { width: 80px; height: 54px; } }

/* ── Farklı Kategori Önerileri (urun.php) ───────────────── */
.urun-cross-kat { padding: 28px 0 20px; }
.urun-cross-kat__baslik { font-size: 1rem; font-weight: 700; color: #1a3c4e; margin-bottom: 16px; }
.urun-cross-kat__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.urun-cross-kat__kart {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow .18s, border-color .18s;
}
.urun-cross-kat__kart:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); border-color: #3bb77e; }
.urun-cross-kat__img img { width: 100%; height: 130px; object-fit: cover; display: block; }
.urun-cross-kat__metin { padding: 10px 12px; }
.urun-cross-kat__ad { display: block; font-size: 0.82rem; font-weight: 600; color: #2d3748; margin-bottom: 4px; line-height: 1.4; }
.urun-cross-kat__fiyat { font-size: 0.88rem; font-weight: 700; color: #3bb77e; }
@media(max-width:768px){ .urun-cross-kat__grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:480px){ .urun-cross-kat__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* ── E-E-A-T gulsia Hakkında Bloğu ───────────────────── */
.urun-eatblok {
    background: linear-gradient(135deg, #1a3c4e 0%, #0f2b38 100%);
    padding: 36px 0;
    margin: 32px 0;
}
.urun-eatblok__ic { display: flex; gap: 32px; align-items: flex-start; }
.urun-eatblok__bas { flex-shrink: 0; min-width: 160px; }
.urun-eatblok__rozet {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.72rem; font-weight: 700; color: #3bb77e;
    background: rgba(59,183,126,.12); border: 1px solid rgba(59,183,126,.3);
    border-radius: 20px; padding: 4px 12px; margin-bottom: 10px;
}
.urun-eatblok__baslik { font-size: 1.1rem; font-weight: 800; color: #fff; margin: 0; }
.urun-eatblok__icerik { flex: 1; }
.urun-eatblok__icerik p { font-size: 0.88rem; color: #b0c4cf; line-height: 1.75; margin: 0 0 12px; }
.urun-eatblok__liste { list-style: none; margin: 12px 0 0; padding: 0; }
.urun-eatblok__liste li { font-size: 0.85rem; color: #d4e6ef; line-height: 2; display: flex; align-items: center; gap: 8px; }
.urun-eatblok__liste li i { color: #3bb77e; font-size: 1rem; flex-shrink: 0; }
@media(max-width:768px){ .urun-eatblok__ic { flex-direction: column; gap: 16px; } .urun-eatblok { padding: 24px 0; } }

/* ── Kategori Featured Snippet Kutusu ───────────────────── */
.kat-snippet-kutu {
    margin: 12px 0 14px;
    padding: 14px 18px;
    background: #f0fff8;
    border: 1px solid #b7e4ce;
    border-left: 4px solid #3bb77e;
    border-radius: 8px;
}
.kat-snippet-kutu__soru { display: block; font-size: 0.88rem; font-weight: 700; color: #1a3c4e; margin-bottom: 6px; }
.kat-snippet-kutu__cevap { font-size: 0.85rem; color: #4a5568; line-height: 1.7; margin: 0; }

/* ── Kategori Authority Bloğu ──────────────────────────── */
.kat-authority-blok {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 12px;
    font-size: 0.91rem;
    line-height: 1.8;
    color: #3d4f5c;
}
.kat-authority-blok h2 { font-size: 1.05rem; font-weight: 700; color: #1a3c4e; margin: 0 0 14px; }
.kat-authority-blok h3 { font-size: 0.95rem; font-weight: 700; color: #2d4a5a; margin: 18px 0 8px; }
.kat-authority-blok p { margin: 0 0 10px; }
.kat-authority-blok a { color: #3bb77e; text-decoration: none; font-weight: 600; }
.kat-authority-blok a:hover { text-decoration: underline; }
.kat-authority-blok strong { color: #1a3c4e; }
@media(max-width:576px){ .kat-authority-blok { padding: 18px 16px; } }

/* ---- Blog Hızlı Cevap Kutusu --------------------------------- */
.blg-hizli-cevap {
    background: #f0faf5;
    border-left: 4px solid #3bb77e;
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    margin: 0 0 22px;
}
.blg-hizli-cevap__etiket {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #3bb77e;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 6px;
}
.blg-hizli-cevap__metin {
    margin: 0;
    font-size: 0.93rem;
    color: #1a3c4e;
    line-height: 1.55;
}

/* ---- Blog CTA Bloğu ------------------------------------------ */
.blg-cta-blok {
    background: linear-gradient(135deg, #1a3c4e 0%, #2d6a8a 100%);
    border-radius: 12px;
    padding: 22px 24px;
    margin: 28px 0 10px;
}
.blg-cta-blok__ic {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.blg-cta-blok__metin { flex: 1; min-width: 0; }
.blg-cta-blok__desc {
    margin: 0 0 4px;
    font-size: 0.8rem;
    color: rgba(255,255,255,.75);
}
.blg-cta-blok__label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.blg-cta-blok__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #3bb77e;
    color: #fff !important;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background .2s;
}
.blg-cta-blok__btn:hover { background: #2ea066; }
@media(max-width: 576px){
    .blg-cta-blok { padding: 18px 16px; }
    .blg-cta-blok__btn { width: 100%; justify-content: center; }
}

/* ---- Kategori "En Çok Tercih Edilen" Top-5 Blok --------------- */
.kat-populer-blok {
    background: #fff;
    border: 1.5px solid #e8f5ee;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 10px;
}
.kat-populer-blok__baslik {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a3c4e;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.kat-populer-blok__baslik i { color: #e53935; }
.kat-populer-blok__liste {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}
.kat-populer-blok__kart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    flex: 0 0 110px;
    border: 1.5px solid #f0f0f0;
    border-radius: 10px;
    padding: 10px 8px;
    transition: border-color .18s, box-shadow .18s;
    background: #fafafa;
}
.kat-populer-blok__kart:hover {
    border-color: #3bb77e;
    box-shadow: 0 3px 12px rgba(59,183,126,.15);
}
.kat-populer-blok__img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 7px;
}
.kat-populer-blok__ad {
    font-size: 0.73rem;
    color: #333;
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.kat-populer-blok__fiyat {
    font-size: 0.8rem;
    color: #3bb77e;
    font-weight: 700;
}

/* ---- Blog Hero CTA Chip --------------------------------------- */
.blg-hero-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 16px;
    font-size: 0.85rem;
    color: #6b7280;
}
.blg-hero-cta i { color: #3bb77e; font-size: 1rem; }
.blg-hero-cta__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #3bb77e !important;
    font-weight: 600;
    text-decoration: none !important;
    border-bottom: 1.5px solid #b9ead1;
    transition: border-color .15s;
}
.blg-hero-cta__link:hover { border-color: #3bb77e; }

.pf-shell {
  display: block;
}
.pf-panel {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid #e5ecf4;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}
.pf-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.pf-panel__head h4 {
  margin: 6px 0;
  font-size: 24px;
  line-height: 1.2;
}
.pf-panel__head p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
}
.pf-eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #eef4ff;
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 6px 10px;
  text-transform: uppercase;
}
.pf-count-chip {
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-weight: 700;
  padding: 10px 14px;
  white-space: nowrap;
}
.pf-form {
  border: 1px solid #e6edf5;
  border-radius: 18px;
  background: #fff;
  padding: 18px;
  margin-bottom: 22px;
}
.pf-form__head,
.pf-form__footer,
.pf-card__head,
.pf-card__footer,
.pf-badge-row,
.pf-form__actions,
.pf-vote-group,
.pf-segmented,
.pf-rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pf-counter,
.pf-form__hint,
.pf-helpful-score,
.pf-card__user span,
.pf-side-stat small {
  color: #64748b;
  font-size: 12px;
}
.pf-textarea {
  width: 100%;
  min-height: 124px;
  border-radius: 16px;
  border: 1px solid #dbe4f0;
  background: #f9fbfd;
  padding: 14px 16px;
  margin: 12px 0;
  resize: vertical;
  color: #0f172a;
}
.pf-textarea:focus {
  outline: 0;
  border-color: #1d4ed8;
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.08);
}
.pf-login-cta,
.pf-side-note,
.pf-topic-box,
.pf-side-stat {
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 18px;
}
.pf-login-cta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.pf-login-cta--soft {
  background: #fff8eb;
  border-color: #fde5b2;
}
.pf-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pf-card {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #fff;
  padding: 18px;
}
.pf-card__user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pf-card__user img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.pf-card__user strong {
  display: block;
  color: #0f172a;
  font-size: 14px;
}
.pf-card__text {
  margin: 14px 0;
  color: #334155;
  line-height: 1.7;
}
.pf-status,
.pf-mini-badge,
.pf-vote-btn,
.pf-link-btn,
.pf-segmented__item,
.pf-topic-list span {
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.pf-status,
.pf-mini-badge {
  padding: 8px 12px;
}
.pf-status.is-pending,
.pf-mini-badge.is-pending {
  background: #fff7ed;
  color: #c2410c;
}
.pf-status.is-answered,
.pf-status.is-approved,
.pf-mini-badge.is-verified {
  background: #ecfdf5;
  color: #047857;
}
.pf-status.is-rejected {
  background: #fef2f2;
  color: #b91c1c;
}
.pf-vote-btn,
.pf-link-btn,
.pf-segmented__item {
  border: 1px solid #d9e3ef;
  background: #fff;
  color: #0f172a;
  padding: 9px 12px;
}
.pf-vote-btn--muted,
.pf-link-btn--danger {
  color: #b91c1c;
}
.pf-link-btn {
  background: transparent;
}
.pf-feedback {
  margin-top: 12px;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
}
.pf-feedback.is-success {
  background: #ecfdf5;
  color: #047857;
}
.pf-feedback.is-error {
  background: #fef2f2;
  color: #b91c1c;
}
.pf-empty-state {
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  padding: 18px;
  color: #64748b;
  text-align: center;
}
.pf-topic-box h5,
.pf-side-note h5 {
  margin-bottom: 10px;
}
.pf-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pf-topic-list span {
  background: #fff;
  border: 1px solid #dbe4f0;
  color: #334155;
  padding: 8px 12px;
}
.pf-side-stat {
  margin-bottom: 14px;
}
.pf-side-stat strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 20px;
}
.pf-segmented {
  background: #f8fafc;
  border-radius: 999px;
  padding: 4px;
}
.pf-segmented__item {
  border: 0;
  background: transparent;
}
.pf-segmented__item.is-active {
  background: #0f172a;
  color: #fff;
}
.pf-upload-box {
  margin-bottom: 14px;
}
.pf-photo-row img {
  max-height: 130px;
  border-radius: 12px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .pf-panel {
    padding: 18px;
    border-radius: 16px;
  }
  .pf-panel__head,
  .pf-form__footer,
  .pf-card__footer,
  .pf-form__actions,
  .pf-rating-row {
    flex-direction: column;
    align-items: stretch;
  }
  .pf-count-chip {
    align-self: flex-start;
  }
}

.up-nav__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  margin-left: auto;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  padding: 0 7px;
}
.up-review-card--feedback {
  align-items: flex-start;
}
.up-review-card--unread {
  border-color: #bfdbfe;
  box-shadow: 0 10px 24px rgba(59, 130, 246, 0.12);
}

/* ---- Blog FAQ içi ürün linki ---------------------------------- */
.blg-faq-urun-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-left: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #3bb77e !important;
    text-decoration: none !important;
    white-space: nowrap;
}
.blg-faq-urun-link:hover { text-decoration: underline !important; }

/* ---- Blog TOC (İçindekiler) ----------------------------------- */
.blg-toc {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 20px;
    margin: 18px 0 22px;
    display: inline-block;
    min-width: 220px;
    max-width: 100%;
}
.blg-toc__baslik {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1a3c4e;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.blg-toc__liste {
    margin: 0;
    padding-left: 18px;
}
.blg-toc__liste li {
    margin-bottom: 5px;
    font-size: 0.86rem;
    line-height: 1.4;
}
.blg-toc__liste a {
    color: #2d6a8a !important;
    text-decoration: none !important;
    transition: color .15s;
}
.blg-toc__liste a:hover { color: #3bb77e !important; text-decoration: underline !important; }

/* ---- Blog Inline CTA ------------------------------------------ */
.blg-inline-cta {
    margin: 20px 0;
    padding: 12px 18px;
    background: #f0faf5;
    border-left: 3px solid #3bb77e;
    border-radius: 0 8px 8px 0;
    font-size: 0.88rem;
}
.blg-inline-cta a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #1a3c4e !important;
    font-weight: 600;
    text-decoration: none !important;
}
.blg-inline-cta a:hover { color: #3bb77e !important; }



/* ---- Kategori top-5 etiket ------------------------------------ */
.kat-populer-blok__etiket {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    background: #e0f2fe;
    color: #0369a1;
    letter-spacing: .03em;
    margin-bottom: 4px;
    align-self: flex-start;
}
.kat-populer-blok__etiket--top {
    background: #fef9c3;
    color: #92400e;
}

/* ---- Ürün blog rehber iyileştirme ----------------------------- */
.urun-blog-rehber__ust {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.urun-blog-rehber__ust-sol { display: flex; flex-direction: column; gap: 2px; }
.urun-blog-rehber__altyazi {
    font-size: 0.78rem;
    color: #6b7280;
    font-style: italic;
}
.urun-blog-rehber__kat-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #3bb77e !important;
    text-decoration: none !important;
    white-space: nowrap;
    padding: 5px 12px;
    border: 1.5px solid #3bb77e;
    border-radius: 20px;
    transition: background .15s, color .15s;
}
.urun-blog-rehber__kat-link:hover { background: #3bb77e; color: #fff !important; }
.urun-blog-rehber__kart-tip {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    color: #2d6a8a;
    background: #e0f2fe;
    padding: 1px 6px;
    border-radius: 10px;
    letter-spacing: .03em;
    margin-bottom: 3px;
}

/* ---- Kat-top-badge -------------------------------------------- */
.kat-top-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #e53935;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    pointer-events: none;
    box-shadow: 0 2px 6px rgba(229,57,53,.35);
}

/* ---- Blog Cluster Bloğu (Konuyu Derinleştirin) ---------------- */
.blg-cluster-blok {
    margin: 28px 0 16px;
    padding: 18px 20px;
    background: #f0f7ff;
    border: 1.5px solid #bfdbfe;
    border-radius: 12px;
}
.blg-cluster-blok__ust {
    margin-bottom: 14px;
}
.blg-cluster-blok__etiket {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #1d4ed8;
    background: #dbeafe;
    padding: 2px 10px;
    border-radius: 20px;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.blg-cluster-blok__baslik {
    font-size: 1rem;
    font-weight: 700;
    color: #1a3c4e;
    margin: 0;
}
.blg-cluster-blok__liste {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.blg-cluster-blok__chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none !important;
    color: #1a3c4e !important;
    font-size: 0.87rem;
    font-weight: 500;
    transition: border-color .15s, box-shadow .15s, background .15s;
}
.blg-cluster-blok__chip:hover {
    border-color: #3bb77e;
    background: #f0faf5;
    box-shadow: 0 2px 8px rgba(59,183,126,.12);
}
.blg-cluster-blok__chip-ikon { color: #6b7280; font-size: 0.9rem; flex-shrink: 0; }
.blg-cluster-blok__chip-metin { flex: 1; line-height: 1.35; }
.blg-cluster-blok__chip-ok { color: #9ca3af; font-size: 0.8rem; flex-shrink: 0; transition: color .15s; }
.blg-cluster-blok__chip:hover .blg-cluster-blok__chip-ok { color: #3bb77e; }

/* ---- Blog Sonraki Okunacak ------------------------------------ */
.blg-sonraki {
    margin: 20px 0 10px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}
.blg-sonraki__etiket {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: #f1f5f9;
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: .05em;
    text-transform: uppercase;
    border-bottom: 1px solid #e2e8f0;
}
.blg-sonraki__link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    text-decoration: none !important;
    color: inherit !important;
    background: #fff;
    transition: background .15s;
}
.blg-sonraki__link:hover { background: #f8fafc; }
.blg-sonraki__metin { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.blg-sonraki__ust {
    font-size: 0.7rem;
    font-weight: 700;
    color: #3bb77e;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.blg-sonraki__baslik {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a3c4e;
    line-height: 1.3;
}
.blg-sonraki__ozet {
    font-size: 0.78rem;
    color: #6b7280;
    line-height: 1.4;
    margin-top: 3px;
}
.blg-sonraki__ok {
    font-size: 1.3rem;
    color: #3bb77e;
    flex-shrink: 0;
}

/* ---- Kategori Rehber İçerikler -------------------------------- */
.kat-rehber-blok {
    margin: 24px 0 10px;
    padding: 18px 0 22px;
    border-top: 1.5px solid #e2e8f0;
    border-bottom: 1.5px solid #e2e8f0;
}
.kat-rehber-blok__ust {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 14px;
}
.kat-rehber-blok__baslik {
    font-size: 1rem;
    font-weight: 700;
    color: #1a3c4e;
    margin: 0;
}
.kat-rehber-blok__altyazi {
    font-size: 0.75rem;
    color: #6b7280;
    font-style: italic;
}
.kat-rehber-blok__liste {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.kat-rehber-blok__kart {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none !important;
    color: #1a3c4e !important;
    font-size: 0.87rem;
    transition: border-color .15s, background .15s;
}
.kat-rehber-blok__kart:hover {
    border-color: #3bb77e;
    background: #f0faf5;
}
.kat-rehber-blok__ikon {
    color: #2d6a8a;
    font-size: 1rem;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dbeafe;
    border-radius: 50%;
}
.kat-rehber-blok__metin { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.kat-rehber-blok__kart-baslik { font-weight: 600; line-height: 1.3; }
.kat-rehber-blok__kart-ozet { font-size: 0.75rem; color: #6b7280; line-height: 1.35; }
.kat-rehber-blok__ok { color: #9ca3af; font-size: 0.82rem; flex-shrink: 0; transition: color .15s; }
.kat-rehber-blok__kart:hover .kat-rehber-blok__ok { color: #3bb77e; }

/* Mobil */
@media (max-width: 767px) {
    .blg-cluster-blok { padding: 14px 12px; }
    .blg-sonraki__link { padding: 12px; gap: 10px; }
    .blg-sonraki__baslik { font-size: 0.88rem; }
    .kat-rehber-blok { padding: 14px 0 16px; }
    .urun-blog-rehber__ust { flex-direction: column; align-items: flex-start; }
    .urun-blog-rehber__kat-link { width: 100%; justify-content: center; }
}

/* ── Scroll Progress Bar ──────────────────────────────── */
#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    width: 0%;
    height: 3px;
    background: var(--clr-primary, #F59E0B);
    z-index: 10000;
    transition: width 0.1s linear;
    pointer-events: none;
}

/* ── Blog Senaryo Bloğu ───────────────────────────────── */
.blg-senaryo {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #fffbf0;
    border-left: 3px solid #F59E0B;
    border-radius: 0 8px 8px 0;
    padding: 12px 16px;
    margin: 0 0 20px;
}
.blg-senaryo__etiket {
    font-size: 0.78rem;
    font-weight: 700;
    color: #D97706;
    white-space: nowrap;
    flex-shrink: 0;
}
.blg-senaryo__etiket i { margin-right: 4px; }
.blg-senaryo__metin {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.65;
    margin: 0;
}

/* ── Perde Hızlı Filtre Chips ─────────────────────────── */
.perde-hizli-filtre {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1px solid #eaecef;
    border-radius: 8px;
}
.perde-hizli-filtre__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6B7280;
    flex-shrink: 0;
}
.perde-hizli-filtre__chip {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1.5px solid #E5E7EB;
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    background: #fff;
    text-decoration: none;
    transition: background-color 0.18s, border-color 0.18s, color 0.18s;
    white-space: nowrap;
}
.perde-hizli-filtre__chip:hover,
.perde-hizli-filtre__chip--aktif {
    background: var(--clr-primary, #F59E0B);
    border-color: var(--clr-primary, #F59E0B);
    color: #fff;
}

/* ── Ürün Karar Destek Bloğu ──────────────────────────── */
.urun-karar-destek {
    margin: 20px 0 0;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
}
.urun-karar-destek__baslik {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1F2937;
    background: #F9FAFB;
    padding: 10px 14px;
    margin: 0;
    border-bottom: 1px solid #E5E7EB;
}
.urun-karar-destek__baslik i { color: #10B981; margin-right: 6px; }
.urun-karar-destek__satir {
    display: flex;
    gap: 10px;
    padding: 9px 14px;
    border-bottom: 1px solid #F3F4F6;
    font-size: 0.85rem;
}
.urun-karar-destek__satir:last-child { border-bottom: none; }
.urun-karar-destek__etiket {
    min-width: 100px;
    font-weight: 600;
    color: #6B7280;
    flex-shrink: 0;
}
.urun-karar-destek__etiket i { margin-right: 5px; color: #F59E0B; }
.urun-karar-destek__deger { color: #374151; line-height: 1.5; }

/* ── Kategori Kullanım Alanları ───────────────────────── */
.kat-kullanim-alanlari {
    margin: 24px 0 8px;
    padding: 14px 0 4px;
    border-top: 1px solid #e9ecef;
}
.kat-kullanim-alanlari__baslik {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #4B5563;
    margin-bottom: 10px;
}
.kat-kullanim-alanlari__baslik i { color: #F59E0B; margin-right: 5px; }
.kat-kullanim-alanlari__liste {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.kat-kullanim-alanlari__chip {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 20px;
    background: #FEF3C7;
    border: 1px solid #FDE68A;
    color: #92400E;
    font-size: 0.8rem;
    font-weight: 600;
}

/* === BLOG VIEW COUNT === */
.blg-view-count { color: #888; font-size: 0.82rem; }
.blg-view-count i { margin-right: 3px; vertical-align: middle; }

/* === BLOG SONRAKI ADIM === */
.blg-sonraki-adim {
    margin: 28px 0 20px;
    padding: 18px 22px;
    background: #f0fdf4;
    border-left: 4px solid #22c55e;
    border-radius: 6px;
}
.blg-sonraki-adim__etiket {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #16a34a;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px;
}
.blg-sonraki-adim__metin {
    margin: 0 0 12px;
    font-size: 0.92rem;
    color: #374151;
}
.blg-sonraki-adim__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: #22c55e;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: background .2s;
}
.blg-sonraki-adim__btn:hover { background: #16a34a; color: #fff; }

/* === STICKY CTA (BLOG) === */
.blg-sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9990;
    background: #fff;
    border: 2px solid var(--clr-primary, #F59E0B);
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    padding: 12px 16px;
    max-width: 260px;
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .3s, transform .3s;
}
.blg-sticky-cta--gorunu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.blg-sticky-cta__ic {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.blg-sticky-cta__metin {
    font-size: 0.82rem;
    font-weight: 600;
    color: #374151;
    flex: 1;
    min-width: 0;
}
.blg-sticky-cta__btn {
    white-space: nowrap;
    padding: 5px 14px;
    background: var(--clr-primary, #F59E0B);
    color: #fff;
    border-radius: 5px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
}
.blg-sticky-cta__btn:hover { background: var(--clr-primary-hover, #D97706); color: #fff; }
.blg-sticky-cta__kapat {
    background: none;
    border: none;
    cursor: pointer;
    color: #aaa;
    font-size: 14px;
    padding: 0 2px;
    line-height: 1;
}
.blg-sticky-cta__kapat:hover { color: #555; }
@media (max-width: 768px) {
    .blg-sticky-cta {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: 100%;
        border-radius: 10px 10px 0 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }
}

/* === KAT Q&A BLOK === */
.kat-qa-blok {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    border-radius: 6px;
    padding: 18px 22px;
    margin-bottom: 8px;
}
.kat-qa-blok__soru {
    font-size: 1rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.kat-qa-blok__soru i { margin-top: 2px; flex-shrink: 0; font-size: 1.15rem; color: #3b82f6; }
.kat-qa-blok__cevap {
    font-size: 0.92rem;
    color: #374151;
    line-height: 1.65;
}

/* === URUN KARSILASTIRMA TABLOSU === */
.urun-karsilastirma-tablo {
    margin: 22px 0 8px;
    padding: 16px;
    background: #fafafa;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}
.urun-karsilastirma-tablo__baslik {
    font-size: 0.95rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ukt-tablo { font-size: 0.82rem; margin-bottom: 0; }
.ukt-tablo thead th {
    background: var(--clr-primary, #F59E0B);
    color: #fff;
    font-weight: 600;
    border-color: #e2a800;
    text-align: center;
}
.ukt-tablo tbody td:first-child { font-weight: 600; color: #374151; }
.ukt-tablo tbody td { text-align: center; vertical-align: middle; }

/* === URUN TRUST L2 === */
.urun-trust-l2 {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    margin-bottom: 8px;
}
.urun-trust-l2 span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 20px;
    padding: 3px 12px;
    font-weight: 600;
    color: #166534;
}
.urun-trust-l2 i { font-size: 0.95rem; }

/* === PAA LİSTESİ (Blog — nasıl sorguları) === */
.blg-paa-liste {
    margin: 16px 0 18px;
    padding: 14px 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}
.blg-paa-liste__baslik {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1e3a5f;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 10px;
}
.blg-paa-liste__ol {
    margin: 0;
    padding-left: 22px;
}
.blg-paa-liste__ol li {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 5px;
}
.blg-paa-liste__ol li:last-child { margin-bottom: 0; }

/* === FRESHNESS BLOK (Blog) === */
.blg-freshness-blok {
    margin: 28px 0 20px;
    padding: 20px 24px;
    background: #fff8f0;
    border-left: 4px solid var(--clr-primary, #F59E0B);
    border-radius: 0 6px 6px 0;
}
.blg-freshness-blok h2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #92400E;
    margin: 0 0 10px;
}
.blg-freshness-blok p {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

/* =============================================================
   PERFORMANS OPTİMİZASYON — Render/Paint maliyetini düşür
   (transition:all base kuralları doğrudan kaynak satırlarda düzeltildi)
   ============================================================= */

/* 1. button/btn: base kural zaten düzeltildi (satır ~191), bu blok kaldırıldı */

/* 2. hover-up: base kural zaten düzeltildi (satır ~241), !important override kaldırıldı */
.hover-up {
    will-change: transform;
}

/* 4. Ürün kart paint izolasyonu: sadece kendi layer'ında repaint */
.product-cart-wrap {
    contain: layout style;
}

/* 4b. product-cart-wrap hover: box-shadow repaint'i ::after + opacity'ye taşı
        box-shadow transition → repaint (CPU paint her hover'da)
        opacity transition   → compositor (GPU, sıfır repaint)
        Bu teknik sayfada 20-40 kart varken FPS drop'unu engeller             */
.product-cart-wrap {
    --pcw-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}
.product-cart-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: var(--pcw-shadow);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 0;
}
.product-cart-wrap:hover::after {
    opacity: 1;
}
/* Orijinal box-shadow hover'ı kaldır (::after ile replace edildi) */
.product-cart-wrap:hover {
    box-shadow: var(--shadow-sm) !important;
}

/* 5. Ürün resim transition sadece opacity+transform */
.product-cart-wrap .product-img-action-wrap .product-img a img,
.product-cart-wrap .product-img-action-wrap .product-img a img.hover-img {
    transition: opacity 0.25s ease, transform 0.25s ease !important;
}

/* 6. Reduced motion: animasyonları kapat (accessibility + perf) */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    .hover-up, .hover-up:hover { transform: none !important; }
}

/* 7. CLS: slider container'ların yüksekliği DOM hazır olmadan önce boş kalıyor */
.hero-slider-1 { min-height: 300px; }
.carausel-8-columns,
.carausel-4-columns,
.carausel-5-columns,
.carausel-3-columns { min-height: 200px; }
/* adaptiveHeight:false ile artik her slide'da height reflow yok */
.carausel-8-columns .slick-track,
.carausel-4-columns .slick-track,
.carausel-5-columns .slick-track,
.carausel-3-columns .slick-track { align-items: stretch; }

/* 8. Mobil dokunma hedefi — INP düşürür (44px min touch target) */
@media (max-width: 767px) {
    .btn, button, .nh-icon-btn, .mobile-menu-action-link {
        min-height: 44px;
    }
    body { font-size: 14px; }
    footer.main { padding-bottom: 70px; }
}


/* 10. Font: sadece gerçekten kullanılan weight'ler kalsın */
body, input, textarea, select, button {
    font-display: swap;
}

/* =============================================================
   MICRO-OPT: Son FPS kazanımları
   ============================================================= */

/* FIX-A: a/img/span/h4 üzerindeki global transition:all override'u
   Satır ~513: a,button,img,input,span,h4 { transition: all .3s }
   Bu kural sayfa üzerindeki binlerce elemente her state değişiminde
   tüm CSS property'lerini izletir → style recalc maliyeti yüksek.
   Override: her tip için yalnızca anlamlı property'ler. */
a {
    transition: color 0.2s ease, opacity 0.2s ease !important;
}
img {
    transition: transform 0.35s ease, opacity 0.25s ease !important;
}
span, h4 {
    transition: none !important;
}

/* FIX-B: .hover-up will-change — hover sonrası serbest bırak
   will-change: transform tüm .hover-up elementlerini sürekli GPU layer'da tutar.
   Hover öncesi ekle, sonra kaldır → ancak bu CSS'de yapılamaz.
   Çözüm: yalnızca gerçek liste/kart elementlerine scope'la,
   global .hover-up'tan will-change kaldır. */
.hover-up {
    will-change: auto !important;
}
/* Sadece ürün kartı action butonları ve slider ok butonları GPU layer alır */
.product-cart-wrap .product-action-1 button,
.product-cart-wrap .product-action-1 a.action-btn,
.slider-btn {
    will-change: transform;
}

/* FIX-C: img-hover-scale — will-change sadece hover sırasında aktif
   Tüm .img-hover-scale img'leri sürekli GPU layer'da tutmak fazla memory.
   CSS hover ile aktif et (tarayıcı yeterince erken promote eder). */
.img-hover-scale img {
    will-change: auto !important;
}
.img-hover-scale:hover img {
    will-change: transform;
}

/* ---- Sold Out Product UI ------------------------------------- */
.product-soldout .soldout-media {
  position: relative;
  isolation: isolate;
}

.product-soldout .soldout-media img,
.product-soldout .soldout-media video,
.product-soldout .soldout-media .video-thumb {
  filter: grayscale(100%);
  opacity: 0.65;
}

.product-soldout .soldout-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  border-radius: 10px;
  z-index: 4;
}

.product-soldout .soldout-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #0f172a;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 10px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.22);
}

.soldout-alert {
  margin: 12px 0 14px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #f8fafc 0%, #f3f4f6 100%);
}

.soldout-alert h4 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #0f172a;
}

.soldout-alert p {
  margin: 0;
  color: #475569;
  font-size: 14px;
}

.soldout-alert__btn {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #1e293b;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 600;
}

.soldout-disabled-field,
.product-soldout .soldout-disabled-field,
.product-soldout .detail-extralink button:disabled,
.product-soldout .custom-dropdown[aria-disabled="true"] {
  background: #e5e7eb !important;
  color: #6b7280 !important;
  border-color: #d1d5db !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  pointer-events: none !important;
}

.product-soldout .button.button-add-to-cart:disabled,
.product-soldout .button.button-add-to-cart:disabled:hover {
  background: #9ca3af !important;
  border-color: #9ca3af !important;
  color: #ffffff !important;
  transform: none !important;
}

.soldout-similar-products {
  margin: 30px auto;
}

.soldout-similar-products h3 {
  font-size: 22px;
  color: #0f172a;
  margin-bottom: 14px;
}

.soldout-similar-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.soldout-similar-products__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none !important;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px;
  background: #ffffff;
}

.soldout-similar-products__item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.soldout-similar-products__name {
  font-size: 14px;
  color: #1e293b;
  line-height: 1.35;
}

.soldout-similar-products__price {
  font-size: 14px;
  font-weight: 700;
  color: #b45309;
}

@media (max-width: 991px) {
  .soldout-similar-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-soldout .soldout-badge {
    font-size: 18px;
    padding: 8px 16px;
  }
}

